:root {
            --primary: #FFD700;
            --primary-dark: #B8860B;
            --secondary: #C0C0C0;
            --accent: #FF4500;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #666666;
            --text-on-brand: #000000;
            --success: #00C851;
            --warning: #FFBB00;
            --error: #FF4444;
            --info: #33B5E5;
            --border-subtle: #333333;
            --border-medium: #444444;
            --border-highlight: #FFD700;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg-main);
            background-image: linear-gradient(to bottom, var(--bg-surface), #000000);
            color: var(--text-primary);
            font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 80px;
        }

        h1, h2, h3 {
            font-family: 'Montserrat', 'Segoe UI', Roboto, Arial, sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        h1 { font-size: 40px; color: var(--primary); text-align: center; margin-bottom: 20px; }
        h2 { font-size: 32px; color: var(--primary); text-align: center; margin: 40px 0 20px; position: relative; }
        h2::after { content: ''; display: block; width: 60px; height: 3px; background: var(--accent); margin: 10px auto; }
        h3 { font-size: 20px; color: var(--text-primary); margin: 10px 0; }

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

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

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

        header .logo-area strong {
            font-size: 16px;
            font-weight: normal;
            color: var(--primary);
        }

        header .auth-buttons {
            display: flex;
            gap: 10px;
        }

        .btn {
            padding: 8px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: 0.3s;
            border: none;
            text-decoration: none;
            font-family: inherit;
        }

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

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

        .btn:hover {
            filter: brightness(1.2);
            transform: translateY(-2px);
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            overflow: hidden;
            border-radius: 15px;
            margin-top: 20px;
            cursor: pointer;
            border: 2px solid var(--border-medium);
        }

        .hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .jackpot-container {
            background: linear-gradient(45deg, #B8860B, #FFD700);
            margin: 20px 0;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }

        .jackpot-label {
            color: var(--text-on-brand);
            font-weight: 700;
            font-size: 18px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .jackpot-value {
            font-family: 'Courier New', monospace;
            font-size: 36px;
            font-weight: 800;
            color: #000;
            display: block;
        }

        .intro-card {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid var(--primary);
            text-align: center;
            margin-bottom: 40px;
        }

        .intro-card p {
            color: var(--text-secondary);
            font-size: 18px;
            max-width: 800px;
            margin: 0 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;
            transition: 0.3s;
            border: 1px solid var(--border-subtle);
            display: flex;
            flex-direction: column;
        }

        .game-card:hover {
            border-color: var(--primary);
            transform: scale(1.02);
        }

        .game-card img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
        }

        .game-info {
            padding: 15px;
            text-align: center;
        }

        .game-info h3 {
            font-size: 16px;
            margin: 0;
            color: var(--text-primary);
        }

        .payment-section {
            background: var(--bg-surface);
            padding: 25px;
            border-radius: 15px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            border: 1px solid var(--border-medium);
        }

        .payment-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--secondary);
            font-size: 14px;
            background: rgba(255,255,255,0.05);
            padding: 8px 15px;
            border-radius: 20px;
        }

        .payment-item i {
            color: var(--primary);
        }

        .guides-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;
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

        .winner-table-container {
            background: var(--bg-surface);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 40px;
            overflow-x: auto;
        }

        .winner-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }

        .winner-table th {
            color: var(--primary);
            padding: 12px;
            border-bottom: 2px solid var(--border-medium);
        }

        .winner-table td {
            padding: 12px;
            border-bottom: 1px solid var(--border-subtle);
            color: var(--text-secondary);
            font-size: 14px;
        }

        .winner-table tr:hover {
            background: rgba(255,215,0,0.05);
        }

        .winner-amount {
            color: var(--success);
            font-weight: bold;
        }

        .providers-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 40px;
        }

        .provider-box {
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 14px;
            border: 1px solid var(--border-medium);
        }

        .prov-1 { background: linear-gradient(to right, #333, #111); color: #fff; }
        .prov-2 { background: linear-gradient(to right, #B8860B, #8B4513); color: #fff; }
        .prov-3 { background: linear-gradient(to right, #444, #222); color: #fff; }
        .prov-4 { background: linear-gradient(to right, #FFD700, #FFB800); color: #000; }

        .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: 12px;
            border: 1px solid var(--border-subtle);
        }

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

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

        .comment-user {
            font-weight: bold;
            color: var(--text-primary);
        }

        .comment-stars {
            color: var(--warning);
            font-size: 12px;
            margin-bottom: 10px;
        }

        .comment-body {
            color: var(--text-secondary);
            font-size: 14px;
            margin-bottom: 10px;
        }

        .comment-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;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
        }

        .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 {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--border-medium);
            margin-bottom: 40px;
        }

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

        .security-icon-item {
            color: var(--secondary);
            font-size: 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .security-icon-item i {
            font-size: 24px;
            color: var(--success);
        }

        .age-limit {
            font-weight: bold;
            color: var(--error);
            margin: 15px 0;
            border: 2px solid var(--error);
            display: inline-block;
            padding: 5px 15px;
            border-radius: 5px;
        }

        .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: 2000;
            box-shadow: 0 -5px 15px 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: 5px;
            flex: 1;
        }

        .nav-item i {
            font-size: 20px;
        }

        .nav-item:hover {
            color: var(--primary);
        }

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

        footer .contact-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        footer .contact-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
        }

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

        footer .footer-cols {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 800px;
            margin: 0 auto 30px;
            text-align: left;
        }

        footer .footer-cols a {
            display: block;
            color: var(--text-muted);
            text-decoration: none;
            font-size: 13px;
            margin-bottom: 8px;
        }

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

        footer .copyright {
            color: var(--text-muted);
            font-size: 12px;
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
        }

        @media (max-width: 768px) {
            h1 { font-size: 28px; }
            h2 { font-size: 24px; }
            .footer-cols { grid-template-columns: repeat(2, 1fr); }
        }