:root {
            --primary: #D4AF37;
            --primary-hover: #F9E076;
            --primary-active: #996515;
            --secondary: #1A1A1A;
            --accent: #FFD700;
            --bg-main: #0B0B0B;
            --bg-surface: #161616;
            --bg-elevated: #242424;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #757575;
            --highlight: #D4AF37;
            --success: #00C853;
            --jackpot-color: #E02020;
            --border-default: #333333;
            --font-main: 'Montserrat', 'Inter', sans-serif;
            --font-heading: 'Poppins', 'Lexend', sans-serif;
            --font-numeric: 'Roboto Mono', monospace;
        }

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

        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }

        h1, h2, h3 {
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--highlight);
        }

        h1 { font-size: 32px; margin-bottom: 16px; text-align: center; }
        h2 { font-size: 24px; margin: 24px 0 16px; padding-left: 10px; border-left: 4px solid var(--primary); }
        h3 { font-size: 18px; color: var(--text-primary); }

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

        header {
            background-color: var(--bg-surface);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }

        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--highlight); text-transform: uppercase; letter-spacing: 1px; }

        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: #000; }
        .btn:hover { opacity: 0.8; }

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

        .jackpot-container {
            background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-surface) 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary-active);
        }
        .jackpot-label { font-size: 14px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
        .jackpot-amount {
            font-family: var(--font-numeric);
            font-size: 36px;
            font-weight: 900;
            color: var(--jackpot-color);
            text-shadow: 0 0 15px rgba(224, 32, 32, 0.4);
        }

        .platform-intro { padding: 20px; text-align: center; }
        .platform-intro p { color: var(--text-secondary); font-size: 16px; max-width: 800px; margin: 0 auto; }

        .section-container { padding: 0 15px; margin-bottom: 30px; }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: transform 0.2s;
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }
        .game-info { padding: 10px; text-align: center; }

        .article-list { display: flex; flex-direction: column; gap: 15px; }
        .article-card {
            display: flex;
            background: var(--bg-surface);
            border-radius: 8px;
            overflow: hidden;
            gap: 10px;
        }
        .article-card img { width: 100px; height: 100px; object-fit: cover; }
        .article-content { padding: 10px; display: flex; flex-direction: column; justify-content: center; }
        .article-content h3 { font-size: 14px; margin-bottom: 4px; line-height: 1.3; }
        .article-content p { font-size: 12px; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
        }
        .payment-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 10px;
            color: var(--text-secondary);
            gap: 5px;
        }
        .payment-item i { font-size: 20px; color: var(--primary); }

        .winner-list {
            background: var(--bg-surface);
            border-radius: 12px;
            padding: 10px;
            max-height: 300px;
            overflow-y: auto;
        }
        .winner-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--border-default);
            font-size: 13px;
        }
        .win-amount { color: var(--success); font-weight: bold; }

        .provider-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        .provider-block {
            background: var(--bg-elevated);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            color: var(--highlight);
            border: 1px solid var(--border-default);
        }

        .review-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border: 1px solid var(--border-default);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 24px; color: var(--text-muted); }
        .stars { color: #FFD700; font-size: 12px; }
        .review-text { font-size: 14px; color: var(--text-secondary); font-style: italic; }

        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden;
        }
        .faq-question {
            padding: 15px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid var(--border-default);
        }
        .faq-answer { padding: 15px; color: var(--text-secondary); font-size: 14px; }

        .security-section {
            background: var(--bg-elevated);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin-top: 20px;
        }
        .security-section i { font-size: 32px; color: var(--success); margin-bottom: 10px; }
        .security-section p { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
        .age-limit { display: inline-block; padding: 5px 10px; border: 2px solid #ff0000; color: #ff0000; font-weight: bold; border-radius: 50%; margin-top: 10px; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
            color: var(--text-secondary);
        }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: var(--primary); }

        footer {
            background: var(--bg-surface);
            padding: 30px 15px 100px;
            text-align: center;
            border-top: 1px solid var(--border-default);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .copyright { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-divider); padding-top: 20px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .article-list { display: grid; grid-template-columns: 1fr 1fr; }
        }