:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #C0C0C0;
            --accent: #E91E63;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-elevated: #2C2C2C;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-disabled: #666666;
            --text-inverse: #000000;
            --success: #4CAF50;
            --warning: #FF9800;
            --error: #F44336;
            --info: #2196F3;
            --border-default: #333333;
            --border-subtle: #222222;
            --border-highlight: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Roboto', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        
        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-highlight);
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .brand { display: flex; align-items: center; gap: 10px; }
        .brand img { width: 25px; height: 25px; }
        .brand strong { font-size: 16px; font-weight: 400; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 20px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .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 { padding-bottom: 80px; }
        .banner-box { 
            width: 100%; 
            aspect-ratio: 2/1; 
            overflow: hidden; 
            cursor: pointer; 
        }
        .banner-box img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: linear-gradient(45deg, #000, #2C2C2C);
            text-align: center;
            padding: 30px 0;
            border-bottom: 1px solid var(--border-default);
        }
        .jackpot-label { color: var(--primary); font-size: 18px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount {
            font-family: 'JetBrains Mono', monospace;
            font-size: 40px;
            font-weight: bold;
            color: #fff;
            text-shadow: 0 0 10px var(--primary);
        }

        .intro-card {
            background: var(--bg-surface);
            border-radius: 15px;
            padding: 30px;
            margin: 30px 0;
            border-left: 5px solid var(--primary);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .intro-card h1 { font-size: 24px; margin-bottom: 15px; color: var(--primary); }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }

        .section-title { 
            text-align: center; 
            margin: 40px 0 20px; 
            font-size: 24px; 
            position: relative;
            padding-bottom: 10px;
        }
        .section-title::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;
            margin-bottom: 40px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: transform 0.3s, border-color 0.3s;
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img { 
            width: 100%; 
            aspect-ratio: 1/1; 
            object-fit: cover; 
        }
        .game-info { padding: 12px; text-align: center; }
        .game-info h3 { font-size: 15px; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            margin: 30px 0;
        }
        .payment-item {
            background: var(--bg-elevated);
            padding: 15px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--secondary);
            border: 1px solid var(--border-subtle);
        }
        .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: 30px 0;
        }
        .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 { color: var(--text-secondary); font-size: 14px; text-align: justify; }

        .lottery-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            margin: 30px 0;
        }
        .lottery-table th { background: var(--bg-elevated); color: var(--primary); padding: 15px; text-align: left; }
        .lottery-table td { padding: 12px 15px; border-bottom: 1px solid var(--border-subtle); font-size: 14px; }

        .provider-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin: 30px 0;
        }
        .provider-block {
            padding: 20px;
            text-align: center;
            font-weight: bold;
            border-radius: 8px;
            color: #000;
            background: var(--primary);
        }
        .provider-block:nth-child(even) { background: var(--secondary); }

        .comment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .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: 30px; color: var(--primary); }
        .comment-header div strong { display: block; font-size: 15px; }
        .comment-stars { color: #FFD700; font-size: 13px; margin-bottom: 10px; }
        .comment-body { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-disabled); }

        .faq-section { margin: 40px 0; }
        .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;
            background: var(--bg-elevated);
            cursor: pointer;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer { padding: 15px 20px; color: var(--text-secondary); font-size: 14px; border-top: 1px solid var(--border-subtle); }

        .responsible-gaming {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--border-default);
            margin: 40px 0;
        }
        .rg-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .rg-icon-box { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 12px; color: var(--secondary); }
        .rg-icon-box i { font-size: 30px; color: var(--primary); }
        .rg-text { color: var(--text-secondary); font-size: 14px; margin-bottom: 15px; }
        .rg-link { color: var(--primary); text-decoration: underline; font-size: 14px; }

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

        footer {
            background: var(--bg-surface);
            padding: 40px 0;
            border-top: 1px solid var(--border-default);
            text-align: center;
            color: var(--text-secondary);
        }
        .footer-contact {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .footer-contact a { font-size: 14px; color: var(--primary); }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            max-width: 600px;
            margin: 0 auto 30px;
            text-align: left;
        }
        .footer-links a { font-size: 13px; color: var(--text-secondary); display: block; padding: 5px 0; }
        .footer-links a:hover { color: var(--primary); }
        .copyright { 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); }
            .jackpot-amount { font-size: 30px; }
        }