/* ================= CSS VARIABLES ================= */
:root {
    /* Colors (Dark Theme) */
    --bg-main: #0a0a0a;
    --bg-surface: #141414;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --white: #ffffff;
    
    /* Brand Colors */
    --brand-telegram: #229ED9;
    --brand-whatsapp: #25D366;
    --btn-hover-darken: rgba(255, 255, 255, 0.1);

    /* Spacing & Sizing */
    --header-height: 80px;
    --container-width: 1200px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;

    /* Borders & Shadows */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-pill: 50px;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 15px 50px rgba(0, 0, 0, 0.6);

    /* Typography */
    --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* Content sections */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --spacing-xl: 6rem;
}

/* ================= RESET & BASE ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ================= HEADER ================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.85); /* Dark background blur */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    position: relative;
    z-index: 1001;
    display: flex;
    align-items: center;
}

/* Image Logo Styling */
.brand-logo {
    height: 32px; /* Set a fixed height to keep it proportional */
    width: auto;
    display: block;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
}

/* Dropdown (Download) */
.has-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.dropdown-arrow-hit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dropdown-arrow {
    width: 12px;
    height: 12px;
    transition: var(--transition-fast);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 160px;
    background: rgba(20, 20, 20, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 1002;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.has-dropdown:hover .dropdown-arrow,
.has-dropdown:focus-within .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-link {
    display: block;
    padding: 0.6rem 0.9rem;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.dropdown-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-primary {
    background-color: #ff9a40;
    color: var(--bg-main); /* Inverted for contrast in dark mode */
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background-color: #cccccc;
    transform: translateY(-2px);
}

.mobile-cta {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    border: none;
    background: none;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.hamburger .bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    position: absolute;
    left: 0;
    transition: var(--transition-smooth);
}

.hamburger .bar:nth-child(1) { top: 0; }
.hamburger .bar:nth-child(2) { top: 9px; }
.hamburger .bar:nth-child(3) { top: 18px; }

.hamburger.active .bar:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
}

/* ================= HERO SECTION ================= */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + 1rem) var(--spacing-md) 4rem;
    position: relative;
}

.hero-container {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* 1. Main Image */
.hero-image-wrapper {
    width: 100%;
    max-width: 300px; 
    margin-bottom: 0; 
    position: relative;
    z-index: 1; 
    animation: fadeScaleIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5)); 
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
}

