/* =============================================
   BETIKA - Dark Premium Theme (1Win Style)
   ============================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0f1629;
    --bg-card: #1a2332;
    --bg-card-hover: #232f42;
    --accent: #00d4aa;
    --accent-hover: #00f5c4;
    --red: #ff4757;
    --orange: #ffa502;
    --blue: #3742fa;
    --white: #ffffff;
    --text: #b8c5d6;
    --text-light: #8899aa;
    --border: #2a3a4d;
    --gradient-accent: linear-gradient(135deg, #00d4aa 0%, #00a896 100%);
    --gradient-red: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    --gradient-orange: linear-gradient(135deg, #ffc048 0%, #ff9500 100%);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --radius: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -50px;
    left: 10px;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    z-index: 9999;
}
.skip-link:focus {
    top: 10px;
}

/* =============================================
   HEADER
   ============================================= */
header {
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 20px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -1px;
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

nav a:hover {
    color: var(--white);
}

.nav-icon {
    font-size: 14px;
}

.header-actions {
    display: flex;
    gap: 12px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
}

/* Header Sub Navigation */
.header-sub {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 12px 0;
}

.sub-nav {
    display: flex;
    justify-content: center;
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.sub-nav a {
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s;
}

.sub-nav a:hover {
    color: var(--accent);
    background: rgba(0, 212, 170, 0.1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    gap: 8px;
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--bg-dark);
}
.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}
.btn-outline:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

.btn-ghost {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.2);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-hero {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    min-width: 220px;
    padding: 16px 28px;
    font-size: 15px;
}

.btn-hero:hover {
    background: var(--accent);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.3);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

/* Pills / Badges */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pill-hot {
    background: var(--gradient-red);
    color: var(--white);
}

.pill-new {
    background: var(--gradient-accent);
    color: var(--bg-dark);
}

.pill-live {
    background: var(--red);
    color: var(--white);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 20px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 22, 41, 0.9) 0%, rgba(26, 35, 50, 0.85) 50%, rgba(15, 22, 41, 0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
}

.hero-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero h1 {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-sub {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-sub strong {
    color: var(--white);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   CATEGORIES BAR
   ============================================= */
.categories {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.cat-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.cat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-dark);
    border-radius: 8px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.cat-item:hover {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
}

.cat-icon {
    font-size: 18px;
}

/* =============================================
   PROMO BANNERS
   ============================================= */
.promo-banners {
    padding: 40px 0;
}

.banners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.banner-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    display: block;
    transition: transform 0.3s;
}

.banner-card:hover {
    transform: translateY(-4px);
}

.banner-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: left center;
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.banner-overlay .pill {
    margin-bottom: 12px;
}

.banner-overlay h2,
.banner-overlay h3 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 8px;
}

.banner-overlay h2 {
    font-size: 24px;
}

.banner-overlay h3 {
    font-size: 18px;
}

.banner-overlay p {
    color: var(--text);
    font-size: 14px;
}

/* =============================================
   SEO BLOCK
   ============================================= */
.seo-block {
    padding: 60px 0;
    background: var(--bg-card);
}

.seo-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.seo-intro h2 {
    font-size: clamp(24px, 4vw, 36px);
    color: var(--white);
    margin-bottom: 20px;
}

.seo-intro p {
    color: var(--text);
    font-size: 17px;
    line-height: 1.8;
}

.seo-intro strong {
    color: var(--white);
    font-weight: 600;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.info-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.info-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.info-card h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 12px;
}

.info-card p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
}

.info-card strong {
    color: var(--white);
}

/* =============================================
   HOT SHOTS
   ============================================= */
.hot-shots {
    padding: 60px 0;
}

.section-title {
    font-size: clamp(24px, 4vw, 32px);
    color: var(--white);
    text-align: center;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-sub {
    text-align: center;
    color: var(--text);
    margin-bottom: 40px;
    font-size: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hot-shots-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hot-shot-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.hot-shot-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.hot-shot-card:hover img {
    transform: scale(1.08);
}

.hs-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
}

.hs-overlay h3 {
    color: var(--white);
    font-size: 20px;
    margin-top: 8px;
}

/* =============================================
   BOOKMAKERS
   ============================================= */
.bookmakers {
    padding: 60px 0;
    background: var(--bg-card);
}

.bm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.bm-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
}

.bm-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.bm-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.bm-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bm-img-wrap .pill {
    position: absolute;
    top: 16px;
    left: 16px;
}

.bm-body {
    padding: 24px;
}

.bm-body h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 12px;
}

