:root {
            --bg-dark: #1a1d24;
            --accent-gold: #FFD700;
            --cta-gradient: linear-gradient(90deg, #FF6B35, #FF2E63);
            --text-white: #ffffff;
            --card-bg: #252a34;
            --text-muted: #a0a0a0;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-dark);
            color: var(--text-white);
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            padding-bottom: 70px;
        }
        header {
            background-color: #121418;
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        .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: normal; color: var(--text-white); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            border: none;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: bold;
            cursor: pointer;
            font-size: 14px;
            transition: opacity 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-white); border: 1px solid var(--text-white); }
        .btn-register { background: var(--cta-gradient); color: var(--text-white); }
        .banner { width: 100%; display: block; cursor: pointer; }
        .banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }
        main { padding: 15px; max-width: 1200px; margin: 0 auto; }
        .jackpot-container {
            background: radial-gradient(circle, #2c3e50 0%, #000000 100%);
            border: 2px solid var(--accent-gold);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 25px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }
        .jackpot-label { color: var(--accent-gold); text-transform: uppercase; font-weight: bold; font-size: 14px; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px var(--accent-gold); margin-top: 5px; }
        .intro-card {
            background: var(--card-bg);
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 25px;
            border-left: 4px solid var(--accent-gold);
        }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; color: var(--accent-gold); }
        .intro-card p { font-size: 14px; color: var(--text-muted); }
        section h2 { font-size: 18px; margin: 20px 0 15px; padding-left: 10px; border-left: 3px solid #FF2E63; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            display: block;
            transition: transform 0.2s;
        }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; display: block; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: var(--text-muted); }
        .methods-section {
            background: #121418;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 25px;
        }
        .methods-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; opacity: 0.8; }
        .methods-grid i { font-size: 24px; color: var(--text-white); }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-item { background: var(--card-bg); padding: 15px; border-radius: 12px; }
        .guide-item h2 { border: none; padding: 0; margin-top: 0; font-size: 16px; color: var(--accent-gold); margin-bottom: 10px; }
        .winners-marquee {
            background: #000;
            padding: 10px 0;
            overflow: hidden;
            white-space: nowrap;
            margin-bottom: 25px;
            border-top: 1px solid #333;
            border-bottom: 1px solid #333;
        }
        .marquee-content { display: inline-block; animation: marquee 30s linear infinite; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-tag { display: inline-block; padding: 0 20px; font-size: 12px; border-right: 1px solid #333; }
        .winner-tag span { color: var(--accent-gold); font-weight: bold; }
        .providers-wall {
            background: var(--card-bg);
            padding: 20px;
            border-radius: 15px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 25px;
        }
        .provider-name { padding: 5px 10px; border: 1px solid #3d4451; border-radius: 5px; }
        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .review-card { background: var(--card-bg); padding: 15px; border-radius: 12px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: #5d6d7e; }
        .review-user-info div { font-weight: bold; font-size: 14px; }
        .review-stars { color: var(--accent-gold); font-size: 10px; }
        .review-content { font-size: 13px; color: var(--text-muted); font-style: italic; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--card-bg); border-radius: 12px; margin-bottom: 10px; padding: 15px; }
        .faq-item h2 { border: none; padding: 0; margin: 0 0 10px 0; font-size: 15px; color: var(--accent-gold); }
        .faq-item p { font-size: 14px; color: var(--text-muted); }
        .security-section {
            background: #0a0c10;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px dashed #333;
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #27ae60; }
        .security-text { font-size: 12px; color: var(--text-muted); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #121418;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            z-index: 1001;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
        }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-muted); font-size: 11px; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 3px; }
        .nav-item:nth-child(3) { color: var(--accent-gold); }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; }
        .footer-contact { margin-bottom: 25px; }
        .footer-contact a { color: var(--text-white); margin: 0 10px; text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 12px; }
        .copyright { font-size: 12px; color: #555; border-top: 1px solid #222; padding-top: 20px; }