:root {
            --primary: #FFD700;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --highlight: #FFB800;
            --main-bg: #0B0B0B;
            --surface: #1A1A1A;
            --overlay: rgba(0, 0, 0, 0.8);
            --grad-start: #1A1A1A;
            --grad-end: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #808080;
            --text-inverse: #000000;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #D50000;
            --info: #2196F3;
            --border-default: #333333;
            --border-active: #FFD700;
            --border-subtle: #262626;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Open Sans', sans-serif;
            --font-accent: 'Poppins', sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            background-color: var(--main-bg); 
            color: var(--text-primary); 
            font-family: var(--font-body); 
            line-height: 1.5; 
            overflow-x: hidden;
        }

        header {
            background-color: var(--surface);
            border-bottom: 2px solid var(--border-active);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: white; }
        .header-logo img { width: 25px; height: 25px; }
        .header-logo strong { font-size: 16px; font-weight: normal; }

        .header-auth { display: flex; gap: 10px; }
        .btn-auth { 
            padding: 8px 16px; 
            border-radius: 4px; 
            cursor: pointer; 
            font-family: var(--font-accent); 
            font-weight: 600; 
            border: none; 
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: var(--text-inverse); }
        .btn-auth:hover { opacity: 0.8; transform: translateY(-2px); }

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

        .jackpot-section {
            background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
            text-align: center;
            padding: 20px 0;
            border-bottom: 1px solid var(--border-subtle);
        }
        .jackpot-title { color: var(--text-secondary); font-size: 14px; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-value { 
            font-family: var(--font-heading); 
            font-size: 32px; 
            color: var(--primary); 
            font-weight: 700; 
            display: block;
        }

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

        .section-title { 
            text-align: center; 
            font-family: var(--font-heading); 
            font-size: 24px; 
            margin: 30px 0 20px; 
            color: var(--primary);
            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; 
            padding: 0 15px; 
        }
        .game-card { 
            background: var(--surface); 
            border-radius: 12px; 
            overflow: hidden; 
            text-decoration: none; 
            transition: 0.3s; 
            border: 1px solid var(--border-subtle);
        }
        .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); 
            font-family: var(--font-accent);
        }

        .article-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
            gap: 20px; 
            padding: 0 15px; 
        }
        .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 { border-color: var(--highlight); }
        .article-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
        .article-card-content { padding: 15px; }
        .article-card h3 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
        .article-card p { font-size: 14px; color: var(--text-secondary); }

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

        .win-table { 
            width: 95%; 
            margin: 0 auto 30px; 
            border-collapse: collapse; 
            background: var(--surface); 
            border-radius: 10px; 
            overflow: hidden;
            font-size: 13px;
        }
        .win-table th, .win-table td { padding: 12px; text-align: center; border-bottom: 1px solid var(--border-subtle); }
        .win-table th { background: var(--grad-start); color: var(--primary); }
        .win-table td { color: var(--text-secondary); }
        .win-amount { color: var(--success); font-weight: bold; }

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

        .comment-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
            gap: 20px; 
            padding: 0 15px; 
        }
        .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-user { font-weight: bold; color: white; }
        .comment-stars { color: var(--highlight); font-size: 12px; margin-bottom: 10px; }
        .comment-body { font-size: 14px; color: var(--text-secondary); font-style: italic; }
        .comment-date { font-size: 12px; color: var(--text-muted); margin-top: 10px; display: block; }

        .faq-section { padding: 40px 15px; max-width: 900px; margin: 0 auto; }
        .faq-item { background: var(--surface); border: 1px solid var(--border-subtle); border-radius: 8px; margin-bottom: 15px; padding: 20px; }
        .faq-item h3 { color: var(--primary); font-size: 18px; margin-bottom: 10px; }
        .faq-item p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

        .safety-section { 
            text-align: center; 
            padding: 40px 20px; 
            background: var(--surface); 
            border-top: 1px solid var(--border-subtle); 
        }
        .safety-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .safety-icons i { font-size: 40px; color: var(--primary); }
        .safety-text { color: var(--text-secondary); font-size: 14px; max-width: 700px; margin: 0 auto 20px; }
        .safety-link { color: var(--highlight); text-decoration: underline; font-size: 14px; }

        .navigator { 
            position: fixed; bottom: 0; left: 0; right: 0; 
            background: var(--surface); 
            display: flex; justify-content: space-around; 
            padding: 12px 0; border-top: 2px solid var(--primary); 
            z-index: 2000;
        }
        .nav-item { 
            text-decoration: none; color: var(--text-secondary); 
            text-align: center; font-size: 12px; 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; }
        .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); text-decoration: none; transition: 0.3s; }
        .footer-links a:hover { color: var(--primary); }
        .copyright { color: var(--text-muted); font-size: 13px; border-top: 1px solid var(--border-subtle); padding-top: 20px; }

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