:root {
            --brand-primary: #FFD700;
            --brand-primary-variant: #B8860B;
            --brand-secondary: #C0C0C0;
            --brand-accent: #FF0000;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-elevated: #2D2D2D;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --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-muted: #262626;
            --font-primary: 'Montserrat', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            --font-secondary: 'Open Sans', sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            overflow-x: hidden;
        }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }

        header {
            background-color: var(--bg-surface);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            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 .logo-area img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }
        header .logo-area strong {
            font-size: 16px;
            font-weight: normal;
            color: var(--brand-primary);
        }
        header .auth-buttons {
            display: flex;
            gap: 10px;
        }
        header .btn {
            padding: 8px 16px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            border: none;
            transition: 0.3s;
        }
        header .btn-login {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--brand-primary);
        }
        header .btn-login:hover { background: var(--brand-primary); color: var(--text-inverse); }
        header .btn-register {
            background: var(--brand-primary);
            color: var(--text-inverse);
        }
        header .btn-register:hover { background: var(--brand-primary-variant); }

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

        .banner-container {
            width: 100%;
            aspect-ratio: 2 / 1;
            overflow: hidden;
            border-radius: 15px;
            margin-bottom: 20px;
            cursor: pointer;
            border: 1px solid var(--border-default);
        }
        .banner-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .jackpot-section {
            background: linear-gradient(135deg, var(--bg-elevated), #000);
            padding: 20px;
            text-align: center;
            border-radius: 15px;
            border: 2px solid var(--brand-primary);
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title {
            font-size: 18px;
            color: var(--brand-secondary);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }
        .jackpot-amount {
            font-size: 40px;
            font-weight: 800;
            color: var(--brand-primary);
            text-shadow: 0 0 10px var(--brand-primary);
            font-family: 'Courier New', monospace;
        }

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

        .section-title {
            font-size: 22px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--brand-primary);
        }
        .section-title::after {
            content: "";
            flex: 1;
            height: 1px;
            background: var(--border-default);
        }

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

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

        .win-records {
            background: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 40px;
            border: 1px solid var(--border-muted);
        }
        .win-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }
        .win-table th, .win-table td {
            padding: 12px 15px;
            border-bottom: 1px solid var(--border-muted);
            font-size: 14px;
        }
        .win-table th {
            background: var(--bg-elevated);
            color: var(--brand-primary);
        }
        .win-table td:nth-child(3) { color: var(--success); font-weight: bold; }

        .providers-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 40px;
        }
        .provider-block {
            background: var(--bg-surface);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            border: 1px solid var(--border-muted);
        }
        .provider-block:nth-child(odd) { color: var(--brand-primary); border-color: var(--brand-primary); }
        .provider-block:nth-child(even) { color: var(--brand-secondary); border-color: var(--brand-secondary); }

        .reviews-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: 15px;
            border: 1px solid var(--border-muted);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }
        .review-header i { font-size: 30px; color: var(--brand-primary); }
        .review-user { font-weight: 600; font-size: 16px; }
        .review-stars { color: #FFB300; font-size: 14px; margin-bottom: 10px; }
        .review-text { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
        .review-date { font-size: 12px; color: var(--text-disabled); }

        .faq-section {
            display: grid;
            gap: 15px;
            margin-bottom: 40px;
        }
        .faq-item {
            background: var(--bg-surface);
            border-radius: 10px;
            border: 1px solid var(--border-muted);
        }
        .faq-question {
            padding: 15px;
            cursor: pointer;
            font-weight: 600;
            color: var(--brand-primary);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            padding: 0 15px 15px 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;
            margin-bottom: 40px;
            border: 1px solid var(--border-muted);
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        .security-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: var(--brand-secondary);
        }
        .security-badge i { color: var(--success); font-size: 20px; }
        .security-text { color: var(--text-secondary); font-size: 14px; max-width: 700px; margin: 0 auto 15px; }
        .security-link { color: var(--brand-primary); font-size: 14px; text-decoration: underline; }

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

        footer {
            background: var(--bg-surface);
            padding: 40px 15px 100px;
            border-top: 1px solid var(--border-muted);
            text-align: center;
        }
        .footer-contact {
            margin-bottom: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }
        .contact-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .contact-links a { color: var(--brand-primary); font-size: 14px; }
        .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: 13px;
            color: var(--text-secondary);
            padding: 5px 0;
        }
        .footer-links a:hover { color: var(--brand-primary); }
        .copyright {
            color: var(--text-disabled);
            font-size: 12px;
            margin-top: 20px;
        }

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