:root {
            --primary: #FFD700;
            --primary-variant: #C5A000;
            --secondary: #B22222;
            --accent: #FF4500;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --bg-gradient-start: #1a1a1a;
            --bg-gradient-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-subtle: #262626;
            --font-heading: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
            --font-body: 'Roboto', 'Segoe UI', Arial, sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            background: linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            overflow-x: hidden;
        }

        header {
            background-color: 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(--primary);
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }

        header .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--text-primary);
        }

        header .logo-area img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }

        header .logo-area 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-heading);
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            font-size: 14px;
        }

        .btn-login {
            background-color: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }

        .btn-login:hover {
            background-color: var(--primary);
            color: var(--text-inverse);
        }

        .btn-register {
            background-color: var(--primary);
            color: var(--text-inverse);
        }

        .btn-register:hover {
            background-color: var(--primary-variant);
            box-shadow: 0 0 10px var(--primary);
        }

        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;
            border: 2px solid var(--border-default);
            transition: transform 0.3s ease;
        }

        .hero-banner:hover { transform: scale(1.01); }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            background: linear-gradient(45deg, var(--secondary), var(--accent));
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(255, 69, 0, 0.4);
            border: 2px solid var(--primary);
        }

        .jackpot-label {
            font-family: var(--font-heading);
            font-size: 18px;
            color: var(--primary);
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .jackpot-amount {
            font-family: 'JetBrains Mono', monospace;
            font-size: 36px;
            font-weight: 800;
            color: #fff;
            text-shadow: 0 0 10px #000;
        }

        .intro-card {
            background-color: var(--bg-surface);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            margin-bottom: 40px;
            border: 1px solid var(--border-default);
            position: relative;
        }

        .intro-card h1 {
            font-family: var(--font-heading);
            font-size: 30px;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .intro-card p {
            color: var(--text-secondary);
            font-size: 16px;
            max-width: 800px;
            margin: 0 auto;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 24px;
            color: var(--primary);
            margin: 40px 0 20px;
            text-align: center;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 10px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--primary);
        }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .game-card {
            background-color: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-subtle);
            transition: all 0.3s ease;
        }

        .game-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }

        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            border-bottom: 1px solid var(--border-subtle);
        }

        .game-card h3 {
            padding: 12px;
            font-size: 16px;
            color: var(--text-primary);
            text-align: center;
            font-family: var(--font-heading);
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            margin-bottom: 40px;
        }

        .payment-item {
            background-color: var(--bg-surface);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid var(--border-subtle);
            color: var(--text-secondary);
            font-size: 14px;
            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-color: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border-left: 4px solid var(--primary);
        }

        .guide-card h3 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 18px;
        }

        .guide-card p {
            color: var(--text-secondary);
            font-size: 14px;
        }

        .win-table {
            width: 100%;
            border-collapse: collapse;
            background-color: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 40px;
        }

        .win-table th, .win-table td {
            padding: 12px;
            text-align: center;
            border-bottom: 1px solid var(--border-subtle);
        }

        .win-table th {
            background-color: var(--primary-variant);
            color: var(--text-inverse);
            font-family: var(--font-heading);
        }

        .win-table tr:last-child td { border-bottom: none; }
        .win-amount { color: var(--success); font-weight: bold; }

        .provider-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 40px;
        }

        .provider-box {
            padding: 15px;
            text-align: center;
            font-weight: bold;
            border-radius: 8px;
            font-family: var(--font-heading);
            text-transform: uppercase;
        }

        .provider-box:nth-child(odd) { background-color: var(--secondary); color: #fff; }
        .provider-box:nth-child(even) { background-color: var(--primary); color: #000; }

        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .review-card {
            background-color: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-subtle);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .review-header i {
            font-size: 30px;
            color: var(--primary);
        }

        .review-name { font-weight: bold; color: var(--text-primary); }
        .review-stars { color: var(--warning); font-size: 14px; margin-bottom: 10px; }
        .review-text { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
        .review-date { color: var(--text-disabled); font-size: 12px; }

        .faq-container {
            display: grid;
            gap: 15px;
            margin-bottom: 40px;
        }

        .faq-item {
            background-color: var(--bg-surface);
            border-radius: 10px;
            border: 1px solid var(--border-subtle);
            overflow: hidden;
        }

        .faq-question {
            padding: 15px 20px;
            background-color: #252525;
            color: var(--primary);
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
        }

        .faq-answer {
            padding: 15px 20px;
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.6;
        }

        .security-footer {
            text-align: center;
            padding: 30px;
            background-color: var(--bg-surface);
            border-radius: 20px;
            border: 1px solid var(--border-subtle);
        }

        .security-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .sec-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-secondary);
            font-size: 14px;
        }

        .sec-item i { color: var(--success); font-size: 20px; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 10px 0;
            border-top: 2px solid var(--primary);
            z-index: 2000;
            box-shadow: 0 -4px 10px rgba(0,0,0,0.5);
        }

        .nav-item {
            text-decoration: none;
            color: var(--text-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
            gap: 4px;
            transition: color 0.3s ease;
        }

        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--primary); }

        footer {
            background-color: #000;
            padding: 40px 20px 120px;
            text-align: center;
            border-top: 1px solid var(--border-subtle);
        }

        .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;
            transition: color 0.3s;
        }

        .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;
            text-align: center;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s;
        }

        .footer-links a:hover { color: var(--primary); }

        .footer-copy {
            color: var(--text-disabled);
            font-size: 12px;
            margin-top: 20px;
        }

        @media (max-width: 768px) {
            .game-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(3, 1fr); }
            .intro-card h1 { font-size: 22px; }
        }