:root {
            --bg-primary: #0D0D0D;
            --bg-secondary: #1A1A1A;
            --bg-surface: #262626;
            --gold-primary: #D4AF37;
            --gold-bright: #FFD700;
            --accent-red: #E63946;
            --gradient-luxury: linear-gradient(180deg, #FFD700 0%, #D4AF37 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --border-standard: #333333;
            --font-main: 'Montserrat', sans-serif;
            --font-display: 'Bebas Neue', cursive;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        header {
            background: var(--bg-secondary);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-standard);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--gold-primary); letter-spacing: 1px; }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }
        .btn-login { background: transparent; border: 1px solid var(--gold-primary); color: var(--gold-primary); }
        .btn-register { background: var(--gradient-luxury); border: none; color: #000; }
        main { max-width: 1000px; margin: 0 auto; padding: 0 10px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; margin: 15px 0; border-radius: 12px; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: var(--bg-surface);
            border: 2px solid var(--gold-primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin: 20px 0;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { font-family: var(--font-display); font-size: 24px; color: var(--gold-bright); margin-bottom: 5px; }
        .jackpot-amount { font-family: var(--font-display); font-size: 42px; color: var(--text-primary); letter-spacing: 2px; }
        .intro-card { background: var(--bg-secondary); padding: 25px; border-radius: 15px; margin: 20px 0; border-left: 4px solid var(--gold-primary); }
        h1 { font-size: 24px; color: var(--gold-bright); margin-bottom: 12px; }
        .intro-card p { color: var(--text-secondary); font-size: 14px; }
        h2 { font-size: 20px; color: var(--gold-primary); margin: 25px 0 15px; font-family: var(--font-display); text-transform: uppercase; border-bottom: 1px solid var(--border-standard); display: inline-block; padding-bottom: 5px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: var(--bg-secondary); border-radius: 12px; overflow: hidden; transition: transform 0.2s; position: relative; }
        .game-card:hover { transform: translateY(-5px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 10px; font-size: 14px; text-align: center; color: var(--text-primary); font-weight: 500; }
        .payments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 20px 0; }
        .payment-item { background: var(--bg-surface); padding: 15px 5px; border-radius: 10px; text-align: center; border: 1px solid var(--border-standard); }
        .payment-item i { font-size: 24px; color: var(--gold-primary); margin-bottom: 8px; display: block; }
        .payment-item span { font-size: 11px; color: var(--text-secondary); font-weight: 500; }
        .guide-section { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 20px 0; }
        .guide-card { background: var(--bg-secondary); padding: 20px; border-radius: 12px; }
        .guide-card h3 { color: var(--gold-bright); margin-bottom: 10px; font-size: 18px; }
        .guide-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .winners-box { background: var(--bg-surface); border-radius: 15px; padding: 15px; margin: 20px 0; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-standard); font-size: 13px; }
        .winner-row:last-child { border-bottom: none; }
        .winner-user { color: var(--gold-primary); font-weight: 600; }
        .winner-amount { color: #00C853; font-weight: 700; }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
        .provider-tag { background: linear-gradient(90deg, var(--bg-surface), var(--bg-secondary)); padding: 15px; text-align: center; border-radius: 8px; border-left: 3px solid var(--gold-primary); font-weight: 600; font-size: 14px; }
        .review-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 20px 0; }
        .review-card { background: var(--bg-secondary); padding: 20px; border-radius: 15px; border: 1px solid var(--border-standard); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; background: var(--bg-surface); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold-primary); font-size: 20px; }
        .review-user { font-weight: 600; font-size: 14px; }
        .review-stars { color: #FFD700; font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-disabled); }
        .faq-container { margin: 20px 0; }
        details { background: var(--bg-secondary); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        summary { padding: 15px; cursor: pointer; font-weight: 600; color: var(--gold-primary); outline: none; list-style: none; display: flex; justify-content: space-between; }
        summary::after { content: '+'; }
        details[open] summary::after { content: '-'; }
        details p { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); }
        .security-section { background: #111; padding: 25px; border-radius: 15px; text-align: center; border: 1px dashed var(--gold-primary); margin: 30px 0; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--gold-primary); }
        .security-section h3 { font-size: 18px; margin-bottom: 10px; color: var(--gold-bright); }
        .security-section p { font-size: 13px; color: var(--text-secondary); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #000;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-standard);
            z-index: 2000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--gold-primary); }
        footer { background: #050505; padding: 40px 15px 100px; text-align: center; border-top: 1px solid var(--border-standard); }
        .footer-social { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-social a { background: var(--bg-surface); padding: 10px 20px; border-radius: 5px; font-size: 14px; color: var(--gold-primary); border: 1px solid var(--border-standard); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: left; }
        .footer-links a { color: var(--text-secondary); font-size: 13px; display: block; margin-bottom: 8px; }
        .footer-copy { font-size: 12px; color: var(--text-disabled); border-top: 1px solid var(--border-standard); padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guide-section, .review-grid { grid-template-columns: 1fr 1fr; }
        }