:root {
            --primary: #D4AF37;
            --primary-hover: #F7E08A;
            --primary-active: #996515;
            --secondary: #1A1A1A;
            --accent: #FFD700;
            --bg-main: #0B0C10;
            --bg-surface: #1F2833;
            --bg-elevated: #2C3531;
            --text-primary: #FFFFFF;
            --text-secondary: #C5C6C7;
            --text-muted: #8E8E8E;
            --border-default: #45A29E;
            --border-subtle: #1F2833;
            --radius: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', -apple-system, sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        h1 { font-size: 30px; color: var(--primary); margin-bottom: 15px; text-align: center; }
        h2 { font-size: 24px; margin: 25px 0 15px; padding-left: 10px; border-left: 4px solid var(--primary); }
        h3 { font-size: 16px; margin-top: 10px; }
        a { text-decoration: none; color: inherit; }
        header {
            background-color: rgba(11, 12, 16, 0.95);
            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-subtle);
            backdrop-filter: blur(10px);
        }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-reg { background: var(--primary); color: #000; }
        .btn-reg:hover { background: var(--primary-hover); }
        main { padding: 0 15px; max-width: 800px; margin: 0 auto; }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            border-radius: var(--radius);
            overflow: hidden;
            margin-top: 15px;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(135deg, var(--bg-surface), var(--secondary));
            padding: 20px;
            border-radius: var(--radius);
            margin: 20px 0;
            text-align: center;
            border: 1px solid var(--primary);
        }
        .jackpot-label { color: var(--primary); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 36px; font-weight: 900; color: #fff; text-shadow: 0 0 20px rgba(212, 175, 55, 0.6); }
        .platform-intro { text-align: center; padding: 20px 0; color: var(--text-secondary); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
        .game-card {
            background: var(--bg-surface);
            border-radius: var(--radius);
            padding: 10px;
            transition: transform 0.2s;
            border: 1px solid var(--border-subtle);
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            border-radius: 8px;
            object-fit: cover;
        }
        .game-card h3 { text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { display: flex; flex-direction: column; gap: 15px; }
        .article-card {
            display: flex;
            background: var(--bg-surface);
            border-radius: var(--radius);
            overflow: hidden;
            gap: 12px;
        }
        .article-card img { width: 100px; height: 100px; object-fit: cover; }
        .article-info { padding: 10px; flex: 1; }
        .article-info h3 { margin: 0 0 5px; color: var(--primary); font-size: 14px; }
        .article-info p { font-size: 12px; color: var(--text-secondary); height: 3.6em; overflow: hidden; }
        .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; text-align: center; }
        .payment-item { background: var(--bg-elevated); padding: 15px 5px; border-radius: 8px; font-size: 11px; }
        .payment-item i { font-size: 24px; color: var(--primary); margin-bottom: 8px; display: block; }
        .winners-box { background: var(--bg-surface); border-radius: var(--radius); padding: 15px; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--bg-elevated); font-size: 13px; }
        .winner-name { color: var(--primary); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-item { background: var(--secondary); padding: 15px; text-align: center; border-radius: var(--radius); font-weight: bold; border: 1px solid var(--border-subtle); color: var(--text-secondary); }
        .review-card { background: var(--bg-elevated); padding: 20px; border-radius: var(--radius); margin-bottom: 15px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .stars { color: var(--accent); font-size: 14px; }
        .faq-item { background: var(--bg-surface); border-radius: var(--radius); margin-bottom: 10px; padding: 15px; }
        .faq-item h3 { color: var(--primary); margin-top: 0; margin-bottom: 10px; }
        .security-section { text-align: center; padding: 30px 15px; border-top: 1px solid var(--border-subtle); color: var(--text-secondary); font-size: 14px; }
        .security-section i { font-size: 40px; color: var(--primary); margin-bottom: 15px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--primary);
            z-index: 1001;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 2px; }
        footer { padding: 30px 15px 100px; border-top: 1px solid var(--border-subtle); text-align: center; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: var(--text-muted); }
        .copyright { font-size: 12px; color: var(--text-muted); }