:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #B8860B;
            --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: #666666;
            --text-inverse: #000000;
            --success: #28A745;
            --error: #DC3545;
            --warning: #FFC107;
            --info: #17A2B8;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-subtle: #262626;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Roboto', sans-serif;
            --font-accent: 'Oswald', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background-color: var(--bg-main); 
            color: var(--text-primary); 
            font-family: var(--font-body); 
            line-height: 1.5; 
            overflow-x: hidden; 
        }
        header {
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            padding: 0 20px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .brand { display: flex; align-items: center; gap: 10px; }
        header .brand img { width: 25px; height: 25px; }
        header .brand strong { font-size: 16px; font-weight: normal; color: var(--text-primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-family: var(--font-accent);
            font-weight: 500;
            transition: 0.3s;
            border: none;
            text-decoration: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-login:hover { background: var(--primary); color: var(--text-inverse); }
        .btn-register { background: var(--primary); color: var(--text-inverse); }
        .btn-register:hover { background: var(--primary-hover); }
        
        main { max-width: 1200px; margin: 0 auto; padding: 20px; padding-bottom: 100px; }
        .banner-container { width: 100%; margin-bottom: 20px; cursor: pointer; }
        .banner-container img { 
            width: 100%; 
            aspect-ratio: 2/1; 
            object-fit: cover; 
            border-radius: 12px; 
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); 
        }
        
        .jackpot-section {
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.5);
        }
        .jackpot-title { font-family: var(--font-accent); color: var(--text-inverse); font-size: 18px; text-transform: uppercase; }
        .jackpot-amount { 
            font-family: var(--font-heading); 
            font-size: 36px; 
            font-weight: 700; 
            color: #fff; 
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            margin: 10px 0;
        }
        
        .intro-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-default);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 40px;
            text-align: center;
            border-bottom: 4px solid var(--primary);
        }
        .intro-card h1 { 
            font-family: var(--font-heading); 
            font-size: 32px; 
            color: var(--primary); 
            margin-bottom: 15px; 
            line-height: 1.2;
        }
        .intro-card p { color: var(--text-secondary); font-size: 18px; }

        .section-title { 
            font-family: var(--font-heading); 
            font-size: 24px; 
            margin-bottom: 20px; 
            display: flex; 
            align-items: center; 
            gap: 10px; 
            color: var(--primary);
        }
        .section-title::before { content: ''; width: 4px; height: 24px; background: var(--primary); 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-subtle);
        }
        .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: 16px; 
            color: var(--text-primary); 
            text-align: center; 
            font-family: var(--font-body);
        }

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

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

        .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: center; 
            border-bottom: 1px solid var(--border-subtle); 
        }
        .lottery-table th { background: var(--secondary); color: #fff; font-family: var(--font-accent); }
        .lottery-table td { color: var(--text-secondary); font-size: 14px; }
        .win-amount { color: var(--primary); font-weight: bold; }

        .provider-wall { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            gap: 10px; 
            margin-bottom: 40px; 
        }
        .provider-box { 
            padding: 15px; 
            text-align: center; 
            font-weight: bold; 
            font-family: var(--font-accent); 
            border-radius: 8px; 
            background: var(--bg-surface); 
            border: 1px solid var(--border-subtle);
        }
        .provider-box:nth-child(odd) { color: var(--primary); }
        .provider-box:nth-child(even) { color: var(--accent); }

        .comments-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
            gap: 20px; 
            margin-bottom: 40px; 
        }
        .comment-card { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: 12px; 
            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-header .user-info { display: flex; flex-direction: column; }
        .comment-header .user-name { font-weight: bold; font-size: 15px; }
        .comment-header .user-date { font-size: 12px; color: var(--text-muted); }
        .comment-stars { color: #FFD700; margin-bottom: 10px; font-size: 13px; }
        .comment-text { font-size: 14px; color: var(--text-secondary); font-style: italic; }

        .faq-section { margin-bottom: 40px; }
        .faq-item { 
            background: var(--bg-surface); 
            margin-bottom: 10px; 
            border-radius: 8px; 
            border: 1px solid var(--border-subtle); 
            overflow: hidden; 
        }
        .faq-question { 
            padding: 15px; 
            font-weight: bold; 
            cursor: pointer; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            color: var(--primary); 
        }
        .faq-answer { padding: 15px; color: var(--text-secondary); font-size: 14px; border-top: 1px solid var(--border-subtle); }

        .security-banner { 
            background: var(--bg-surface); 
            border: 1px solid var(--border-default); 
            padding: 25px; 
            border-radius: 15px; 
            text-align: center; 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            gap: 15px;
        }
        .security-icons { display: flex; gap: 20px; font-size: 30px; color: var(--primary); }
        .security-text { color: var(--text-secondary); font-size: 14px; max-width: 700px; }
        .security-text a { color: var(--primary); text-decoration: underline; }

        .navigator { 
            position: fixed; 
            bottom: 0; 
            left: 0; 
            right: 0; 
            height: 65px; 
            background: var(--bg-surface); 
            display: flex; 
            justify-content: space-around; 
            align-items: center; 
            border-top: 2px solid var(--primary); 
            z-index: 1001; 
            box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
        }
        .nav-item { 
            text-decoration: none; 
            color: var(--text-secondary); 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            font-size: 11px; 
            gap: 4px; 
            transition: 0.3s;
        }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--primary); }

        footer { 
            background: var(--bg-surface); 
            padding: 40px 20px; 
            border-top: 1px solid var(--border-default); 
            text-align: center; 
        }
        .footer-contact { 
            display: flex; 
            justify-content: center; 
            gap: 20px; 
            margin-bottom: 30px; 
            flex-wrap: wrap;
        }
        .footer-contact a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .footer-contact a:hover { color: var(--primary); }
        .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: 13px; 
            transition: 0.3s; 
        }
        .footer-links a:hover { color: var(--primary); }
        .footer-copy { color: var(--text-muted); font-size: 12px; }

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