:root {
            --primary: #FFD700;
            --primary-dark: #B8860B;
            --secondary: #E60012;
            --accent: #00FFC8;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --grad-start: #1a1a1a;
            --grad-end: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #666666;
            --text-inverse: #000000;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #FF5252;
            --info: #2196F3;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-subtle: #262626;
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Roboto', sans-serif;
            --font-heading: 'Oswald', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            background: linear-gradient(to bottom, var(--grad-start), var(--grad-end));
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 5%;
            background: var(--bg-surface);
            border-bottom: 2px solid var(--primary);
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 60px;
        }
        header .logo-section {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--text-primary);
        }
        header .logo-section img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }
        header .logo-section strong {
            font-size: 16px;
            font-weight: normal;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        header .auth-buttons {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 8px 16px;
            border-radius: 5px;
            cursor: pointer;
            font-family: var(--font-secondary);
            font-weight: 600;
            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-dark); }

        main { padding: 0 5%; max-width: 1200px; margin: 0 auto; }
        .banner-container {
            width: 100%;
            aspect-ratio: 2/1;
            margin: 20px 0;
            cursor: pointer;
            overflow: hidden;
            border-radius: 15px;
            border: 2px solid var(--border-default);
        }
        .banner-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .banner-container:hover img { transform: scale(1.05); }

        .jackpot-section {
            text-align: center;
            padding: 30px 0;
            background: radial-gradient(circle, #2a2a2a 0%, #0f0f0f 100%);
            border-radius: 15px;
            margin-bottom: 30px;
            border: 1px solid var(--border-subtle);
        }
        .jackpot-title {
            font-family: var(--font-heading);
            color: var(--primary);
            font-size: 20px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        .jackpot-amount {
            font-family: var(--font-heading);
            font-size: 48px;
            color: var(--accent);
            text-shadow: 0 0 20px rgba(0, 255, 200, 0.5);
            font-weight: bold;
        }

        .intro-card {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid var(--primary);
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .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: 16px;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 28px;
            color: var(--text-primary);
            text-align: center;
            margin: 40px 0 20px;
            position: relative;
            text-transform: uppercase;
        }
        .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: 40px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-subtle);
            transition: 0.3s;
            display: block;
        }
        .game-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            padding: 12px;
            font-size: 16px;
            color: var(--text-primary);
            text-align: center;
            font-family: var(--font-secondary);
        }

        .payment-licenses {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin: 40px 0;
        }
        .payment-item {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            font-size: 12px;
            color: var(--text-secondary);
            border: 1px solid var(--border-subtle);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        .payment-item i {
            font-size: 24px;
            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-subtle);
        }
        .guide-card h3 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 18px;
        }
        .guide-card p {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .win-list {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            margin-bottom: 40px;
        }
        .win-item {
            display: grid;
            grid-template-columns: 1fr 1.5fr 1fr 1fr;
            padding: 12px 20px;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 14px;
            align-items: center;
        }
        .win-item:nth-child(even) { background: #222; }
        .win-item .user { font-weight: bold; color: var(--text-primary); }
        .win-item .game { color: var(--text-secondary); }
        .win-item .amount { color: var(--success); font-weight: bold; }
        .win-item .time { color: var(--text-muted); text-align: right; }

        .providers-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 40px;
        }
        .provider-box {
            padding: 20px;
            border-radius: 10px;
            font-weight: bold;
            text-align: center;
            font-family: var(--font-heading);
            text-transform: uppercase;
        }
        .provider-box:nth-child(odd) { background: var(--primary); color: var(--text-inverse); }
        .provider-box:nth-child(even) { background: var(--secondary); color: var(--text-primary); }

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

        .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 20px;
            color: var(--primary);
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            padding: 0 20px 15px;
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.6;
        }

        .security-footer {
            text-align: center;
            padding: 30px;
            background: var(--bg-surface);
            border-radius: 15px;
            border: 1px solid var(--border-highlight);
            margin-bottom: 60px;
        }
        .security-footer .ssl-badge {
            font-size: 40px;
            color: var(--accent);
            margin-bottom: 15px;
        }
        .security-footer p {
            font-size: 14px;
            color: var(--text-secondary);
            margin: 5px 0;
        }
        .security-footer a {
            color: var(--primary);
            text-decoration: none;
            font-weight: bold;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-surface);
            border-top: 2px solid var(--primary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            z-index: 2000;
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 12px;
            gap: 5px;
        }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--primary); }

        footer {
            background: #000;
            padding: 40px 5% 100px;
            color: var(--text-secondary);
            text-align: center;
            border-top: 1px solid var(--border-subtle);
        }
        footer .contact-links {
            margin-bottom: 30px;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        footer .contact-links a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 14px;
            padding: 5px 15px;
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
        }
        footer .footer-cols {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 800px;
            margin: 0 auto 30px;
            text-align: left;
        }
        footer .col-links a {
            display: block;
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            margin-bottom: 8px;
        }
        footer .col-links a:hover { color: var(--primary); }
        footer .copyright {
            font-size: 13px;
            color: var(--text-muted);
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
        }

        @media (max-width: 768px) {
            .payment-licenses { grid-template-columns: repeat(2, 1fr); }
            .footer-cols { grid-template-columns: repeat(2, 1fr); }
            .win-item { grid-template-columns: 1fr 1fr; gap: 10px; }
            .win-item .time { text-align: left; }
            .providers-wall { grid-template-columns: 1fr; }
        }