:root {
            --brand-gold: #D4AF37;
            --accent-gold: #FFD700;
            --noble-red: #8B0000;
            --deep-blue: #0A192F;
            --main-black: #0B0E11;
            --secondary-dark: #1E2329;
            --card-surface: #2B2F36;
            --overlay: rgba(0, 0, 0, 0.85);
            --text-white: #FFFFFF;
            --text-gray: #B7BDC6;
            --text-inactive: #707A8A;
            --link-gold: #F0B90B;
            --success: #0ECB81;
            --error: #F6465D;
            --border-standard: #363C4E;
            --font-main: 'Montserrat', 'Inter', 'Helvetica Neue', sans-serif;
            --font-heading: 'Playfair Display', serif;
            --font-mono: 'Roboto Mono', monospace;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--main-black);
            color: var(--text-white);
            font-family: var(--font-main);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        header {
            background-color: var(--secondary-dark);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-standard);
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .header-logo img {
            width: 25px;
            height: 25px;
        }

        .header-logo strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--brand-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .header-actions {
            display: flex;
            gap: 10px;
        }

        .btn-login, .btn-register {
            padding: 6px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }

        .btn-login {
            background: transparent;
            color: var(--text-white);
            border: 1px solid var(--brand-gold);
        }

        .btn-register {
            background: linear-gradient(180deg, var(--accent-gold), var(--brand-gold));
            color: var(--main-black);
        }

        .hero-banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            overflow: hidden;
            cursor: pointer;
        }

        .hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .jackpot-section {
            background: radial-gradient(circle, var(--noble-red) 0%, var(--main-black) 100%);
            padding: 20px;
            text-align: center;
            border-bottom: 2px solid var(--brand-gold);
        }

        .jackpot-title {
            font-size: 14px;
            color: var(--accent-gold);
            text-transform: uppercase;
            margin-bottom: 5px;
            letter-spacing: 2px;
        }

        .jackpot-amount {
            font-family: var(--font-mono);
            font-size: 32px;
            font-weight: 800;
            color: var(--text-white);
            text-shadow: 0 0 10px var(--accent-gold);
        }

        .platform-intro {
            padding: 30px 20px;
            text-align: center;
        }

        h1 {
            font-family: var(--font-heading);
            font-size: 28px;
            color: var(--brand-gold);
            margin-bottom: 15px;
        }

        .platform-intro p {
            color: var(--text-gray);
            font-size: 14px;
        }

        .section-title {
            padding: 20px 15px 10px;
            font-family: var(--font-heading);
            font-size: 22px;
            border-left: 4px solid var(--noble-red);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 15px 20px;
        }

        .game-card {
            background: var(--card-surface);
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-standard);
            transition: transform 0.2s;
        }

        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }

        .game-card h3 {
            padding: 10px;
            font-size: 14px;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color: var(--text-white);
        }

        .article-list {
            padding: 0 15px 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .article-card {
            display: flex;
            gap: 12px;
            background: var(--secondary-dark);
            padding: 10px;
            border-radius: 8px;
            align-items: center;
        }

        .article-card img {
            width: 80px;
            height: 80px;
            border-radius: 4px;
            object-fit: cover;
        }

        .article-info h2 {
            font-size: 16px;
            margin-bottom: 5px;
            color: var(--link-gold);
        }

        .article-info p {
            font-size: 12px;
            color: var(--text-gray);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .payment-section {
            background: var(--secondary-dark);
            padding: 25px 15px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }

        .payment-item i {
            font-size: 24px;
            color: var(--brand-gold);
            margin-bottom: 5px;
        }

        .payment-item span {
            display: block;
            font-size: 10px;
            color: var(--text-gray);
        }

        .winning-records {
            padding: 15px;
            background: var(--main-black);
        }

        .record-item {
            display: flex;
            justify-content: space-between;
            padding: 10px;
            border-bottom: 1px solid var(--border-standard);
            font-size: 13px;
        }

        .record-user { color: var(--accent-gold); }
        .record-amount { color: var(--success); font-weight: bold; }
        .record-time { color: var(--text-inactive); font-size: 11px; }

        .providers-section {
            padding: 20px 15px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .provider-block {
            background: var(--card-surface);
            padding: 15px;
            text-align: center;
            border-radius: 6px;
            font-weight: 600;
            border: 1px solid var(--border-standard);
            color: var(--text-gray);
        }

        .reviews-section {
            padding: 20px 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .review-card {
            background: var(--secondary-dark);
            padding: 15px;
            border-radius: 12px;
            border: 1px solid var(--border-standard);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .review-header i {
            font-size: 30px;
            color: var(--brand-gold);
        }

        .star-rating {
            color: var(--accent-gold);
            font-size: 12px;
        }

        .review-text {
            font-size: 13px;
            color: var(--text-gray);
            font-style: italic;
        }

        .review-date {
            font-size: 10px;
            color: var(--text-inactive);
            margin-top: 8px;
            display: block;
        }

        .faq-section {
            padding: 20px 15px;
        }

        .faq-item {
            margin-bottom: 15px;
            background: var(--card-surface);
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-question {
            padding: 15px;
            font-weight: 600;
            color: var(--brand-gold);
            border-bottom: 1px solid var(--border-standard);
            font-size: 15px;
        }

        .faq-answer {
            padding: 15px;
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.6;
        }

        .security-section {
            padding: 30px 20px;
            text-align: center;
            background: var(--secondary-dark);
            margin-top: 20px;
        }

        .security-icons {
            font-size: 30px;
            color: var(--brand-gold);
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .security-section p {
            font-size: 12px;
            color: var(--text-gray);
            margin-bottom: 10px;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background: var(--secondary-dark);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-standard);
            z-index: 1000;
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            color: var(--text-gray);
            font-size: 11px;
        }

        .nav-item i {
            font-size: 20px;
        }

        .nav-item.active {
            color: var(--brand-gold);
        }

        footer {
            padding: 30px 20px;
            background: var(--main-black);
            border-top: 1px solid var(--border-standard);
            text-align: center;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }

        .footer-links a {
            color: var(--text-inactive);
            font-size: 13px;
        }

        .footer-copyright {
            font-size: 11px;
            color: var(--text-inactive);
            border-top: 1px solid var(--border-standard);
            padding-top: 20px;
        }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .hero-banner { aspect-ratio: 3 / 1; }
        }