:root {
            --primary: #FFD700;
            --primary-dark: #C5A000;
            --secondary: #B22222;
            --accent: #FF4500;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --grad-start: #1a1a1a;
            --grad-end: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #757575;
            --text-inverse: #000000;
            --success: #00C851;
            --error: #FF4444;
            --warning: #FFBB33;
            --info: #33B5E5;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-muted: #262626;
            --font-heading: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
            --font-body: 'Roboto', 'Segoe UI', Arial, sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background: linear-gradient(to bottom, var(--grad-start), var(--grad-end)); 
            background-attachment: fixed;
            color: var(--text-primary); 
            font-family: var(--font-body); 
            line-height: 1.5;
            overflow-x: hidden;
        }

        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-highlight);
            padding: 0 15px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .logo-area { display: flex; align-items: center; gap: 10px; }
        header img { width: 25px; height: 25px; }
        header strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        header .btn { 
            padding: 6px 15px; 
            border-radius: 4px; 
            cursor: pointer; 
            font-weight: 600; 
            font-size: 14px; 
            border: none; 
            transition: 0.3s; 
        }
        header .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        header .btn-login:hover { background: var(--primary); color: var(--text-inverse); }
        header .btn-register { background: var(--primary); color: var(--text-inverse); }
        header .btn-register:hover { background: var(--primary-dark); }

        main { max-width: 1200px; margin: 0 auto; padding: 20px 15px 100px; }

        .hero-banner { 
            width: 100%; 
            aspect-ratio: 2/1; 
            border-radius: 12px; 
            overflow: hidden; 
            cursor: pointer; 
            border: 1px solid var(--border-default);
            margin-bottom: 20px;
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            background: var(--bg-surface);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { color: var(--primary); font-weight: bold; font-size: 18px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-value { 
            font-family: var(--font-heading); 
            font-size: 32px; 
            font-weight: 800; 
            color: #fff; 
            text-shadow: 0 0 10px var(--primary);
            letter-spacing: 2px;
        }

        .intro-card {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 40px;
            border-left: 5px solid var(--primary);
        }
        .intro-card h1 { 
            font-family: var(--font-heading); 
            font-size: 24px; 
            color: var(--primary); 
            margin-bottom: 15px; 
            line-height: 1.3;
        }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }

        h2 { 
            font-family: var(--font-heading); 
            font-size: 24px; 
            color: var(--primary); 
            margin: 30px 0 20px; 
            display: flex; 
            align-items: center; 
            gap: 10px; 
        }
        h2::before { content: ''; width: 4px; height: 24px; background: var(--secondary); display: inline-block; }

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

        .payment-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); 
            gap: 10px; 
            margin-bottom: 40px;
        }
        .payment-item { 
            background: var(--bg-surface); 
            padding: 15px; 
            border-radius: 8px; 
            text-align: center; 
            font-size: 13px; 
            border: 1px solid var(--border-muted);
            color: var(--text-secondary);
        }
        .payment-item i { display: block; font-size: 24px; color: var(--primary); margin-bottom: 8px; }

        .guide-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
            gap: 20px; 
            margin-bottom: 40px;
        }
        .guide-card { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: 12px; 
            border: 1px solid var(--border-muted);
        }
        .guide-card h3 { color: var(--primary); font-size: 18px; margin-bottom: 10px; }
        .guide-card p { color: var(--text-secondary); font-size: 14px; }

        .lottery-table { 
            width: 100%; 
            border-collapse: collapse; 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            margin-bottom: 40px;
        }
        .lottery-table th, .lottery-table td { 
            padding: 12px; 
            text-align: left; 
            border-bottom: 1px solid var(--border-muted); 
            font-size: 14px; 
        }
        .lottery-table th { background: var(--primary); color: var(--text-inverse); }
        .lottery-table td:nth-child(3) { color: var(--success); font-weight: bold; }

        .provider-wall { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            gap: 10px; 
            margin-bottom: 40px;
        }
        .provider-box { 
            background: linear-gradient(45deg, var(--bg-surface), #252525); 
            padding: 15px; 
            border-radius: 8px; 
            text-align: center; 
            font-weight: bold; 
            border: 1px solid var(--border-muted);
            color: var(--primary);
        }

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

        .faq-container { margin-bottom: 40px; }
        .faq-item { 
            background: var(--bg-surface); 
            margin-bottom: 10px; 
            border-radius: 8px; 
            overflow: hidden; 
            border: 1px solid var(--border-muted);
        }
        .faq-question { 
            padding: 15px; 
            background: #252525; 
            color: var(--primary); 
            font-weight: 600; 
            cursor: pointer;
        }
        .faq-answer { padding: 15px; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

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

        .navigator { 
            position: fixed; 
            bottom: 20px; 
            left: 50%; 
            transform: translateX(-50%); 
            background: var(--bg-overlay); 
            backdrop-filter: blur(10px); 
            padding: 10px 20px; 
            border-radius: 50px; 
            display: flex; 
            gap: 20px; 
            z-index: 2000; 
            border: 1px solid var(--border-highlight);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .nav-item { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            text-decoration: none; 
            color: var(--text-secondary); 
            font-size: 11px; 
            gap: 5px;
            transition: 0.3s;
        }
        .nav-item i { font-size: 18px; }
        .nav-item:hover { color: var(--primary); }

        footer { 
            background: var(--bg-surface); 
            padding: 40px 15px; 
            border-top: 1px solid var(--border-muted); 
            text-align: center; 
        }
        footer .contact-row { 
            display: flex; 
            justify-content: center; 
            gap: 20px; 
            margin-bottom: 30px; 
            flex-wrap: wrap;
        }
        footer .contact-row a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        footer .contact-row a:hover { color: var(--primary); }
        footer .links-grid { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 10px; 
            max-width: 800px; 
            margin: 0 auto 30px; 
            text-align: center;
        }
        footer .links-grid a { 
            color: var(--text-muted); 
            text-decoration: none; 
            font-size: 13px; 
            transition: 0.3s;
        }
        footer .links-grid a:hover { color: var(--primary); }
        footer .copyright { color: var(--text-muted); font-size: 12px; }

        @media (max-width: 768px) {
            .links-grid { grid-template-columns: repeat(3, 1fr); }
            .game-grid { grid-template-columns: repeat(2, 1fr); }
            .provider-wall { grid-template-columns: repeat(2, 1fr); }
        }