:root {
            --primary: #FFD700;
            --secondary: #C0C0C0;
            --accent: #FF4500;
            --highlight: #FFC107;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --grad-start: #1a1a1a;
            --grad-end: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #666666;
            --text-on-brand: #000000;
            --success: #28A745;
            --error: #DC3545;
            --warning: #FFC107;
            --info: #17A2B8;
            --border-light: #333333;
            --border-medium: #444444;
            --border-strong: #FFD700;
            --font-heading: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
            --font-body: 'Roboto', 'Open Sans', sans-serif;
            --font-accent: 'Oswald', sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background: var(--bg-main); 
            color: var(--text-primary); 
            font-family: var(--font-body); 
            line-height: 1.5; 
            overflow-x: hidden;
        }

        header {
            background: var(--bg-surface);
            border-bottom: 2px solid var(--border-strong);
            padding: 0 15px;
            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;
            text-decoration: none;
            color: var(--text-primary);
        }

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

        header strong {
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: normal;
        }

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

        .btn {
            padding: 6px 16px;
            border-radius: 4px;
            font-family: var(--font-accent);
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            border: none;
            text-transform: uppercase;
            font-size: 14px;
        }

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

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

        .btn:hover {
            opacity: 0.8;
            transform: translateY(-1px);
        }

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

        .banner-container {
            width: 100%;
            aspect-ratio: 2/1;
            cursor: pointer;
            overflow: hidden;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }

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

        .jackpot-section {
            background: linear-gradient(45deg, var(--grad-start), var(--highlight), var(--grad-start));
            padding: 20px;
            text-align: center;
            border-radius: 12px;
            margin-bottom: 25px;
            border: 1px solid var(--border-strong);
        }

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

        .jackpot-value {
            font-family: var(--font-heading);
            font-size: 36px;
            font-weight: 900;
            color: var(--text-on-brand);
            text-shadow: 1px 1px 0 var(--text-primary);
        }

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

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

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

        section {
            margin-bottom: 40px;
        }

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

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

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

        .game-card {
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            transition: 0.3s;
            border: 1px solid var(--border-light);
        }

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

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

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

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            text-align: center;
        }

        .payment-item {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 8px;
            border: 1px solid var(--border-medium);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-secondary);
        }

        .payment-item i {
            font-size: 24px;
            color: var(--primary);
        }

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

        .guide-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid var(--border-light);
        }

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

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

        .lottery-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
        }

        .lottery-table th, .lottery-table td {
            padding: 12px;
            text-align: center;
            border-bottom: 1px solid var(--border-light);
            font-size: 14px;
        }

        .lottery-table th {
            background: var(--border-medium);
            color: var(--primary);
        }

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

        .provider-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

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

        .provider-block:nth-child(odd) { background: var(--primary); color: var(--text-on-brand); }
        .provider-block:nth-child(even) { background: var(--accent); color: var(--text-primary); }

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

        .comment-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid var(--border-light);
        }

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

        .comment-header i { font-size: 30px; color: var(--primary); }
        .comment-header span { font-weight: bold; }
        .comment-stars { color: var(--highlight); margin-bottom: 10px; }
        .comment-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-muted); }

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

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

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

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

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

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

        .sec-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            font-size: 14px;
        }

        .sec-item i { font-size: 32px; 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;
        }

        .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 15px 100px;
            border-top: 1px solid var(--border-light);
            text-align: center;
            font-size: 14px;
        }

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

        .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 {
            color: var(--text-secondary);
            text-decoration: none;
            transition: 0.3s;
        }

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

        .copyright {
            color: var(--text-muted);
            border-top: 1px solid var(--border-light);
            padding-top: 20px;
        }

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