:root {
            --primary: #FFD700;
            --primary-dark: #C5A000;
            --secondary: #E60012;
            --accent: #00FF41;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-overlay: #2D2D2D;
            --grad-start: #1A1A1A;
            --grad-end: #000000;
            --text-heading: #FFFFFF;
            --text-body: #E0E0E0;
            --text-muted: #A0A0A0;
            --text-on-brand: #000000;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #FF5252;
            --info: #2196F3;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-subtle: #222222;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            background-image: linear-gradient(to bottom, var(--grad-start), var(--grad-end));
            color: var(--text-body);
            font-family: 'Montserrat', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--text-heading); }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header {
            background: var(--bg-surface);
            border-bottom: 2px solid var(--border-highlight);
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 60px;
            display: flex;
            align-items: center;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        .logo-box { display: flex; align-items: center; gap: 10px; }
        .logo-box img { width: 25px; height: 25px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        .auth-btns { display: flex; gap: 10px; }
        .btn {
            padding: 8px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            font-family: 'Roboto', sans-serif;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-login:hover { background: var(--primary); color: var(--text-on-brand); }
        .btn-register { background: var(--primary); color: var(--text-on-brand); }
        .btn-register:hover { background: var(--primary-dark); }

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

        .jackpot-section {
            background: var(--bg-surface);
            border: 2px solid var(--border-highlight);
            border-radius: 15px;
            text-align: center;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { color: var(--primary); font-weight: bold; font-size: 20px; margin-bottom: 10px; }
        .jackpot-number {
            font-family: 'Roboto', sans-serif;
            font-size: 48px;
            font-weight: 700;
            color: var(--accent);
            text-shadow: 0 0 10px var(--accent);
        }

        .intro-section { text-align: center; padding: 40px 0; }
        .intro-section h1 { font-size: 32px; margin-bottom: 20px; line-height: 1.2; }
        .intro-section p { max-width: 800px; margin: 0 auto; color: var(--text-muted); }

        .section-title { text-align: center; margin: 40px 0 20px; font-size: 24px; position: relative; padding-bottom: 10px; }
        .section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: var(--primary); }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: 0.3s;
        }
        .game-card:hover { border-color: var(--primary); transform: translateY(-5px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 10px; font-size: 16px; text-align: center; }

        .article-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .article-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            display: flex;
            flex-direction: column;
        }
        .article-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
        .article-card-content { padding: 15px; flex-grow: 1; }
        .article-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }
        .article-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 15px; }
        .article-link {
            display: inline-block;
            color: var(--primary);
            font-weight: bold;
            font-size: 14px;
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 40px;
        }
        .payment-item {
            background: var(--bg-overlay);
            padding: 15px;
            text-align: center;
            border-radius: 10px;
            border: 1px solid var(--border-subtle);
            font-size: 14px;
            color: var(--text-heading);
        }
        .payment-item i { display: block; font-size: 24px; color: var(--primary); margin-bottom: 8px; }

        .win-list {
            background: var(--bg-surface);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 40px;
        }
        .win-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-default);
            font-size: 14px;
            text-align: center;
        }
        .win-header { font-weight: bold; color: var(--primary); border-bottom: 2px solid var(--primary); }

        .provider-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }
        .provider-item {
            background: linear-gradient(45deg, var(--bg-surface), var(--bg-overlay));
            padding: 25px;
            text-align: center;
            border-radius: 12px;
            font-weight: bold;
            font-size: 18px;
            border-left: 4px solid var(--primary);
            color: var(--text-heading);
        }

        .comment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .comment-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-default);
        }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: var(--primary); }
        .comment-name { font-weight: bold; }
        .comment-stars { color: var(--primary); font-size: 12px; margin-bottom: 10px; }
        .comment-body { font-size: 14px; color: var(--text-muted); font-style: italic; margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-muted); display: block; }

        .faq-section {
            background: var(--bg-surface);
            padding: 30px 20px;
            border-radius: 15px;
            margin-bottom: 40px;
        }
        .faq-item { margin-bottom: 20px; border-bottom: 1px solid var(--border-default); padding-bottom: 15px; }
        .faq-item h3 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }
        .faq-item p { font-size: 15px; color: var(--text-body); }

        .security-footer {
            text-align: center;
            padding: 30px 20px;
            background: var(--bg-overlay);
            border-radius: 15px;
            margin-bottom: 40px;
        }
        .security-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; font-size: 30px; color: var(--primary); }
        .security-text { font-size: 14px; color: var(--text-muted); margin-bottom: 15px; }
        .security-link { color: var(--accent); font-weight: bold; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-surface);
            border-top: 2px solid var(--border-highlight);
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            z-index: 1000;
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 10px 0;
            font-size: 12px;
            color: var(--text-muted);
            text-align: center;
        }
        .nav-item i { font-size: 20px; margin-bottom: 5px; }
        .nav-item:hover { color: var(--primary); }

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

        @media (max-width: 768px) {
            .payment-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            .win-row { grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px 0; }
            .win-row div:nth-child(odd) { text-align: left; }
            .win-row div:nth-child(even) { text-align: right; }
            .win-header { display: none; }
        }