:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #B8860B;
            --accent: #FF4500;
            --bg-main: #0B0D17;
            --bg-surface: #161B2D;
            --bg-surface-light: #1F253D;
            --overlay: rgba(0, 0, 0, 0.7);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-muted: #6B7280;
            --text-inverse: #0B0D17;
            --text-highlight: #FFD700;
            --success: #28A745;
            --error: #DC3545;
            --warning: #FFC107;
            --info: #17A2B8;
            --border-default: #2D344C;
            --border-strong: #FFD700;
            --border-subtle: #1F253D;
            --font-heading: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
            --font-body: 'Roboto', 'Open Sans', Arial, 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;
        }

        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: 1px solid var(--border-default);
            height: 60px;
        }

        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;
        }

        header .logo-area strong {
            font-size: 16px;
            font-weight: normal;
        }

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

        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-family: var(--font-heading);
            transition: 0.3s;
            border: none;
            text-decoration: none;
            font-size: 14px;
        }

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

        .btn-login:hover {
            background: var(--border-subtle);
        }

        .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;
            padding-bottom: 100px;
        }

        .banner-container {
            width: 100%;
            aspect-ratio: 2 / 1;
            overflow: hidden;
            border-radius: 16px;
            cursor: pointer;
            margin-bottom: 20px;
        }

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

        .jackpot-section {
            background: linear-gradient(45deg, var(--bg-surface), var(--bg-surface-light));
            border: 2px solid var(--primary);
            border-radius: 16px;
            padding: 20px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }

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

        .jackpot-amount {
            font-family: 'Courier New', monospace;
            font-size: 32px;
            font-weight: bold;
            color: #fff;
            text-shadow: 0 0 10px var(--primary);
        }

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

        .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;
        }

        h2 {
            font-family: var(--font-heading);
            font-size: 24px;
            color: var(--text-primary);
            margin: 30px 0 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        h2::before {
            content: "";
            width: 4px;
            height: 24px;
            background: var(--primary);
            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;
            text-decoration: none;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid var(--border-default);
        }

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

        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }

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

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 16px;
            margin-bottom: 40px;
        }

        .payment-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: var(--text-secondary);
            font-size: 13px;
        }

        .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 {
            color: var(--text-secondary);
            font-size: 14px;
        }

        .win-list {
            background: var(--bg-surface);
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 40px;
        }

        .win-item {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            padding: 12px 20px;
            border-bottom: 1px solid var(--border-default);
            font-size: 14px;
        }

        .win-item:nth-child(odd) {
            background: var(--bg-surface-light);
        }

        .win-item span:nth-child(3) {
            color: var(--primary);
            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-weight: bold;
            font-family: var(--font-heading);
            background: var(--bg-surface-light);
            border: 1px solid var(--border-default);
        }

        .provider-block:nth-child(odd) {
            border-left: 4px solid var(--primary);
        }

        .provider-block:nth-child(even) {
            border-right: 4px solid var(--accent);
        }

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

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

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

        .review-stars {
            color: var(--primary);
            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-muted);
        }

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

        .faq-item {
            background: var(--bg-surface);
            border-radius: 12px;
            padding: 20px;
            border: 1px solid var(--border-default);
        }

        .faq-item h3 {
            color: var(--primary);
            font-size: 17px;
            margin-bottom: 10px;
        }

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

        .security-footer {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 16px;
            text-align: center;
            margin-bottom: 40px;
            border: 1px solid var(--border-default);
        }

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

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

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

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--primary);
            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;
            transition: 0.3s;
        }

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

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

        footer {
            background: var(--bg-surface);
            padding: 40px 20px 120px;
            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;
        }

        .footer-contact a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            transition: 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: 0.3s;
        }

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

        .footer-copy {
            color: var(--text-muted);
            font-size: 13px;
            border-top: 1px solid var(--border-default);
            padding-top: 20px;
        }

        @media (max-width: 768px) {
            .payment-methods {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
            .win-item {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
                text-align: center;
            }
            .win-item span:nth-child(1), .win-item span:nth-child(2) {
                grid-column: span 2;
            }
        }