:root {
            --primary-gold: #D4AF37;
            --primary-gold-light: #F9D71C;
            --primary-gold-dark: #AA8A2E;
            --accent-red: #E11D48;
            --accent-red-hover: #FB7185;
            --main-background: #0F172A;
            --surface-dark: #1E293B;
            --surface-card: #334155;
            --primary-text: #FFFFFF;
            --secondary-text: #94A3B8;
            --muted-text: #64748B;
            --success: #22C55E;
            --win-amount: #4ADE80;
            --default-border: #334155;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--main-background);
            color: var(--primary-text);
            font-family: 'Roboto', sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            max-width: 600px;
            margin: 0 auto;
            overflow-x: hidden;
        }
        header {
            background-color: var(--surface-dark);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--default-border);
        }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; }
        .logo-area strong { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 400; color: var(--primary-gold); }
        .nav-buttons { display: flex; gap: 8px; }
        .btn { border: none; border-radius: 6px; padding: 8px 16px; font-weight: 600; font-size: 14px; cursor: pointer; transition: 0.3s; }
        .btn-login { background-color: transparent; color: var(--primary-text); border: 1px solid var(--primary-gold); }
        .btn-register { background-color: var(--primary-gold); color: #000; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%); padding: 20px; text-align: center; border-bottom: 2px solid var(--primary-gold); }
        .jackpot-label { font-family: 'Montserrat', sans-serif; color: var(--primary-gold); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-family: 'Oswald', sans-serif; font-size: 36px; color: var(--win-amount); text-shadow: 0 0 15px rgba(74, 222, 128, 0.5); margin: 5px 0; }
        .intro-section { padding: 20px; text-align: center; }
        .intro-section h1 { font-family: 'Montserrat', sans-serif; font-size: 24px; color: var(--primary-gold); margin-bottom: 12px; line-height: 1.2; }
        .intro-section p { color: var(--secondary-text); font-size: 14px; }
        .section-title { padding: 20px 20px 10px; font-family: 'Montserrat', sans-serif; font-size: 20px; border-left: 4px solid var(--primary-gold); margin: 10px 0; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px 20px; }
        .game-card { background-color: var(--surface-card); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--default-border); transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; color: var(--primary-text); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { padding: 0 15px 20px; }
        .article-item { display: flex; gap: 15px; background: var(--surface-dark); padding: 12px; border-radius: 10px; margin-bottom: 12px; text-decoration: none; align-items: center; }
        .article-item img { width: 80px; height: 80px; border-radius: 8px; object-fit: cover; }
        .article-content h3 { font-size: 15px; color: var(--primary-gold); margin-bottom: 5px; line-height: 1.3; }
        .article-content p { font-size: 12px; color: var(--secondary-text); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .payment-section { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 20px; background: var(--surface-dark); margin: 20px 0; }
        .payment-item { text-align: center; color: var(--secondary-text); }
        .payment-item i { font-size: 24px; color: var(--primary-gold); margin-bottom: 5px; }
        .payment-item span { font-size: 10px; display: block; }
        .winners-section { background: var(--surface-dark); padding: 15px; margin-bottom: 20px; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--default-border); font-size: 13px; }
        .winner-name { color: var(--primary-gold); font-weight: 600; }
        .winner-game { color: var(--secondary-text); }
        .winner-prize { color: var(--win-amount); font-family: 'Oswald', sans-serif; }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px 20px; }
        .provider-block { background: var(--surface-card); padding: 15px; text-align: center; border-radius: 8px; font-weight: 700; color: var(--primary-gold-light); text-transform: uppercase; letter-spacing: 1px; font-size: 14px; }
        .review-grid { padding: 0 15px 20px; }
        .review-card { background: var(--surface-card); padding: 15px; border-radius: 12px; margin-bottom: 15px; border-top: 3px solid var(--primary-gold); }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 20px; color: var(--secondary-text); }
        .review-user span { font-weight: 600; font-size: 14px; }
        .stars { color: var(--primary-gold); font-size: 12px; margin-bottom: 8px; }
        .review-text { font-size: 13px; color: var(--secondary-text); font-style: italic; }
        .faq-section { padding: 20px; }
        .faq-item { margin-bottom: 20px; border-bottom: 1px solid var(--default-border); padding-bottom: 15px; }
        .faq-item h3 { font-size: 16px; color: var(--primary-gold); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--secondary-text); text-align: justify; }
        .responsible-gaming { padding: 30px 20px; text-align: center; background: #000; border-top: 1px solid var(--primary-gold); }
        .responsible-gaming i { font-size: 30px; color: var(--primary-gold); margin-bottom: 15px; }
        .responsible-gaming h2 { font-size: 18px; margin-bottom: 10px; }
        .responsible-gaming p { font-size: 13px; color: var(--muted-text); margin-bottom: 15px; }
        .age-badge { display: inline-block; padding: 5px 10px; border: 2px solid var(--accent-red); color: var(--accent-red); border-radius: 50%; font-weight: 900; margin-bottom: 10px; }
        .navigator { position: fixed; bottom: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: 600px; background: var(--surface-dark); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--default-border); z-index: 1001; }
        .nav-item { text-decoration: none; color: var(--secondary-text); text-align: center; font-size: 10px; display: flex; flex-direction: column; align-items: center; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--primary-gold); }
        footer { padding: 40px 20px 100px; background: #000; text-align: center; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: var(--muted-text); text-decoration: none; font-size: 13px; }
        .footer-copy { font-size: 12px; color: var(--muted-text); border-top: 1px solid var(--surface-card); padding-top: 20px; }