:root {
            --primary: #FFD700;
            --primary-variant: #C5A000;
            --secondary: #B8860B;
            --accent: #FF4500;
            --bg-main: #0B0E11;
            --bg-surface: #151A21;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B8C1;
            --border-default: #2D343C;
            --font-main: 'Montserrat', 'Inter', -apple-system, sans-serif;
            --font-sec: 'Roboto', Arial, sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            background: var(--bg-surface);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 500; color: var(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            text-decoration: none;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--primary); }
        .btn-reg { background: var(--primary); color: #000; }
        main { padding: 0; max-width: 600px; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2/1; object-fit: cover; cursor: pointer; display: block; }
        .jackpot-container {
            background: linear-gradient(135deg, #151A21 0%, #0B0E11 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--secondary);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: var(--text-secondary); font-size: 14px; margin-bottom: 5px; }
        .jackpot-amount { 
            font-size: 32px; 
            font-weight: 900; 
            color: var(--primary); 
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        .intro-card { margin: 15px; padding: 20px; background: var(--bg-surface); border-radius: 12px; }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 10px; line-height: 1.2; }
        .intro-card p { font-size: 15px; color: var(--text-secondary); }
        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; font-size: 20px; border-left: 4px solid var(--primary); margin-left: 15px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 10px; 
            overflow: hidden; 
            text-decoration: none; 
            border: 1px solid var(--border-default);
            transition: transform 0.2s;
        }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; background: var(--bg-surface); margin: 15px; border-radius: 12px; }
        .payment-item { text-align: center; font-size: 10px; color: var(--text-secondary); }
        .payment-item i { font-size: 24px; color: var(--primary); display: block; margin-bottom: 5px; }
        .guide-section { padding: 15px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 10px; margin-bottom: 15px; }
        .guide-item h2 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
        .lottery-section { background: var(--bg-surface); margin: 15px; border-radius: 12px; overflow: hidden; }
        .lottery-row { display: flex; justify-content: space-between; padding: 10px 15px; border-bottom: 1px solid var(--border-default); font-size: 13px; }
        .lottery-row span:nth-child(2) { color: var(--primary); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; }
        .provider-item { background: linear-gradient(45deg, #1c2127, #2d343c); padding: 15px; border-radius: 8px; text-align: center; font-weight: bold; color: var(--primary); }
        .comment-section { padding: 15px; }
        .comment-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-default); }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: var(--secondary); }
        .comment-user { font-weight: bold; font-size: 14px; }
        .stars { color: #FFC107; font-size: 12px; }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .security-section { text-align: center; padding: 30px 15px; background: #000; margin-top: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 3px; }
        footer {
            background: #000;
            padding: 40px 20px 100px;
            text-align: center;
            font-size: 14px;
            color: var(--text-secondary);
        }
        .footer-contacts { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contacts a { color: var(--primary); text-decoration: none; font-weight: bold; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; border-top: 1px solid var(--border-default); padding-top: 20px; }