.bm-body p {
    color: var(--text);
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.7;
}

.bm-body strong {
    color: var(--white);
}

.bm-body ul {
    margin-bottom: 20px;
}

.bm-body li {
    color: var(--text);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bm-body li:last-child {
    border-bottom: none;
}

.bm-body li::before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
}

/* =============================================
   AVIATOR SECTION
   ============================================= */
.aviator {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.aviator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.aviator-text h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--white);
    margin-bottom: 20px;
}

.aviator-text > p {
    color: var(--text);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.aviator-text strong {
    color: var(--white);
}

.aviator-text h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 24px;
}

.av-steps {
    counter-reset: step;
}

.av-steps li {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.step-num {
    width: 44px;
    height: 44px;
    background: var(--gradient-accent);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
}

.av-steps li div strong {
    color: var(--white);
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.av-steps li div p {
    color: var(--text);
    font-size: 14px;
    margin: 0;
}

.warn-box {
    background: rgba(255, 71, 87, 0.15);
    border: 1px solid var(--red);
    border-radius: 8px;
    padding: 16px 20px;
    color: var(--text);
    font-size: 14px;
    margin-top: 30px;
}

.warn-box strong {
    color: var(--red);
}

.aviator-visual {
    display: flex;
    justify-content: center;
}

.aviator-visual img {
    max-width: 400px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
    padding: 80px 0;
    background: var(--bg-card);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.testimonial-info h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 2px;
}

.testimonial-info span {
    color: var(--text-light);
    font-size: 13px;
}

.testimonial-stars {
    margin-left: auto;
    color: #ffc107;
    font-size: 14px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
    font-style: italic;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   HOW TO START
   ============================================= */
.how-to {
    padding: 80px 0;
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.step-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s;
}

.step-item:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.step-circle {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-item h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 12px;
}

.step-item p {
    color: var(--text);
    font-size: 14px;
}

.legal-bar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: var(--text);
}

.legal-bar strong {
    color: var(--orange);
}

/* =============================================
   COMPARISON TABLE
   ============================================= */
.comparison {
    padding: 80px 0;
    background: var(--bg-card);
}

.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

th, td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

th {
    background: var(--bg-dark);
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    background: var(--bg-dark);
    color: var(--text);
    font-size: 14px;
}

td:first-child {
    color: var(--white);
    font-weight: 600;
}

tbody tr:hover td {
    background: var(--bg-card-hover);
}

/* =============================================
   FAQ
   ============================================= */
.faq {
    padding: 80px 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-q button {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-q button:hover {
    background: var(--bg-card-hover);
}

.faq-q button::after {
    content: "+";
    font-size: 24px;
    color: var(--accent);
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-q button[aria-expanded="true"]::after {
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 24px 20px;
    color: var(--text);
    line-height: 1.7;
}

.faq-a strong {
    color: var(--white);
}

.faq-a[hidden] {
    display: none;
}

/* =============================================
   SEO LONG
   ============================================= */
.seo-long {
    padding: 60px 0;
    background: var(--bg-card);
}

.seo-long h2 {
    font-size: clamp(24px, 4vw, 32px);
    color: var(--white);
    margin-bottom: 20px;
}

.seo-long h3 {
    font-size: 20px;
    color: var(--white);
    margin: 30px 0 16px;
}

.seo-long p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.seo-long strong {
    color: var(--white);
}

/* =============================================
   RESPONSIBLE GAMBLING
   ============================================= */
.responsible {
    padding: 80px 0;
}

.resp-notice {
    background: rgba(255, 165, 2, 0.1);
    border: 1px solid var(--orange);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    margin-bottom: 40px;
}

.resp-notice p {
    color: var(--text);
    font-size: 16px;
}

.resp-notice strong {
    color: var(--orange);
}

.resp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.resp-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.resp-card h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 12px;
}

.resp-card p {
    color: var(--text);
    font-size: 14px;
}

.resp-card strong {
    color: var(--white);
}

.help-box {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid var(--red);
    border-radius: var(--radius);
    padding: 24px;
}

.help-box h3 {
    color: var(--red);
    margin-bottom: 16px;
}

.help-box li {
    padding: 10px 0;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.help-box li:last-child {
    border-bottom: none;
}

.help-box strong {
    color: var(--white);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 40px 0;
}

.footer-inner {
    text-align: center;
}

.footer-logo {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 16px;
}

footer p {
    color: var(--text);
    font-size: 14px;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 12px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 20px;
}

/* =============================================
   REVEAL ANIMATION
   ============================================= */
.reveal {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .banners-grid {
        grid-template-columns: 1fr 1fr;
    }
    .banner-large {
        grid-column: span 2;
    }
    .aviator-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .steps-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }
    
    nav {
        order: 3;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    nav.active {
        max-height: 400px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }
    
    nav a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .header-actions {
        order: 2;
    }
    
    .sub-nav {
        gap: 8px;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 8px;
    }
    
    .sub-nav a {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .banners-grid {
        grid-template-columns: 1fr;
    }
    .banner-large {
        grid-column: span 1;
    }
    
    .hot-shots-wrap {
        grid-template-columns: 1fr;
    }
    
    .bm-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-row {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-lg {
        width: 100%;
        max-width: 300px;
    }
    
    .aviator-visual img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .cat-row {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }
    
    .cat-item {
        flex-shrink: 0;
    }
    
    .hero {
        min-height: 500px;
        padding: 60px 16px;
    }
    
    .container {
        padding: 0 16px;
    }
}

/* Focus Styles */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Print */
@media print {
    header, footer, .hero-cta, .btn {
        display: none;
    }
    body {
        background: white;
        color: black;
    }
}

/* =============================================
   LANGUAGE SWITCHER
   ============================================= */
.lang-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s;
}

.lang-btn:hover {
    background: var(--bg-card-hover);
    color: var(--white);
    border-color: var(--accent);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1001;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 14px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
}

.lang-option:hover {
    background: var(--bg-card-hover);
    color: var(--white);
}

.lang-option.active {
    background: rgba(0, 212, 170, 0.15);
    color: var(--accent);
}

.lang-flag {
    font-weight: 700;
    font-size: 12px;
    padding: 2px 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

/* =============================================
   HERO ENHANCEMENTS
   ============================================= */
.hero-label {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-tags span {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text);
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
    padding: 40px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background: rgba(26, 35, 50, 0.8);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 13px;
    color: var(--text-light);
}

/* =============================================
   TRUST SECTION
   ============================================= */
.trust-section {
    padding: 60px 0;
    background: var(--bg-card);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.trust-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.trust-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.trust-card h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 12px;
}

.trust-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* =============================================
   INSIDER SECTION
   ============================================= */
.insider-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(0, 212, 170, 0.05) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.insider-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.insider-left {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
}

.section-label {
    font-size: 13px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.insider-left h2 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 16px;
}

.insider-left > p {
    color: var(--text);
    margin-bottom: 24px;
}

.insider-list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 24px;
}

.insider-list li {
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.5;
}

.insider-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.insider-card {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.3s;
}

.insider-card:hover {
    border-color: var(--accent);
}

.insider-card img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.insider-card h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 8px;
}

.insider-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.insider-card a {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
}

.insider-card a:hover {
    text-decoration: underline;
}

/* =============================================
   RESPONSIVE UPDATES
   ============================================= */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .insider-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .insider-left {
        padding: 24px;
    }
    
    .insider-left h2 {
        font-size: 24px;
    }
    
    .insider-card {
        flex-direction: column;
        text-align: center;
    }
    
    .insider-card img {
        margin: 0 auto;
    }
    
    .hero-tags {
        justify-content: center;
    }
    
    .hero-tags span {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .lang-btn {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* =============================================
   BTN GHOST
   ============================================= */
.btn-ghost {
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    background: transparent;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0, 212, 170, 0.1);
}
