@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700&family=Rajdhani:wght@500;600;700&display=swap');

        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: #050B18;
            color: #E6F1FF;
        }
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            max-width: 1200px;
            margin: 0 auto;
        }
        .headerLogo { display: flex; align-items: center; gap: 8px; text-decoration: none; color: inherit; }
        .headerLogo strong { font-size: 16px; font-weight: normal; }
        .headerActions { display: flex; gap: 12px; }
        .btnBase {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            min-inline-size: 44px;
            padding: 12px 18px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.2s, background-color 0.2s;
            cursor: pointer;
        }
        .btnPrimary { background: #00F5FF; color: #050B18; }
        .btnPrimary:hover { background: #70F9FF; transform: translateY(-2px); }
        .btnSecondary { background: #121E36; color: #E6F1FF; border: 1px solid #334155; }
        .btnSecondary:hover { background: #1A2B4D; }
        
        main { max-width: 1200px; margin: 0 auto; }
        
        .heroSection { text-align: center; padding: 40px 0; }
        .heroH1 { 
            font-family: 'Rajdhani', sans-serif; 
            font-size: clamp(1.6rem, 6.5vw, 2.4rem); 
            line-height: 1.2; 
            margin-bottom: 20px; 
            color: #00F5FF;
        }
        .heroIntro { max-width: 800px; margin: 0 auto 30px; color: #A8B2D1; }
        .heroCta { 
            display: block; 
            width: 100%; 
            max-width: 500px; 
            margin: 0 auto 25px; 
            font-size: 1.2rem; 
            text-transform: uppercase; 
            letter-spacing: 1px;
        }
        .heroTags { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
        .tagPill { 
            background: #0A1426; 
            border: 1px solid #00F5FF; 
            color: #00F5FF; 
            padding: 4px 12px; 
            border-radius: 9999px; 
            font-size: 0.85rem; 
        }

        .bannerLink { display: block; width: 100%; margin: 20px 0; }
        .bannerImg { 
            width: 100%; 
            aspect-ratio: 2 / 1; 
            object-fit: cover; 
            border-radius: 12px; 
        }

        .categoryHub { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            margin: 40px 0; 
        }
        .categoryTile { 
            background: #0A1426; 
            border: 1px solid #1E293B; 
            padding: 20px; 
            border-radius: 12px; 
            text-decoration: none; 
            color: inherit; 
            text-align: center;
            transition: border-color 0.3s;
        }
        .categoryTile:hover { border-color: #00F5FF; }
        .categoryTile i { font-size: 2rem; color: #00F5FF; margin-bottom: 10px; }
        .categoryTile strong { display: block; font-size: 1.1rem; margin-bottom: 5px; }
        .categoryTile span { font-size: 0.85rem; color: #A8B2D1; }

        .gameGrid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            margin-bottom: 40px; 
        }
        .gameCard { 
            background: #0A1426; 
            border-radius: 12px; 
            text-decoration: none; 
            color: inherit; 
            overflow: hidden; 
            border: 1px solid #1E293B;
            transition: transform 0.2s;
        }
        .gameCard:hover { transform: scale(1.02); border-color: #00F5FF; }
        .gameCard img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
        .gameCard h3 { font-size: 1rem; padding: 12px; margin: 0; text-align: center; }

        .factsSection { padding: 30px 0; }
        .factsH2 { font-family: 'Rajdhani', sans-serif; margin-bottom: 10px; }
        .freshnessNotice { font-style: italic; color: #64748B; font-size: 0.9rem; margin-bottom: 20px; }
        .factsTable { width: 100%; border-collapse: collapse; background: #0A1426; border-radius: 12px; overflow: hidden; }
        .factsTable td { padding: 15px; border-bottom: 1px solid #1E293B; }
        .factsTable td:first-child { font-weight: 600; color: #00F5FF; width: 40%; }
        .termsLink { display: block; text-align: center; margin-top: 15px; color: #A8B2D1; font-size: 0.9rem; text-decoration: none; }
        .termsLink:hover { color: #00F5FF; }

        .tocNav { 
            display: flex; 
            overflow-x: auto; 
            gap: 10px; 
            padding: 20px 0; 
            scrollbar-width: none; 
            -ms-overflow-style: none;
        }
        .tocNav::-webkit-scrollbar { display: none; }
        .tocLink { 
            white-space: nowrap; 
            background: #121E36; 
            color: #E6F1FF; 
            padding: 8px 16px; 
            border-radius: 8px; 
            text-decoration: none; 
            font-size: 0.9rem; 
            border: 1px solid #334155;
        }
        .tocLink:hover { background: #00F5FF; color: #050B18; }

        .promoSection { margin: 40px 0; }
        .promoCard { 
            background: #0A1426; 
            border: 1px solid #1E293B; 
            border-radius: 12px; 
            padding: 25px; 
            margin-bottom: 20px; 
            position: relative;
        }
        .promoCard h3 { margin-top: 0; color: #00F5FF; }
        .promoCard p { color: #A8B2D1; margin-bottom: 20px; }

        .uspBar { display: grid; gap: 15px; margin: 40px 0; }
        .uspTile { 
            display: flex; 
            gap: 15px; 
            background: #0A1426; 
            padding: 20px; 
            border-radius: 12px; 
            align-items: center;
        }
        .uspTile i { font-size: 1.5rem; color: #00F5FF; }
        .uspTitle { font-weight: 600; display: block; margin-bottom: 4px; }
        .uspDesc { font-size: 0.9rem; color: #A8B2D1; }

        .paymentGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin: 30px 0; }
        .paymentCard { 
            background: #0A1426; 
            border: 1px solid #1E293B; 
            padding: 20px; 
            border-radius: 12px; 
            text-align: center;
        }
        .paymentCard i { font-size: 2rem; color: #00F5FF; margin-bottom: 10px; }
        .paymentCard strong { display: block; margin-bottom: 8px; }
        .paymentCard p { font-size: 0.85rem; color: #A8B2D1; margin: 0; }

        .guideSteps { margin: 40px 0; }
        .stepItem { 
            display: flex; 
            gap: 20px; 
            margin-bottom: 25px; 
            align-items: flex-start; 
        }
        .stepBadge { 
            min-width: 40px; 
            height: 40px; 
            background: #00F5FF; 
            color: #050B18; 
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            font-weight: 700; 
        }
        .stepContent h3 { margin: 0 0 10px; }
        .stepContent a { color: inherit; text-decoration: none; }

        .mobileSection { 
            background: #0A1426; 
            padding: 30px; 
            border-radius: 12px; 
            text-align: center; 
            margin: 40px 0;
        }

        .playerGuides { margin: 40px 0; }
        .guideItem { 
            background: #0A1426; 
            padding: 20px; 
            border-radius: 12px; 
            margin-bottom: 15px; 
            border-left: 4px solid #00F5FF;
        }
        .guideMeta { font-size: 0.8rem; color: #64748B; margin-bottom: 10px; }

        .announcementSection { margin: 40px 0; }
        .announcementItem { 
            display: flex; 
            gap: 15px; 
            background: #0A1426; 
            padding: 20px; 
            border-radius: 12px; 
            margin-bottom: 15px;
        }
        .announcementDate { font-size: 0.8rem; color: #64748B; display: block; margin-top: 10px; }

        .faqSection { margin: 40px 0; }
        .faqItem { margin-bottom: 15px; }
        details { background: #0A1426; border-radius: 12px; border: 1px solid #1E293B; }
        summary { padding: 15px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
        summary::-webkit-details-marker { display: none; }
        summary h3 { margin: 0; font-size: 1.1rem; color: #E6F1FF; }
        .faqAnswer { padding: 0 15px 15px; color: #A8B2D1; }

        .aboutSection { margin: 40px 0; padding: 30px; background: #0A1426; border-radius: 12px; }
        .teamCard { 
            margin-top: 30px; 
            padding: 20px; 
            background: #121E36; 
            border-radius: 12px; 
            border: 1px dashed #00F5FF;
        }

        .securitySection { margin: 40px 0; padding: 30px; background: #0A1426; border-radius: 12px; }
        .rgLinks { display: flex; gap: 20px; margin: 20px 0; }
        .rgLink { color: #00F5FF; text-decoration: none; font-weight: 600; }

        footer { 
            background: #050B18; 
            padding: 40px 0; 
            border-top: 1px solid #1E293B; 
            margin-top: 60px; 
            text-align: center; 
        }
        .footerSitemap { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 10px; 
            margin-bottom: 30px; 
            text-align: left;
        }
        .footerSitemap a { color: #A8B2D1; text-decoration: none; font-size: 0.9rem; }
        .footerSitemap a:hover { color: #00F5FF; }
        .contactLine { margin-bottom: 20px; color: #A8B2D1; }
        .contactLine a { color: #00F5FF; text-decoration: none; }
        .legalLine { font-size: 0.8rem; color: #64748B; max-width: 700px; margin: 0 auto; }

        .navigator { 
            position: fixed; 
            inset-inline: 0; 
            bottom: 0; 
            height: 72px; 
            background: #0A1426; 
            border-top: 1px solid #1E293B; 
            display: flex; 
            justify-content: space-around; 
            align-items: center; 
            padding-bottom: env(safe-area-inset-bottom); 
            z-index: 1000; 
        }
        .navItem { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            text-decoration: none; 
            color: #A8B2D1; 
            font-size: 0.75rem; 
            gap: 4px;
        }
        .navItem i { font-size: 1.2rem; }
        .navItem:hover { color: #00F5FF; }

        .utilityLink { color: #00F5FF; text-decoration: none; font-weight: 500; }

        section { content-visibility: auto; contain-intrinsic-size: 1px 500px; }

        @media (min-width: 768px) {
            body { padding-inline: 24px; padding-bottom: 24px; }
            .categoryHub { grid-template-columns: repeat(3, 1fr); }
            .gameGrid { grid-template-columns: repeat(3, 1fr); }
            .paymentGrid { grid-template-columns: repeat(4, 1fr); }
            .navigator { position: static; height: auto; padding: 20px 0; background: transparent; border: none; }
            .footerSitemap { grid-template-columns: repeat(5, 1fr); }
        }

        @media (min-width: 1200px) {
            body { padding-inline: 32px; max-width: 1200px; margin-inline: auto; }
            .categoryHub { grid-template-columns: repeat(4, 1fr); }
            .gameGrid { grid-template-columns: repeat(4, 1fr); }
            .paymentGrid { grid-template-columns: repeat(4, 1fr); }
        }