:root {
            --primary: #FFD700;
            --primary-hover: #FFC800;
            --secondary: #B8860B;
            --accent: #FF4500;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-disabled: #666666;
            --text-inverse: #000000;
            --success: #28A745;
            --error: #DC3545;
            --warning: #FFC107;
            --info: #17A2B8;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-subtle: #262626;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Roboto', sans-serif;
            --font-accent: 'Oswald', sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background-color: var(--bg-main); 
            color: var(--text-primary); 
            font-family: var(--font-body); 
            line-height: 1.5; 
            overflow-x: hidden;
            padding-bottom: 80px;
        }
        h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }

        header {
            background: var(--bg-surface);
            border-bottom: 2px solid var(--border-highlight);
            padding: 0 20px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            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; color: var(--primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        .btn-auth {
            padding: 6px 16px;
            border-radius: 4px;
            font-family: var(--font-accent);
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
            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(--primary); color: var(--text-inverse); }
        .btn-register:hover { background: var(--primary-hover); }

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

        .jackpot-container {
            background: linear-gradient(45deg, var(--bg-surface), #2a2a2a);
            border: 2px solid var(--secondary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-title { font-family: var(--font-accent); color: var(--primary); font-size: 20px; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { 
            font-family: var(--font-accent); 
            font-size: 36px; 
            color: #fff; 
            text-shadow: 0 0 10px var(--primary);
            font-weight: bold;
        }

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

        .section-title { 
            font-size: 24px; 
            margin-bottom: 20px; 
            display: flex; 
            align-items: center; 
            gap: 10px; 
            color: var(--primary); 
        }
        .section-title::before { content: ""; width: 4px; height: 24px; background: var(--accent); display: inline-block; }

        .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;
            border: 1px solid var(--border-subtle);
            transition: 0.3s;
        }
        .game-card:hover { border-color: var(--primary); transform: translateY(-5px); }
        .game-card img { 
            width: 100%; 
            aspect-ratio: 1/1; 
            object-fit: cover; 
            display: block;
        }
        .game-info { padding: 12px; text-align: center; }
        .game-info h3 { font-size: 16px; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

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

        .win-board {
            background: var(--bg-surface);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 40px;
            overflow-x: auto;
        }
        .win-table { width: 100%; border-collapse: collapse; min-width: 500px; }
        .win-table th { text-align: left; color: var(--primary); padding: 12px; border-bottom: 1px solid var(--border-default); }
        .win-table td { padding: 12px; border-bottom: 1px solid var(--border-subtle); font-size: 14px; }
        .win-amount { color: var(--success); font-weight: bold; }

        .provider-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 40px;
        }
        .provider-block {
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-family: var(--font-accent);
            font-weight: bold;
            color: #000;
            text-transform: uppercase;
        }
        .p-gold { background: var(--primary); }
        .p-dark { background: var(--secondary); color: #fff; }

        .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;
            border: 1px solid var(--border-subtle);
        }
        .comment-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .comment-header i { font-size: 40px; color: var(--primary); }
        .comment-user { font-weight: bold; }
        .comment-stars { color: var(--warning); 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-disabled); }

        .faq-section { margin-bottom: 40px; }
        .faq-item {
            background: var(--bg-surface);
            border-radius: 10px;
            margin-bottom: 10px;
            padding: 15px;
            border: 1px solid var(--border-subtle);
        }
        .faq-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 10px; cursor: pointer; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

        .security-banner {
            background: var(--bg-surface);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            border: 1px solid var(--border-highlight);
            margin-bottom: 40px;
        }
        .security-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .sec-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); }
        .sec-item i { color: var(--primary); font-size: 20px; }
        .age-limit { color: var(--error); font-weight: bold; margin-top: 15px; display: block; }

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

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

        @media (max-width: 768px) {
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            .game-grid { grid-template-columns: repeat(2, 1fr); }
        }