:root {
            --primary: #FFD700;
            --primary-dark: #B8860B;
            --secondary: #E60012;
            --accent: #00FF41;
            --main-bg: #0F0F0F;
            --surface: #1A1A1A;
            --overlay: rgba(0, 0, 0, 0.8);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-disabled: #666666;
            --text-highlight: #FFD700;
            --success: #28A745;
            --error: #DC3545;
            --warning: #FFC107;
            --info: #17A2B8;
            --border: #333333;
            --border-focus: #FFD700;
            --border-muted: #222222;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            -webkit-tap-highlight-color: transparent;
        }
        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;
            text-align: center;
            margin-bottom: 1.5rem;
        }
        h1 { font-size: 32px; color: var(--primary); line-height: 1.2; }
        h2 { font-size: 24px; color: var(--primary); position: relative; padding-bottom: 10px; }
        h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: var(--secondary); }
        h3 { font-size: 16px; color: var(--text-primary); margin: 10px 0; }

        header {
            background: var(--surface);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
        }
        header .logo-section {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        header .logo-section img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }
        header .logo-section strong {
            font-size: 16px;
            font-weight: normal;
            color: var(--text-primary);
        }
        header .auth-buttons {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 8px 16px;
            border-radius: 5px;
            border: none;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            transition: 0.3s;
            text-decoration: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-login:hover { background: var(--primary); color: var(--main-bg); }
        .btn-register { background: var(--secondary); color: white; }
        .btn-register:hover { opacity: 0.9; transform: scale(1.05); }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 15px 100px 15px;
        }
        .banner-container {
            width: 100%;
            aspect-ratio: 2/1;
            margin-bottom: 20px;
            cursor: pointer;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .banner-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .jackpot-section {
            background: linear-gradient(135deg, #1a1a1a, #000);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-title {
            color: var(--text-secondary);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }
        .jackpot-amount {
            font-family: 'Poppins', sans-serif;
            font-size: 36px;
            font-weight: bold;
            color: var(--primary);
            text-shadow: 0 0 10px var(--primary-dark);
        }

        .intro-card {
            background: var(--surface);
            padding: 30px 20px;
            border-radius: 20px;
            text-align: center;
            margin-bottom: 40px;
            border-left: 5px solid var(--primary);
        }
        .intro-card p {
            color: var(--text-secondary);
            font-size: 16px;
            max-width: 800px;
            margin: 0 auto;
        }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }
        .game-card {
            background: var(--surface);
            border-radius: 12px;
            text-decoration: none;
            transition: 0.3s;
            border: 1px solid var(--border);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .game-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
        }
        .game-card h3 {
            padding: 10px;
            font-size: 14px;
            text-align: center;
            color: var(--text-primary);
            margin: 0;
        }

        .payment-licenses {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 40px;
        }
        .pl-item {
            background: var(--surface);
            padding: 15px 5px;
            border-radius: 10px;
            text-align: center;
            font-size: 12px;
            color: var(--text-secondary);
            border: 1px solid var(--border);
        }
        .pl-item i {
            display: block;
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .guide-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .guide-card {
            background: var(--surface);
            padding: 20px;
            border-radius: 15px;
            border-bottom: 3px solid var(--primary);
        }
        .guide-card h3 {
            text-align: left;
            color: var(--primary);
            font-size: 18px;
        }
        .guide-card p {
            font-size: 14px;
            color: var(--text-secondary);
            text-align: justify;
        }

        .lottery-section {
            background: var(--surface);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 40px;
        }
        .lottery-list {
            list-style: none;
        }
        .lottery-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 10px;
            border-bottom: 1px solid var(--border);
            font-size: 13px;
        }
        .lottery-item:last-child { border: none; }
        .lottery-user { color: var(--text-primary); font-weight: 500; }
        .lottery-game { color: var(--text-secondary); }
        .lottery-win { color: var(--accent); font-weight: bold; }
        .lottery-time { color: var(--text-disabled); font-size: 11px; }

        .providers-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 40px;
        }
        .provider-block {
            background: linear-gradient(45deg, #222, #333);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            font-weight: bold;
            color: var(--primary);
            border: 1px solid var(--border);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .review-card {
            background: var(--surface);
            padding: 20px;
            border-radius: 15px;
            position: relative;
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }
        .review-header i {
            font-size: 30px;
            color: var(--primary);
        }
        .review-user { font-weight: bold; font-size: 15px; }
        .review-stars { color: var(--primary); font-size: 12px; margin-bottom: 10px; }
        .review-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-disabled); }

        .faq-section {
            margin-bottom: 40px;
        }
        .faq-item {
            background: var(--surface);
            margin-bottom: 10px;
            border-radius: 10px;
            overflow: hidden;
        }
        .faq-question {
            padding: 15px 20px;
            cursor: pointer;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            color: var(--primary);
        }
        .faq-answer {
            padding: 0 20px 15px 20px;
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.6;
        }

        .security-footer {
            background: var(--surface);
            padding: 30px 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--border);
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        .sec-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-secondary);
        }
        .sec-item i { color: var(--accent); }
        .security-footer p {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 15px;
        }
        .security-footer a {
            color: var(--primary);
            text-decoration: none;
            font-size: 13px;
            margin: 0 10px;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--primary);
            z-index: 2000;
            box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
            gap: 5px;
            flex: 1;
        }
        .nav-item i { font-size: 20px; color: var(--text-primary); }

        footer {
            background: #050505;
            padding: 40px 20px 120px 20px;
            color: var(--text-secondary);
            font-size: 13px;
        }
        footer .contact-row {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 30px;
            text-align: center;
        }
        footer .contact-row a {
            color: var(--text-primary);
            text-decoration: none;
            padding: 5px 15px;
            background: var(--surface);
            border-radius: 20px;
            border: 1px solid var(--border);
        }
        footer .links-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 30px;
            text-align: center;
        }
        footer .links-grid a {
            color: var(--text-secondary);
            text-decoration: none;
            display: block;
            padding: 5px 0;
        }
        footer .links-grid a:hover { color: var(--primary); }
        footer .copy-row {
            text-align: center;
            border-top: 1px solid var(--border);
            padding-top: 20px;
            color: var(--text-disabled);
        }

        @media (max-width: 768px) {
            .payment-licenses { grid-template-columns: repeat(2, 1fr); }
            .links-grid { grid-template-columns: repeat(3, 1fr); }
        }