:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #C0C0C0;
            --accent: #FF4500;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-elevated: #2C2C2C;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #666666;
            --text-inverse: #000000;
            --success: #28A745;
            --warning: #FFC107;
            --error: #DC3545;
            --info: #17A2B8;
            --border-subtle: #333333;
            --border-default: #444444;
            --border-highlight: #FFD700;
        }

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

        h1, h2, h3 { font-family: 'Montserrat', sans-serif; color: var(--primary); }
        a { text-decoration: none; color: inherit; transition: 0.3s; }

        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-highlight);
        }
        header .logo-area { display: flex; align-items: center; gap: 10px; }
        header img { width: 25px; height: 25px; object-fit: contain; }
        header .auth-buttons { display: flex; gap: 10px; }
        header button {
            padding: 8px 16px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            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-hover); }

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

        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            background: linear-gradient(45deg, #000, #2C2C2C);
            border: 2px solid var(--primary);
            border-radius: 15px;
            text-align: center;
            padding: 20px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-label { color: var(--secondary); font-size: 1.2rem; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: bold;
            color: var(--primary);
            text-shadow: 0 0 10px var(--primary);
            margin: 10px 0;
        }

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

        .section-title { text-align: center; margin: 40px 0 20px; font-size: 1.8rem; position: relative; }
        .section-title::after { content: ''; display: block; width: 60px; height: 3px; background: var(--primary); margin: 10px auto; }

        .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-subtle);
            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; }
        .game-card h3 { padding: 12px; font-size: 1rem; text-align: center; color: var(--text-primary); }

        .payment-licenses {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            margin-bottom: 40px;
        }
        .pay-item {
            background: var(--bg-elevated);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: var(--secondary);
            font-size: 0.9rem;
        }
        .pay-item i { font-size: 1.5rem; 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: 15px;
            border: 1px solid var(--border-default);
        }
        .guide-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
        .guide-card p { color: var(--text-secondary); font-size: 0.95rem; }

        .win-table-container {
            background: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 40px;
        }
        .win-table { width: 100%; border-collapse: collapse; }
        .win-table th { background: var(--bg-elevated); color: var(--primary); padding: 15px; text-align: left; }
        .win-table td { padding: 12px 15px; border-bottom: 1px solid var(--border-subtle); color: var(--text-secondary); }
        .win-table tr:hover { background: rgba(255,215,0,0.05); }
        .win-amount { color: var(--success); font-weight: bold; }

        .providers-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 40px;
        }
        .provider-block {
            background: var(--bg-elevated);
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            border: 1px solid var(--border-subtle);
        }
        .provider-block:nth-child(odd) { 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: 15px;
            position: relative;
        }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 2rem; color: var(--primary); }
        .comment-user { font-weight: bold; }
        .comment-stars { color: var(--primary); margin-bottom: 10px; }
        .comment-text { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 10px; }
        .comment-date { font-size: 0.8rem; color: var(--text-muted); }

        .faq-section { margin-bottom: 40px; }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 10px;
            border: 1px solid var(--border-subtle);
            overflow: hidden;
        }
        .faq-question {
            padding: 15px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            font-weight: 600;
            color: var(--primary);
        }
        .faq-answer { padding: 0 20px 15px; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }

        .security-footer {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .security-badges { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
        .badge {
            background: var(--bg-elevated);
            padding: 10px 20px;
            border-radius: 50px;
            border: 1px solid var(--primary);
            font-size: 0.85rem;
            color: var(--primary);
        }
        .security-text { color: var(--text-secondary); font-size: 0.9rem; max-width: 700px; }
        .security-text 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: 2000;
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 0.75rem;
            color: var(--text-secondary);
            gap: 5px;
        }
        .nav-item i { font-size: 1.2rem; color: var(--primary); }

        footer {
            background: var(--bg-surface);
            padding: 40px 20px;
            border-top: 1px solid var(--border-default);
            text-align: center;
        }
        footer .contact-row {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        footer .contact-link { color: var(--primary); font-weight: 500; }
        footer .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            max-width: 800px;
            margin: 0 auto 30px;
            text-align: left;
        }
        footer .footer-link-item { color: var(--text-secondary); font-size: 0.9rem; }
        footer .copyright { color: var(--text-muted); font-size: 0.85rem; border-top: 1px solid var(--border-subtle); padding-top: 20px; }

        @media (max-width: 768px) {
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            .jackpot-amount { font-size: 2rem; }
            header { padding: 10px; }
            .intro-card h1 { font-size: 1.5rem; }
        }