:root {
            --primary: #064E3B;
            --primaryHover: #065F46;
            --secondary: #D4AF37;
            --secondaryHover: #E5C76B;
            --accent: #FFD700;
            --bgMain: #022C22;
            --bgSurface: #064235;
            --bgElevated: #0A5C49;
            --bgOverlay: rgba(2, 44, 34, 0.8);
            --textPrimary: #ECFDF5;
            --textSecondary: #A7F3D0;
            --textMuted: #6EE7B7;
            --textContrast: #022C22;
            --linkColor: #FCD34D;
            --linkHover: #FFFBEB;
            --btnBg: #D4AF37;
            --btnText: #022C22;
            --btnHoverBg: #FFD700;
            --borderDefault: #065F46;
            --borderStrong: #0A7C5D;
            --borderBrand: #D4AF37;
            --radiusSm: 2px;
            --radiusMd: 4px;
            --radiusLg: 8px;
            --radiusPill: 9999px;
            --shadowCard: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
            --shadowElevated: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
            --gradBrand: linear-gradient(135deg, #064E3B 0%, #022C22 100%);
            --gradHero: radial-gradient(circle at center, #0A5C49 0%, #022C22 100%);
            --gradBtn: linear-gradient(to bottom, #D4AF37 0%, #B8860B 100%);
        }
        html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
        body {
            margin: 0;
            font-family: 'Be Vietnam Pro', sans-serif;
            font-size: clamp(15px, 3.9vw, 16px);
            line-height: 1.65;
            padding-inline: 14px;
            padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
            overflow-x: hidden;
            background-color: var(--bgMain);
            color: var(--textPrimary);
        }
        h1, h2, h3 { font-family: 'Archivo Black', sans-serif; letter-spacing: -0.02em; color: var(--secondary); }
        h1 { font-size: clamp(1.6rem, 6.5vw, 2.4rem); line-height: 1.2; margin-bottom: 1rem; }
        h2 { font-size: clamp(1.3rem, 5.2vw, 1.8rem); line-height: 1.25; margin-top: 2rem; border-left: 4px solid var(--secondary); padding-left: 1rem; }
        h3 { font-size: clamp(1.05rem, 4.2vw, 1.25rem); line-height: 1.3; margin: 0; }
        img { max-width: 100%; height: auto; display: block; }
        a { color: var(--linkColor); text-decoration: none; transition: color 0.2s; }
        a:hover { color: var(--linkHover); }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            min-inline-size: 44px;
            padding: 12px 18px;
            border-radius: var(--radiusMd);
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, background 0.2s;
            border: none;
            text-decoration: none;
        }
        .btnPrimary { background: var(--gradBtn); color: var(--textContrast); }
        .btnPrimary:hover { background: var(--btnHoverBg); transform: translateY(-2px); }
        .btnFull { width: 100%; box-sizing: border-box; }
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            background: var(--bgSurface);
            border-bottom: 1px solid var(--borderBrand);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .headerLogo { display: flex; align-items: center; gap: 8px; }
        .headerLogo strong { font-size: 16px; font-weight: normal; color: var(--textPrimary); }
        .headerNav { display: flex; gap: 10px; }
        .heroSection {
            padding: 2rem 0;
            background: var(--gradHero);
            text-align: center;
            border-radius: var(--radiusLg);
            margin-bottom: 1.5rem;
        }
        .heroIntro { max-width: 800px; margin: 0 auto 2rem; padding-inline: 1rem; }
        .heroTags { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 1.5rem; }
        .tagPill {
            background: var(--bgElevated);
            border: 1px solid var(--secondary);
            color: var(--textSecondary);
            padding: 4px 12px;
            border-radius: var(--radiusPill);
            font-size: 0.875rem;
        }
        .bannerWrapper { width: 100%; aspect-ratio: 2/1; overflow: hidden; border-radius: var(--radiusLg); }
        .bannerWrapper img { width: 100%; height: 100%; object-fit: cover; }
        .categoryGrid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin: 2rem 0;
        }
        .categoryTile {
            background: var(--bgSurface);
            padding: 1.5rem 1rem;
            border-radius: var(--radiusLg);
            text-align: center;
            border: 1px solid var(--borderDefault);
            transition: border-color 0.3s;
        }
        .categoryTile:hover { border-color: var(--secondary); }
        .categoryTile i { font-size: 2rem; color: var(--secondary); margin-bottom: 0.5rem; }
        .categoryTile strong { display: block; color: var(--textPrimary); margin-bottom: 0.5rem; }
        .categoryTile span { font-size: 0.875rem; color: var(--textMuted); }
        .gameGrid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 2rem;
        }
        .gameCard {
            background: var(--bgSurface);
            border-radius: var(--radiusLg);
            overflow: hidden;
            border: 1px solid var(--borderDefault);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .gameCard:hover { transform: translateY(-5px); box-shadow: var(--shadowElevated); border-color: var(--secondary); }
        .gameCard img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
        .gameCard h3 { padding: 12px; font-size: 1rem; color: var(--textPrimary); text-align: center; }
        .factTable {
            width: 100%;
            border-collapse: collapse;
            margin: 1rem 0;
            background: var(--bgSurface);
            border-radius: var(--radiusLg);
            overflow: hidden;
        }
        .factTable td { padding: 12px; border-bottom: 1px solid var(--borderDefault); }
        .factTable td:first-child { font-weight: 600; color: var(--secondary); width: 40%; }
        .freshnessNotice { font-style: italic; color: var(--textMuted); font-size: 0.875rem; margin-bottom: 1rem; }
        .termsLink { display: block; text-align: center; margin-top: 1rem; font-size: 0.875rem; }
        .tocNav {
            display: flex;
            overflow-x: auto;
            gap: 10px;
            padding: 1rem 0;
            scrollbar-width: none;
        }
        .tocNav::-webkit-scrollbar { display: none; }
        .tocLink {
            background: var(--bgElevated);
            padding: 8px 16px;
            border-radius: var(--radiusPill);
            white-space: nowrap;
            font-size: 0.875rem;
            border: 1px solid var(--borderDefault);
        }
        .promoGrid { display: grid; grid-template-columns: 1fr; gap: 20px; }
        .promoCard {
            background: var(--bgSurface);
            padding: 2rem;
            border-radius: var(--radiusLg);
            border: 1px solid var(--borderBrand);
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .uspBar { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 2rem 0; }
        .uspTile {
            background: var(--bgSurface);
            padding: 1.5rem;
            border-radius: var(--radiusLg);
            display: flex;
            gap: 15px;
            align-items: center;
            border: 1px solid var(--borderDefault);
        }
        .uspTile i { font-size: 1.5rem; color: var(--secondary); }
        .uspTile strong { display: block; color: var(--textPrimary); }
        .uspTile p { margin: 0; font-size: 0.875rem; color: var(--textMuted); }
        .paymentGrid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        .paymentCard {
            background: var(--bgSurface);
            padding: 1rem;
            border-radius: var(--radiusLg);
            text-align: center;
            border: 1px solid var(--borderDefault);
        }
        .paymentCard i { font-size: 1.5rem; color: var(--secondary); margin-bottom: 0.5rem; }
        .paymentCard p { font-size: 0.75rem; color: var(--textMuted); margin: 0.5rem 0 0; }
        .guideSteps { display: grid; grid-template-columns: 1fr; gap: 20px; }
        .stepItem {
            display: flex;
            gap: 15px;
            background: var(--bgSurface);
            padding: 1.5rem;
            border-radius: var(--radiusLg);
        }
        .stepNum {
            min-width: 32px;
            height: 32px;
            background: var(--secondary);
            color: var(--textContrast);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        .stepItem h3 a { color: inherit; }
        .downloadBox {
            background: var(--bgSurface);
            padding: 2rem;
            border-radius: var(--radiusLg);
            text-align: center;
            border: 2px dashed var(--secondary);
        }
        .providerWall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        .providerTile {
            background: var(--bgSurface);
            padding: 1rem;
            border-radius: var(--radiusLg);
            text-align: center;
            border: 1px solid var(--borderDefault);
        }
        .playerGuideItem {
            background: var(--bgSurface);
            padding: 1.5rem;
            border-radius: var(--radiusLg);
            margin-bottom: 1rem;
            border-left: 4px solid var(--secondary);
        }
        .guideMeta { font-size: 0.875rem; color: var(--textMuted); margin-bottom: 1rem; display: block; }
        .announcementList { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .announcementItem {
            background: var(--bgSurface);
            padding: 1.5rem;
            border-radius: var(--radiusLg);
            border: 1px solid var(--borderDefault);
        }
        .announcementHeader { display: flex; align-items: center; gap: 10px; margin-bottom: 0.5rem; }
        .announcementHeader i { color: var(--secondary); }
        .announcementDate { font-size: 0.875rem; color: var(--textMuted); display: block; margin-top: 0.5rem; }
        .faqSection details { background: var(--bgSurface); margin-bottom: 10px; border-radius: var(--radiusMd); border: 1px solid var(--borderDefault); }
        .faqSection summary { padding: 15px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
        .faqSection summary h3 { font-size: 1rem; color: var(--textPrimary); }
        .faqSection p { padding: 0 15px 15px; color: var(--textSecondary); margin: 0; }
        .aboutBox { background: var(--bgSurface); padding: 2rem; border-radius: var(--radiusLg); }
        .teamCard {
            margin-top: 2rem;
            padding: 1.5rem;
            background: var(--bgElevated);
            border-radius: var(--radiusLg);
            border: 1px solid var(--secondary);
        }
        .securityBox { background: var(--bgSurface); padding: 2rem; border-radius: var(--radiusLg); border: 1px solid var(--borderStrong); }
        .resGamingLinks { display: flex; gap: 15px; flex-wrap: wrap; margin: 1.5rem 0; }
        .resGamingLinks a { background: var(--bgElevated); padding: 8px 12px; border-radius: var(--radiusMd); font-size: 0.875rem; }
        footer {
            background: var(--bgSurface);
            padding: 2rem 0;
            margin-top: 3rem;
            border-top: 1px solid var(--borderBrand);
            text-align: center;
        }
        .footerSitemap {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 2rem;
            text-align: left;
        }
        .footerContact { margin-bottom: 1.5rem; font-size: 0.875rem; }
        .footerLegal { font-size: 0.75rem; color: var(--textMuted); line-height: 1.4; }
        .navigator {
            position: fixed;
            inset-inline: 0;
            bottom: 0;
            height: 72px;
            background: var(--bgSurface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--borderBrand);
            padding-bottom: env(safe-area-inset-bottom);
            z-index: 1000;
        }
        .navItem { display: flex; flex-direction: column; align-items: center; font-size: 0.75rem; color: var(--textSecondary); }
        .navItem i { font-size: 1.25rem; margin-bottom: 4px; }
        .utilLink { color: var(--secondary); font-weight: 500; }
        section { content-visibility: auto; contain-intrinsic-size: 500px; }

        @media (min-width: 768px) {
            body { padding-inline: 24px; padding-bottom: 24px; }
            .categoryGrid { grid-template-columns: repeat(3, 1fr); }
            .gameGrid { grid-template-columns: repeat(3, 1fr); }
            .promoGrid { grid-template-columns: repeat(3, 1fr); }
            .uspBar { grid-template-columns: repeat(3, 1fr); }
            .paymentGrid { grid-template-columns: repeat(4, 1fr); }
            .guideSteps { grid-template-columns: repeat(2, 1fr); }
            .providerWall { grid-template-columns: repeat(4, 1fr); }
            .navigator { position: static; display: none; }
        }
        @media (min-width: 1200px) {
            body { padding-inline: 32px; max-width: 1200px; margin-inline: auto; }
            .categoryGrid { grid-template-columns: repeat(4, 1fr); }
            .gameGrid { grid-template-columns: repeat(4, 1fr); }
        }