:root {
            --primary: #FFD700;
            --primary-variant: #C5A000;
            --secondary: #B22222;
            --accent: #00FF41;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-overlay: #2C2C2C;
            --bg-contrast: #000000;
            --text-heading: #FFFFFF;
            --text-body: #E0E0E0;
            --text-muted: #A0A0A0;
            --text-inverse: #000000;
            --success: #28A745;
            --error: #DC3545;
            --warning: #FFC107;
            --info: #17A2B8;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-soft: #444444;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            background-color: var(--bg-main);
            color: var(--text-body);
            font-family: 'Roboto', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 {
            font-family: 'Poppins', sans-serif;
            color: var(--text-heading);
            line-height: 1.2;
        }
        h1 { font-size: 32px; font-weight: 800; margin-bottom: 1rem; text-align: center; }
        h2 { font-size: 24px; font-weight: 700; margin: 2rem 0 1.5rem; text-align: center; color: var(--primary); }
        h3 { font-size: 18px; font-weight: 600; margin-bottom: 0.5rem; }
        
        header {
            background-color: var(--bg-surface);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: inherit;
        }
        .logo-area img {
            width: 25px;
            height: 25px;
        }
        .logo-area strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--text-heading);
        }
        .auth-buttons {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 8px 16px;
            border-radius: 5px;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            border: none;
            transition: 0.3s;
            text-decoration: none;
            font-size: 14px;
        }
        .btn-login { background-color: var(--bg-overlay); color: var(--text-heading); border: 1px solid var(--border-soft); }
        .btn-register { background-color: var(--primary); color: var(--text-inverse); }
        .btn:hover { opacity: 0.9; transform: translateY(-2px); }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            object-fit: cover;
            border-radius: 15px;
            margin-top: 20px;
            cursor: pointer;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }

        .jackpot-container {
            background: linear-gradient(145deg, var(--bg-surface), var(--bg-contrast));
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin: 20px 0;
            box-shadow: 0 0 15px var(--primary-variant);
        }
        .jackpot-label { font-family: 'Montserrat', sans-serif; color: var(--text-muted); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-value {
            font-family: 'Poppins', sans-serif;
            font-size: 40px;
            font-weight: 800;
            color: var(--primary);
            margin: 10px 0;
            text-shadow: 0 0 10px var(--primary);
        }

        .intro-section {
            text-align: center;
            padding: 40px 0;
            background-color: var(--bg-surface);
            border-radius: 15px;
            margin-bottom: 30px;
        }
        .intro-section p {
            color: var(--text-body);
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

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

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

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin: 30px 0;
        }
        .payment-item {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-soft);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            font-size: 13px;
            color: var(--text-heading);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        .payment-item i { font-size: 24px; color: var(--primary); }

        .winner-table {
            width: 100%;
            border-collapse: collapse;
            background-color: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 30px;
        }
        .winner-table th, .winner-table td {
            padding: 12px;
            text-align: center;
            border-bottom: 1px solid var(--border-default);
            font-size: 14px;
        }
        .winner-table th { background-color: var(--bg-overlay); color: var(--primary); }
        .winner-table tr:last-child td { border-bottom: none; }
        .amount-win { color: var(--accent); font-weight: bold; }

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

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

        .faq-section {
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .faq-item {
            background-color: var(--bg-surface);
            margin-bottom: 15px;
            border-radius: 10px;
            border: 1px solid var(--border-default);
            overflow: hidden;
        }
        .faq-question {
            padding: 15px 20px;
            background-color: var(--bg-overlay);
            color: var(--primary);
            font-weight: 600;
            cursor: pointer;
            display: block;
        }
        .faq-answer { padding: 15px 20px; font-size: 14px; color: var(--text-body); }

        .security-footer {
            background-color: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 40px;
            border: 1px solid var(--border-soft);
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        .sec-icon { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 12px; color: var(--text-muted); }
        .sec-icon i { font-size: 30px; color: var(--accent); }
        .security-text { font-size: 14px; color: var(--text-body); margin-bottom: 15px; }
        .security-text a { color: var(--primary); text-decoration: none; font-weight: bold; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--primary);
            z-index: 1000;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-muted);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
            gap: 5px;
        }
        .nav-item i { font-size: 20px; }

        footer {
            background-color: var(--bg-contrast);
            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;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 13px;
            transition: 0.3s;
        }
        .footer-links a:hover { color: var(--primary); }
        .copyright { color: var(--text-muted); font-size: 13px; }

        @media (max-width: 768px) {
            .payment-methods { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            h1 { font-size: 24px; }
        }