:root {
            --primary: #FFD700;
            --primary-dark: #B8860B;
            --secondary: #E60012;
            --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-disabled: #666666;
            --text-inverse: #000000;
            --success: #00C853;
            --warning: #FFB300;
            --error: #FF5252;
            --info: #2196F3;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-muted: #262626;
        }

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

        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; line-height: 1.2; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }

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

        header .logo-area { display: flex; align-items: center; gap: 10px; }
        header .logo-area img { width: 25px; height: 25px; object-fit: contain; }
        header .logo-area strong { font-size: 16px; font-weight: normal; }

        header .auth-buttons { display: flex; gap: 10px; }
        .btn-auth {
            padding: 8px 16px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-family: 'Roboto', sans-serif;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: var(--text-inverse); }

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

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

        .jackpot-container {
            background: linear-gradient(45deg, #B8860B, #FFD700);
            color: #000;
            text-align: center;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
        }
        .jackpot-title { font-weight: bold; font-size: 14px; text-transform: uppercase; }
        .jackpot-amount { font-family: 'JetBrains Mono', monospace; font-size: 32px; font-weight: bold; }

        .intro-card {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid var(--primary);
            margin-bottom: 30px;
            text-align: center;
        }
        .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; margin: 30px 0 20px; text-align: center; color: var(--primary); text-transform: uppercase; }

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

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }
        .payment-item {
            background: var(--bg-surface);
            padding: 15px;
            text-align: center;
            border-radius: 10px;
            border: 1px solid var(--border-muted);
            font-size: 13px;
            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: 30px;
        }
        .guide-item {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-muted);
        }
        .guide-item h3 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }

        .lottery-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
        }
        .lottery-table th, .lottery-table td {
            padding: 12px;
            text-align: center;
            border-bottom: 1px solid var(--border-muted);
            font-size: 14px;
        }
        .lottery-table th { background: var(--primary-dark); color: #000; }
        .win-amount { color: var(--success); font-weight: bold; }

        .provider-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }
        .provider-box {
            padding: 15px;
            text-align: center;
            font-weight: bold;
            border-radius: 5px;
            font-size: 14px;
        }
        .provider-box:nth-child(odd) { background: var(--primary-dark); color: #000; }
        .provider-box:nth-child(even) { background: var(--secondary); color: #fff; }

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

        .faq-section {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        .faq-item { margin-bottom: 20px; border-bottom: 1px solid var(--border-muted); padding-bottom: 15px; }
        .faq-item h3 { font-size: 17px; color: var(--primary); margin-bottom: 8px; cursor: pointer; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }

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

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--primary);
            z-index: 1001;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 12px; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; color: var(--primary); }

        footer {
            background: var(--bg-surface);
            padding: 40px 20px;
            text-align: center;
            border-top: 1px solid var(--border-default);
        }
        .footer-contact { margin-bottom: 30px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
        .footer-contact a { color: var(--text-secondary); font-size: 14px; }
        .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 { font-size: 13px; color: var(--text-secondary); display: block; padding: 5px 0; }
        .copyright { font-size: 13px; color: var(--text-disabled); border-top: 1px solid var(--border-muted); padding-top: 20px; }

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