:root {
            --primary: #FFD700;
            --secondary: #B8860B;
            --accent: #FF0000;
            --highlight: #FFB800;
            --main-bg: #0F0F0F;
            --surface: #1A1A1A;
            --overlay: #000000;
            --contrast: #252525;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #808080;
            --inverted: #000000;
            --success: #00C853;
            --warning: #FFD600;
            --error: #FF5252;
            --info: #2196F3;
            --border-subtle: #333333;
            --border-moderate: #444444;
            --border-strong: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--main-bg);
            color: var(--text-primary);
            font-family: 'Montserrat', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: 'Oswald', sans-serif; text-transform: uppercase; }
        h1 { font-size: 32px; line-height: 1.2; color: var(--primary); margin-bottom: 1rem; }
        h2 { font-size: 24px; color: var(--primary); margin: 2rem 0 1.5rem; text-align: center; border-bottom: 2px solid var(--secondary); display: inline-block; width: 100%; padding-bottom: 10px; }
        h3 { font-size: 18px; color: var(--text-primary); margin-bottom: 0.5rem; }
        
        header {
            background-color: var(--surface);
            border-bottom: 1px solid var(--border-moderate);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .logo-area { display: flex; align-items: center; gap: 10px; }
        .logo-area img { width: 25px; height: 25px; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 5px;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: var(--inverted); }
        .btn:hover { opacity: 0.8; transform: translateY(-2px); }

        main { max-width: 1200px; margin: 0 auto; padding: 20px; }
        .banner-container { width: 100%; margin-bottom: 30px; cursor: pointer; }
        .banner-container img { 
            width: 100%; 
            aspect-ratio: 2/1; 
            object-fit: cover; 
            border-radius: 15px; 
            border: 2px solid var(--secondary);
        }

        .jackpot-box {
            background: linear-gradient(45deg, var(--surface), var(--contrast));
            text-align: center;
            padding: 30px;
            border-radius: 15px;
            border: 2px solid var(--primary);
            margin-bottom: 40px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { font-family: 'Poppins', sans-serif; color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
        .jackpot-amount { 
            font-family: 'Oswald', sans-serif; 
            font-size: 48px; 
            color: var(--primary); 
            font-weight: bold;
            display: block;
        }

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

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }
        .game-card {
            background: var(--surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-subtle);
            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-card-info { padding: 15px; text-align: center; }
        .game-card-info h3 { font-size: 16px; margin: 0; color: var(--text-primary); }

        .article-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-bottom: 40px; }
        .article-card {
            background: var(--surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: 0.3s;
        }
        .article-card:hover { background: var(--contrast); }
        .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-secondary); margin-bottom: 15px; height: 60px; overflow: hidden; }
        .article-link { 
            display: inline-block; 
            color: var(--primary); 
            text-decoration: none; 
            font-weight: bold; 
            font-size: 14px; 
            border-bottom: 1px solid var(--primary);
        }

        .payment-methods {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
            padding: 20px;
            background: var(--surface);
            border-radius: 15px;
        }
        .payment-item {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--contrast);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 14px;
            color: var(--text-secondary);
            border: 1px solid var(--border-subtle);
        }
        .payment-item i { color: var(--primary); }

        .win-records {
            background: var(--surface);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 40px;
            border: 1px solid var(--border-subtle);
        }
        .win-table { width: 100%; border-collapse: collapse; text-align: left; font-size: 14px; }
        .win-table th { color: var(--text-muted); padding: 10px; border-bottom: 1px solid var(--border-moderate); }
        .win-table td { padding: 12px 10px; border-bottom: 1px solid var(--border-subtle); }
        .win-amount { color: var(--success); font-weight: bold; }

        .provider-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }
        .provider-item {
            background: var(--contrast);
            padding: 20px;
            text-align: center;
            border-radius: 12px;
            font-weight: bold;
            font-family: 'Oswald', sans-serif;
            border-left: 5px solid var(--primary);
        }

        .comment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .comment-card {
            background: var(--surface);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-subtle);
        }
        .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(--highlight); margin-bottom: 10px; }
        .comment-body { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-muted); }

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

        .safety-box {
            text-align: center;
            padding: 30px;
            background: var(--surface);
            border-radius: 15px;
            border: 1px solid var(--border-moderate);
            margin-bottom: 40px;
        }
        .safety-box i { font-size: 40px; color: var(--success); margin-bottom: 15px; }
        .safety-box p { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .safety-link { color: var(--primary); text-decoration: none; font-weight: bold; }

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

        footer {
            background: var(--overlay);
            padding: 40px 20px 100px;
            text-align: center;
            border-top: 1px solid var(--border-subtle);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .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: 14px; }

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