:root {
            --primary: #FFD700;
            --primary-dark: #B8860B;
            --secondary: #C0C0C0;
            --accent: #FF4500;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-elevated: #2D2D2D;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-disabled: #666666;
            --text-inverse: #000000;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #FF1744;
            --info: #2979FF;
            --border-light: #333333;
            --border-medium: #4D4D4D;
            --border-strong: #FFD700;
            --font-primary: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
            --font-secondary: 'Open Sans', Arial, sans-serif;
            --font-heading: 'Poppins', sans-serif;
        }

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

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

        header .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
        header .brand img { width: 25px; height: 25px; object-fit: cover; }
        header .brand strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        header button {
            padding: 8px 16px;
            border-radius: 5px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: 0.3s;
            font-family: var(--font-primary);
        }
        header .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        header .btn-register { background: var(--primary); color: var(--text-inverse); }
        header button:hover { opacity: 0.8; transform: translateY(-2px); }

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

        .banner-container { width: 100%; margin-bottom: 20px; cursor: pointer; }
        .banner-container img { width: 100%; aspect-ratio: 2/1; object-fit: cover; border-radius: 15px; border: 2px solid var(--border-medium); }

        .jackpot-section {
            background: linear-gradient(45deg, #B8860B, #FFD700);
            color: var(--text-inverse);
            padding: 20px;
            text-align: center;
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }
        .jackpot-title { font-family: var(--font-heading); font-weight: 700; font-size: 20px; text-transform: uppercase; }
        .jackpot-amount { font-size: 32px; font-weight: 800; margin: 10px 0; font-family: 'Courier New', monospace; }

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

        .section-title {
            font-family: var(--font-heading);
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 20px;
            text-align: center;
            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;
            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-light);
        }
        .game-card:hover { transform: scale(1.03); 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: 15px; 
            color: var(--text-primary); 
            text-align: center; 
            font-family: var(--font-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 40px;
            text-align: center;
        }
        .payment-item {
            background: var(--bg-elevated);
            padding: 15px 5px;
            border-radius: 10px;
            font-size: 13px;
            color: var(--secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            border: 1px solid var(--border-light);
        }
        .payment-item i { font-size: 20px; color: var(--primary); }

        .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-light);
        }
        .guide-card h3 { color: var(--primary); margin-bottom: 10px; font-size: 18px; }
        .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-light);
            font-size: 14px;
        }
        .lottery-table th { background: var(--bg-elevated); color: var(--primary); }
        .lottery-table tr:last-child td { border-bottom: none; }
        .win-amount { color: var(--success); font-weight: bold; }

        .provider-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 40px;
        }
        .provider-box {
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            color: var(--text-inverse);
            text-transform: uppercase;
        }
        .provider-box:nth-child(odd) { background: var(--primary); color: var(--text-inverse); }
        .provider-box:nth-child(even) { background: var(--accent); color: var(--text-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-light);
        }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 24px; color: var(--primary); }
        .comment-header .name { font-weight: bold; }
        .comment-stars { color: var(--warning); font-size: 13px; margin-bottom: 10px; }
        .comment-body { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-disabled); }

        .faq-section { margin-bottom: 40px; }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 8px;
            border: 1px solid var(--border-light);
        }
        .faq-question {
            padding: 15px;
            color: var(--primary);
            font-weight: 600;
            cursor: pointer;
            display: block;
            font-size: 16px;
        }
        .faq-answer { padding: 0 15px 15px 15px; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

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

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            border-top: 2px solid var(--border-strong);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            z-index: 1000;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
            gap: 5px;
            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-light);
            text-align: center;
        }
        .footer-contact {
            margin-bottom: 30px;
            display: flex;
            justify-content: center;
            gap: 20px;
            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 auto;
            text-align: left;
        }
        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 13px;
            transition: 0.3s;
        }
        .footer-links a:hover { color: var(--primary); }
        .footer-copy { color: var(--text-disabled); font-size: 13px; margin-top: 20px; }

        @media (max-width: 768px) {
            .payment-methods { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
        }