:root {
            --primary: #FFD700;
            --primary-hover: #FFC800;
            --secondary: #C0C0C0;
            --accent: #FF4500;
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-surface-light: #2B3139;
            --overlay: rgba(0, 0, 0, 0.7);
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-disabled: #5E6673;
            --text-inverse: #0B0E11;
            --success: #0ECB81;
            --warning: #F0B90B;
            --error: #F6465D;
            --info: #3498DB;
            --border-default: #3B424A;
            --border-strong: #474D57;
            --border-highlight: #FFD700;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Roboto', sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        body { background-color: var(--bg-main); color: var(--text-primary); font-family: var(--font-body); line-height: 1.5; overflow-x: hidden; }
        h1, h2, h3 { font-family: var(--font-heading); line-height: 1.2; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }

        header { 
            background-color: var(--bg-surface); 
            padding: 0 15px; 
            height: 60px; 
            display: flex; 
            align-items: center; 
            justify-content: space-between; 
            position: sticky; 
            top: 0; 
            z-index: 1000; 
            border-bottom: 1px solid var(--border-default); 
        }
        header .brand { display: flex; align-items: center; gap: 10px; }
        header .brand img { width: 25px; height: 25px; }
        header .brand strong { font-size: 16px; font-weight: normal; }
        header .auth-buttons { display: flex; gap: 10px; }
        .btn { 
            padding: 8px 16px; 
            border-radius: 4px; 
            font-weight: 600; 
            cursor: pointer; 
            border: none; 
            font-size: 14px; 
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--primary); color: var(--text-inverse); }
        .btn-register:hover { background: var(--primary-hover); }

        main { padding-bottom: 80px; max-width: 1200px; margin: 0 auto; }
        .hero-banner { 
            width: 100%; 
            aspect-ratio: 2 / 1; 
            cursor: pointer; 
            overflow: hidden; 
            border-bottom: 3px solid var(--primary); 
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            background: linear-gradient(135deg, #1e2329 0%, #0b0e11 100%);
            padding: 20px;
            text-align: center;
            border-radius: 15px;
            margin: 20px 15px;
            border: 2px solid var(--primary);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { color: var(--primary); font-weight: bold; font-size: 18px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { 
            font-family: 'JetBrains Mono', monospace; 
            font-size: 32px; 
            font-weight: bold; 
            color: #fff; 
            text-shadow: 0 0 10px var(--primary);
        }

        .intro-card {
            background: var(--bg-surface);
            margin: 20px 15px;
            padding: 25px;
            border-radius: 15px;
            border-left: 5px solid var(--primary);
        }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 15px; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }

        .section-title { 
            text-align: center; 
            margin: 40px 0 20px; 
            font-size: 24px; 
            color: var(--primary); 
            text-transform: uppercase; 
        }

        .game-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            padding: 0 15px; 
        }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            border: 1px solid var(--border-default); 
            transition: transform 0.2s; 
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
        .game-card h3 { 
            padding: 12px; 
            font-size: 14px; 
            text-align: center; 
            color: var(--text-primary); 
            white-space: nowrap; 
            overflow: hidden; 
            text-overflow: ellipsis; 
        }

        .payment-methods { 
            display: flex; 
            flex-wrap: wrap; 
            justify-content: center; 
            gap: 15px; 
            padding: 20px 15px; 
            background: var(--bg-surface-light); 
            margin: 30px 0; 
        }
        .payment-item { 
            display: flex; 
            align-items: center; 
            gap: 8px; 
            background: var(--bg-surface); 
            padding: 8px 15px; 
            border-radius: 20px; 
            font-size: 13px; 
            border: 1px solid var(--border-default); 
        }
        .payment-item i { color: var(--primary); }

        .guides-container { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
            gap: 20px; 
            padding: 0 15px; 
        }
        .guide-card { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: 12px; 
            border: 1px solid var(--border-default); 
        }
        .guide-card h3 { color: var(--primary); margin-bottom: 10px; font-size: 18px; }
        .guide-card p { color: var(--text-secondary); font-size: 14px; }

        .winner-table { 
            margin: 20px 15px; 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            border: 1px solid var(--border-default); 
        }
        .winner-row { 
            display: grid; 
            grid-template-columns: 1fr 1.5fr 1fr 1fr; 
            padding: 12px 15px; 
            border-bottom: 1px solid var(--border-default); 
            font-size: 13px; 
            align-items: center; 
        }
        .winner-row:last-child { border-bottom: none; }
        .winner-row .user { font-weight: bold; }
        .winner-row .amount { color: var(--success); font-weight: bold; }
        .winner-row .time { color: var(--text-disabled); text-align: right; }

        .provider-wall { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 10px; 
            padding: 0 15px; 
            margin-bottom: 40px; 
        }
        .provider-box { 
            padding: 15px; 
            text-align: center; 
            border-radius: 8px; 
            font-weight: bold; 
            background: var(--bg-surface-light); 
            border: 1px solid var(--border-default); 
            color: var(--primary); 
        }

        .comment-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
            gap: 20px; 
            padding: 0 15px; 
        }
        .comment-card { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: 15px; 
            border: 1px solid var(--border-default); 
        }
        .comment-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: var(--secondary); }
        .comment-header .name { font-weight: bold; }
        .comment-stars { color: var(--primary); font-size: 12px; margin-bottom: 10px; }
        .comment-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-disabled); }

        .faq-section { padding: 0 15px; margin: 40px 0; }
        .faq-item { 
            background: var(--bg-surface); 
            margin-bottom: 10px; 
            border-radius: 8px; 
            overflow: hidden; 
            border: 1px solid var(--border-default); 
        }
        .faq-question { 
            padding: 15px; 
            font-weight: bold; 
            cursor: pointer; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            color: var(--primary); 
        }
        .faq-answer { padding: 15px; color: var(--text-secondary); font-size: 14px; line-height: 1.6; border-top: 1px solid var(--border-default); }

        .security-footer { 
            background: var(--bg-surface); 
            margin: 40px 15px 20px; 
            padding: 25px; 
            border-radius: 15px; 
            text-align: center; 
            border: 1px solid var(--border-default); 
        }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
        .security-badge { display: flex; flex-direction: column; align-items: center; font-size: 12px; color: var(--text-secondary); gap: 5px; }
        .security-badge i { font-size: 24px; color: var(--success); }
        .security-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 15px; }
        .security-text a { color: var(--primary); text-decoration: underline; }

        .navigator { 
            position: fixed; 
            bottom: 0; 
            left: 0; 
            right: 0; 
            background: var(--bg-surface); 
            height: 65px; 
            display: flex; 
            justify-content: space-around; 
            align-items: center; 
            border-top: 1px solid var(--border-default); 
            z-index: 1001; 
            padding: 0 10px; 
        }
        .nav-item { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            gap: 4px; 
            color: var(--text-secondary); 
            font-size: 11px; 
            text-align: center;
        }
        .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-default); 
            text-align: center; 
        }
        .footer-contact { margin-bottom: 30px; }
        .footer-contact-links { display: flex; justify-content: center; gap: 20px; margin-top: 10px; flex-wrap: wrap; }
        .footer-contact-links a { color: var(--text-secondary); font-size: 14px; }
        .footer-links { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 10px; 
            text-align: left; 
            max-width: 800px; 
            margin: 0 auto 30px; 
        }
        .footer-links a { color: var(--text-secondary); font-size: 13px; display: block; margin-bottom: 5px; }
        .footer-copy { color: var(--text-disabled); font-size: 12px; border-top: 1px solid var(--border-default); padding-top: 20px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .footer-links { grid-template-columns: repeat(5, 1fr); }
            .navigator { display: none; }
            header { padding: 0 50px; }
            main { padding: 0 50px; }
        }