:root {
            --primary: #FFD700;
            --primary-dark: #B8860B;
            --secondary: #E60012;
            --accent: #FF4500;
            --bg-main: #0B0D17;
            --bg-surface: #161B2D;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --bg-highlight: #1F263D;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B8D1;
            --text-muted: #6B728E;
            --text-inverse: #0B0D17;
            --success: #00C853;
            --warning: #FFB300;
            --error: #FF5252;
            --info: #2196F3;
            --border-light: #2D344D;
            --border-medium: #3F4763;
            --border-strong: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Roboto', 'Inter', Arial, sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: 'Montserrat', 'Segoe UI', Roboto, sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        header {
            background: var(--bg-surface);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--border-strong);
        }
        header .logo-box { display: flex; align-items: center; gap: 10px; }
        header .logo-box img { width: 25px; height: 25px; }
        header .logo-box strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        header .auth-btns { display: flex; gap: 10px; }
        .btn {
            padding: 8px 18px;
            border-radius: 5px;
            cursor: pointer;
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            border: none;
            transition: 0.3s;
        }
        .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(--secondary); color: white; }
        .btn-register:hover { background: var(--accent); }
        main { max-width: 1200px; margin: 0 auto; padding: 20px; padding-bottom: 100px; }
        .banner-container {
            width: 100%;
            aspect-ratio: 2/1;
            overflow: hidden;
            border-radius: 15px;
            cursor: pointer;
            margin-bottom: 20px;
            border: 2px solid var(--border-medium);
        }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(45deg, #161B2D, #1F263D);
            padding: 20px;
            text-align: center;
            border-radius: 15px;
            border: 2px solid var(--primary);
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { color: var(--text-secondary); font-size: 14px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount {
            font-family: 'Oswald', sans-serif;
            font-size: 32px;
            color: var(--primary);
            font-weight: 800;
            display: block;
        }
        .intro-card {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 30px;
            border-left: 5px solid var(--primary);
        }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 15px; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }
        .section-title {
            font-size: 24px;
            color: var(--primary);
            margin: 40px 0 20px;
            text-align: center;
            position: relative;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--secondary);
            margin: 10px auto;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-light);
            transition: 0.3s;
        }
        .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;
            text-align: center;
            color: var(--text-primary);
        }
        .payment-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            margin-bottom: 40px;
        }
        .payment-item {
            background: var(--bg-highlight);
            padding: 15px;
            text-align: center;
            border-radius: 10px;
            font-size: 14px;
            border: 1px solid var(--border-medium);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        .payment-item i { color: var(--primary); font-size: 20px; }
        .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-top: 3px solid var(--primary);
        }
        .guide-card h3 { font-size: 18px; margin-bottom: 10px; 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: left;
            border-bottom: 1px solid var(--border-light);
        }
        .lottery-table th { background: var(--bg-highlight); color: var(--primary); }
        .lottery-table td { font-size: 14px; color: var(--text-secondary); }
        .win-amount { color: var(--success); font-weight: bold; }
        .providers-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 40px;
        }
        .provider-box {
            background: var(--bg-highlight);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            color: var(--primary);
            border: 1px solid var(--border-medium);
        }
        .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: 30px; color: var(--primary); }
        .comment-user { font-weight: bold; }
        .comment-stars { color: #FFD700; font-size: 12px; margin-bottom: 10px; }
        .comment-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-muted); }
        .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;
            cursor: pointer;
            font-weight: bold;
            color: var(--primary);
            display: flex;
            justify-content: space-between;
        }
        .faq-answer {
            padding: 0 15px 15px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        .security-box {
            background: var(--bg-surface);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            border: 1px dashed var(--primary);
        }
        .security-box .ssl-badge {
            font-size: 40px;
            color: var(--success);
            margin-bottom: 15px;
        }
        .security-box p { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .security-box a { color: var(--primary); text-decoration: underline; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--primary);
            z-index: 1001;
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
            color: var(--text-secondary);
            gap: 5px;
        }
        .nav-item i { font-size: 20px; color: var(--primary); }
        footer {
            background: var(--bg-surface);
            padding: 40px 20px 110px;
            text-align: center;
            border-top: 1px solid var(--border-medium);
        }
        footer .contact-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        footer .contact-links a { color: var(--primary); font-size: 14px; }
        footer .footer-cols {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            text-align: left;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        footer .footer-cols a {
            display: block;
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }
        footer .copyright { color: var(--text-muted); font-size: 13px; }
        @media (max-width: 768px) {
            .footer-cols { grid-template-columns: repeat(2, 1fr); }
            .game-grid { grid-template-columns: repeat(2, 1fr); }
        }