/* 2. Title */
.hero-title {
    font-size: clamp(1.5rem, 7vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-top: -152px; 
    margin-bottom: 3rem;
    position: relative;
    z-index: 2; 
    text-shadow: 0 4px 20px var(--bg-main); 
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-subtitle {
    max-width: 560px;
    margin: 0 auto 2rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

/* Desktop CTA is covered by the header's persistent button, so the hero's copy of it is mobile-only.
   visibility (not display) keeps its layout box, so the sticky-bar's IntersectionObserver on
   #heroCta still measures correctly instead of treating a display:none box as "never intersecting". */
.hero-buttons.mobile-only-cta {
    visibility: hidden;
    pointer-events: none;
}

/* Hidden on every breakpoint — still uses visibility (not display) so #heroCta keeps its layout
   box and the sticky-bar's IntersectionObserver doesn't treat it as permanently "out of view". */
.hero-buttons.always-hidden-cta {
    visibility: hidden;
    pointer-events: none;
}

/* 3. Contact Buttons */
.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    color: var(--white);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--btn-hover-darken);
    opacity: 0;
    transition: var(--transition-fast);
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.btn:hover::after {
    opacity: 1;
}

.btn .icon {
    width: 24px;
    height: 24px;
}

.btn-telegram {
    background-color: var(--brand-telegram);
}

.btn-whatsapp {
    background-color: var(--brand-whatsapp);
}

/* ================= CONTENT SECTIONS ================= */
.section {
    padding: var(--spacing-xl) var(--spacing-md);
}

.section-alt {
    background-color: var(--bg-surface);
}

.section-container {
    max-width: 800px;
    margin: 0 auto;
}

.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.section p:last-child {
    margin-bottom: 0;
}

.section a {
    color: var(--text-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    transition: var(--transition-fast);
}

.section a:hover {
    text-decoration-color: var(--text-primary);
}

.section > .section-container > .btn-primary {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--bg-main);
    text-decoration: none;
}

/* Reveal on scroll (progressive enhancement, see script.js) */
.reveal.reveal-init {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.reveal-init.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Download comparison table */
.table-wrapper {
    overflow-x: auto;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
    font-size: 0.95rem;
}

.compare-table th,
.compare-table td {
    padding: 0.9rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

.compare-table thead th {
    color: var(--text-primary);
    font-weight: 600;
    background-color: var(--bg-surface);
}

.compare-table tbody th {
    color: var(--text-primary);
    font-weight: 500;
    white-space: nowrap;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table td.highlight {
    color: var(--text-primary);
    font-weight: 600;
}

/* Screenshot placeholder — no real asset yet, flagged rather than faked */
.screenshot-note {
    margin-bottom: 1.25rem;
    padding: 1rem 1.25rem;
    border: 1px dashed var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-style: italic;
}

.screenshot {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 0 auto 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
}

.page-updated {
    font-size: 0.85rem;
    font-style: italic;
    margin-top: -0.75rem;
}

.section code {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.9em;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    padding: 0.1em 0.4em;
    color: var(--text-primary);
}

.download-cta {
    margin-bottom: 1rem;
}

.agent-note {
    font-size: 0.95rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
}

.agent-link {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    color: var(--white) !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none !important;
    transition: var(--transition-fast);
}

.agent-link:hover {
    filter: brightness(1.1);
}

.agent-link-whatsapp {
    background-color: var(--brand-whatsapp);
}

.agent-link-telegram {
    background-color: var(--brand-telegram);
}

/* Numbered install steps */
.steps-list {
    list-style: none;
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.steps-list li {
    counter-increment: step;
    position: relative;
    padding-left: 2.75rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.steps-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps-list strong {
    color: var(--text-primary);
}

/* Common-problems cards */
.problem-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.problem-item {
    padding: 1.5rem 1.75rem;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
}

.problem-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.problem-item p {
    margin-bottom: 0;
}

/* Checklist */
.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.checklist li {
    position: relative;
    padding-left: 1.75rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--text-primary);
}

.checklist strong {
    color: var(--text-primary);
}

/* Brand grid (Samsung / Xiaomi / Oppo / Vivo) */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.brand-card {
    display: block;
    padding: 1.75rem;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
}

.brand-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.brand-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Game pills */
.game-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.game-pills span {
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-pill);
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* FAQ accordion */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background-color: var(--bg-main);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    margin-bottom: 0 !important;
    color: var(--text-secondary);
}

/* Compliance note */
.compliance-note {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md) var(--spacing-lg);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* ================= STICKY MOBILE CTA BAR ================= */
.sticky-cta-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-subtle);
    transform: translateY(100%);
    transition: transform var(--transition-smooth);
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

/* Opt-in per page: centers the bar's contents instead of the default left-to-right spread */
.sticky-cta-bar.centered {
    justify-content: center;
}

.sticky-play {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border-radius: var(--radius-pill);
    background-color: #ff9a40;
    color: var(--bg-main);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
}

.sticky-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    color: var(--white);
}

.sticky-icon-btn .icon {
    width: 22px;
    height: 22px;
}

/* Labeled variant (icon + name) — opt-in per page via extra class, doesn't affect the plain icon circle used elsewhere */
.sticky-icon-btn.labeled {
    width: auto;
    height: 44px;
    padding: 0 1rem;
    gap: 0.4rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.7rem;
    white-space: nowrap;
}

.sticky-icon-btn.labeled .icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Labeled buttons are wider than plain icon circles — let the bar wrap only when one is present */
.sticky-cta-bar:has(.sticky-icon-btn.labeled) {
    flex-wrap: wrap;
}

.sticky-whatsapp {
    background-color: var(--brand-whatsapp);
}

.sticky-telegram {
    background-color: var(--brand-telegram);
}

/* ================= FOOTER ================= */
.footer {
    background-color: var(--bg-surface);
    padding: 4rem var(--spacing-md) 2rem;
    border-top: 1px solid rgba(255,255,255,0.05); /* Subtle border for dark mode */
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeScaleIn {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* ================= RESPONSIVE (MOBILE FIRST -> DESKTOP TWEAKS) ================= */

@media (max-width: 768px) {
    /* Header Mobile Adjustments */
    .desktop-cta {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98); /* Dark background for mobile nav */
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
        transform: translateY(-10px);
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .mobile-cta {
        display: block;
        margin-top: 2rem;
    }

    /* Hero Mobile Adjustments */
    .hero {
        padding-top: calc(var(--header-height) + 1rem);
        min-height: auto;
    }

    .hero-buttons.mobile-only-cta {
        visibility: visible;
        pointer-events: auto;
    }

    .hero-title {
        margin-top: -100px; 
        margin-bottom: 2rem;
    }

    /* Footer Mobile Adjustments */
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    /* Dropdown (Download) Mobile Adjustments */
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        transition: var(--transition-smooth);
    }

    .has-dropdown.open .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
        margin-top: 1.5rem;
    }

    .has-dropdown.open .dropdown-arrow {
        transform: rotate(180deg);
    }

    /* Expand the arrow's tap target to 44px without shifting layout (padding offset by negative margin) */
    .dropdown-arrow-hit {
        padding: 16px;
        margin: -16px;
    }

    .dropdown-link {
        font-size: 1.1rem;
    }

    /* Mobile: hero's Play Now / Telegram / WhatsApp row is hidden —
       the sticky bottom bar is the only mobile CTA surface */
    .hero-buttons {
        display: none;
    }

    .sticky-cta-bar {
        display: flex;
    }

    /* Content Sections Mobile Adjustments */
    .section {
        padding: 3.5rem var(--spacing-md);
    }

    .brand-grid {
        grid-template-columns: 1fr;
    }

    .compliance-note {
        padding-bottom: 3.5rem;
    }
}