:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #8B0000;
            --accent: #FF4500;
            --main-bg: #0F0F0F;
            --surface: #1A1A1A;
            --elevated: #2D2D2D;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-highlight: #FFD700;
            --success: #4CAF50;
            --border-light: #333333;
            --border-strong: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background-color: var(--main-bg); 
            color: var(--text-primary); 
            font-family: 'Roboto', sans-serif; 
            line-height: 1.5; 
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; color: var(--primary); }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        .card { background: var(--surface); border-radius: 15px; padding: 20px; border: 1px solid var(--border-light); }
        .btn { 
            display: inline-block; padding: 12px 25px; border-radius: 8px; 
            font-weight: 600; cursor: pointer; transition: 0.3s; 
            text-align: center; border: none; font-family: 'Oswald', sans-serif;
        }
        .btn-primary { background: var(--primary); color: #000; }
        .btn-primary:hover { background: var(--primary-hover); }
        .btn-secondary { background: var(--secondary); color: #fff; }
        .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
        header { 
            background: var(--surface); padding: 10px 0; 
            position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid var(--primary);
        }
        header .container { display: flex; justify-content: space-between; align-items: center; }
        header .logo-area { display: flex; align-items: center; gap: 10px; }
        header .logo-area img { width: 25px; height: 25px; }
        header .logo-area strong { font-size: 16px; font-weight: normal; }
        header .auth-btns { display: flex; gap: 10px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .promo-section { text-align: center; padding: 40px 20px; background: linear-gradient(45deg, var(--secondary), #4a0000); margin: 20px 0; border-radius: 15px; }
        .promo-section h2 { color: var(--primary); font-size: 28px; margin-bottom: 15px; }
        .promo-section p { margin-bottom: 25px; font-size: 18px; color: #eee; }
        .game-card { background: var(--elevated); border-radius: 12px; overflow: hidden; transition: 0.3s; border: 1px solid var(--border-light); }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 16px; padding: 10px; text-align: center; color: #fff; }
        .intro-card { text-align: center; padding: 40px 20px; border: 2px solid var(--primary); margin: 30px 0; }
        .intro-card h1 { font-size: 32px; margin-bottom: 15px; }
        .payment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 15px; text-align: center; }
        .payment-item { background: var(--elevated); padding: 15px; border-radius: 10px; font-size: 14px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
        .payment-item i { font-size: 24px; color: var(--primary); }
        .guide-section { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin: 30px 0; }
        .guide-item h3 { font-size: 18px; margin-bottom: 10px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
        .review-card { background: var(--surface); padding: 20px; border-radius: 15px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--primary); }
        .stars { color: var(--primary); font-size: 14px; margin-bottom: 10px; }
        .review-date { font-size: 12px; color: var(--text-secondary); display: block; margin-top: 10px; }
        .lottery-list { background: var(--surface); border-radius: 15px; overflow: hidden; }
        .lottery-item { display: flex; justify-content: space-between; padding: 15px; border-bottom: 1px solid var(--border-light); align-items: center; }
        .lottery-item:last-child { border-bottom: none; }
        .win-amount { color: var(--primary); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 20px 0; }
        .provider-item { background: var(--elevated); padding: 20px; text-align: center; border-radius: 10px; font-weight: bold; border: 1px solid var(--border-light); }
        .faq-section { margin: 40px 0; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid var(--border-light); padding-bottom: 15px; }
        .faq-item h3 { font-size: 18px; margin-bottom: 10px; cursor: pointer; color: var(--text-primary); }
        .faq-item p { color: var(--text-secondary); font-size: 15px; }
        .navigator { 
            position: fixed; bottom: 0; left: 0; right: 0; background: var(--surface); 
            display: flex; justify-content: space-around; align-items: center; 
            padding: 10px 0; border-top: 2px solid var(--primary); z-index: 2000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: var(--text-secondary); font-size: 12px; gap: 5px; }
        .nav-item i { font-size: 20px; color: var(--primary); }
        footer { background: var(--surface); padding: 40px 0 100px 0; border-top: 1px solid var(--border-light); }
        footer .contact-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 30px; border-bottom: 1px solid var(--border-light); padding-bottom: 20px; }
        footer .contact-bar a { color: var(--text-secondary); font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
        .footer-links a { display: block; color: var(--text-secondary); font-size: 13px; margin-bottom: 8px; }
        .security-section { text-align: center; padding-top: 20px; border-top: 1px solid var(--border-light); }
        .security-section img { width: 60px; margin: 10px; opacity: 0.8; }
        .security-text { font-size: 12px; color: var(--text-secondary); margin-top: 10px; }
        @media (max-width: 768px) {
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            .grid-2 { gap: 10px; }
        }