:root {
            --primary: #FFD700;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --highlight: #FFC107;
            --main-bg: #0B0B0B;
            --surface: #1A1A1A;
            --overlay: rgba(0, 0, 0, 0.85);
            --grad-start: #1a1a1a;
            --grad-end: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #808080;
            --text-inverse: #000000;
            --success: #4CAF50;
            --warning: #FF9800;
            --error: #F44336;
            --info: #2196F3;
            --border-subtle: #333333;
            --border-strong: #4D4D4D;
            --border-accent: #FFD700;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        body {
            background-color: var(--main-bg);
            color: var(--text-primary);
            font-family: 'Montserrat', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background: var(--surface);
            border-bottom: 2px solid var(--border-accent);
            padding: 10px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo-area { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
        .logo-area img { width: 25px; height: 25px; object-fit: contain; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: var(--text-inverse); }
        .btn:hover { opacity: 0.8; transform: translateY(-2px); }

        main { max-width: 1200px; margin: 0 auto; padding: 0 15px 80px; }
        .hero-banner { 
            width: 100%; 
            aspect-ratio: 2/1; 
            cursor: pointer; 
            margin-top: 15px;
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid var(--border-strong);
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-pool {
            background: linear-gradient(45deg, #000, #333, #000);
            text-align: center;
            padding: 30px 10px;
            margin: 20px 0;
            border-radius: 15px;
            border: 2px solid var(--primary);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }
        .jackpot-title { font-size: 20px; color: var(--secondary); text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount {
            font-family: 'Poppins', sans-serif;
            font-size: 48px;
            font-weight: 700;
            color: var(--primary);
            display: block;
            margin: 10px 0;
            text-shadow: 0 0 10px var(--primary);
        }

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

        .section-title { 
            font-size: 24px; 
            color: var(--primary); 
            margin: 40px 0 20px; 
            border-left: 5px solid var(--accent); 
            padding-left: 15px; 
            font-family: 'Poppins', sans-serif;
        }

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

        .article-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
        .article-card {
            background: var(--surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            text-decoration: none;
            color: inherit;
            transition: 0.3s;
        }
        .article-card:hover { background: #252525; border-color: var(--primary); }
        .article-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
        .article-content { padding: 15px; }
        .article-content h3 { font-size: 16px; color: var(--primary); margin-bottom: 10px; line-height: 1.4; }
        .article-content p { font-size: 13px; color: var(--text-secondary); }

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin: 20px 0;
        }
        .payment-item {
            background: var(--surface);
            padding: 15px;
            text-align: center;
            border-radius: 10px;
            border: 1px solid var(--border-subtle);
            font-size: 12px;
            color: var(--text-secondary);
        }
        .payment-item i { display: block; font-size: 24px; color: var(--primary); margin-bottom: 8px; }

        .win-records { background: var(--surface); border-radius: 15px; overflow: hidden; }
        .win-row {
            display: grid;
            grid-template-columns: 1fr 2fr 1fr 1fr;
            padding: 12px;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 13px;
            text-align: center;
            align-items: center;
        }
        .win-row:nth-child(even) { background: #222; }
        .win-header { background: var(--border-strong); font-weight: bold; color: var(--primary); }

        .provider-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        .provider-box {
            background: linear-gradient(135deg, var(--surface), #333);
            padding: 20px;
            text-align: center;
            border-radius: 12px;
            font-weight: bold;
            border: 1px solid var(--border-subtle);
            color: var(--primary);
            font-size: 18px;
        }

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

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

        .safety-footer {
            text-align: center;
            padding: 40px 20px;
            background: #111;
            border-radius: 15px;
            margin-top: 40px;
        }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; font-size: 30px; color: var(--primary); }
        .safety-text { font-size: 13px; color: var(--text-muted); max-width: 700px; margin: 0 auto; }

        .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(--border-accent);
            z-index: 2000;
            box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-secondary);
            text-align: center;
            font-size: 11px;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        .nav-item i { font-size: 20px; color: var(--primary); }

        footer { background: #000; 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;
            text-align: left;
        }
        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 12px;
            transition: 0.3s;
        }
        .footer-links a:hover { color: var(--primary); }
        .copyright { color: var(--text-muted); font-size: 12px; border-top: 1px solid var(--border-subtle); padding-top: 20px; }

        @media (max-width: 600px) {
            .payment-methods { grid-template-columns: repeat(2, 1fr); }
            .win-row { grid-template-columns: 1fr 1fr; gap: 5px; }
            .win-header { display: none; }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            .intro-section h1 { font-size: 24px; }
        }