:root {
            --primary: #FFD700;
            --primary-dark: #C5A000;
            --secondary: #B22222;
            --secondary-dark: #8B0000;
            --accent: #00FF41;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-elevated: #2C2C2C;
            --overlay: rgba(0, 0, 0, 0.8);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-disabled: #666666;
            --text-inverse: #000000;
            --success: #28A745;
            --warning: #FFC107;
            --error: #DC3545;
            --info: #17A2B8;
            --border-subtle: #333333;
            --border-medium: #444444;
            --border-strong: #FFD700;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background-color: var(--bg-main); 
            color: var(--text-primary); 
            font-family: 'Roboto', sans-serif; 
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 80px;
        }

        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--primary);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 60px;
        }

        header .logo-section {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--text-primary);
        }

        header .logo-section img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }

        header .logo-section strong {
            font-size: 16px;
            font-weight: normal;
            font-family: 'Montserrat', sans-serif;
        }

        header .auth-buttons {
            display: flex;
            gap: 10px;
        }

        .btn {
            padding: 8px 16px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 500;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            border: none;
            transition: 0.3s;
            text-decoration: none;
            font-size: 14px;
        }

        .btn-login {
            background-color: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }

        .btn-login:hover { background-color: var(--primary); color: var(--text-inverse); }

        .btn-register {
            background-color: var(--primary);
            color: var(--text-inverse);
        }

        .btn-register:hover { background-color: var(--primary-dark); }

        main { max-width: 1200px; margin: 0 auto; padding: 20px; }

        .banner-container {
            width: 100%;
            aspect-ratio: 2/1;
            overflow: hidden;
            border-radius: 15px;
            margin-bottom: 20px;
            cursor: pointer;
            border: 2px solid var(--border-medium);
        }

        .banner-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .banner-container:hover img { transform: scale(1.05); }

        .jackpot-box {
            background: linear-gradient(45deg, var(--secondary-dark), var(--secondary));
            padding: 20px;
            text-align: center;
            border-radius: 15px;
            margin-bottom: 20px;
            border: 2px solid var(--primary);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }

        .jackpot-title {
            font-family: 'Oswald', sans-serif;
            color: var(--primary);
            text-transform: uppercase;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .jackpot-amount {
            font-family: 'Montserrat', sans-serif;
            font-size: 32px;
            font-weight: 800;
            color: #fff;
            text-shadow: 0 0 10px var(--primary);
        }

        .intro-card {
            background-color: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 30px;
            border-left: 5px solid var(--primary);
        }

        .intro-card h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .intro-card p {
            color: var(--text-secondary);
            font-size: 16px;
        }

        h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 22px;
            color: var(--primary);
            margin: 30px 0 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        h2::before {
            content: "";
            width: 4px;
            height: 24px;
            background: var(--primary);
            display: inline-block;
        }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }

        .game-card {
            background-color: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            transition: 0.3s;
            border: 1px solid var(--border-subtle);
        }

        .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-info {
            padding: 12px;
            text-align: center;
        }

        .game-info h3 {
            font-size: 15px;
            color: var(--text-primary);
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .payment-section {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 10px;
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 30px;
        }

        .payment-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: var(--text-secondary);
            font-size: 13px;
            text-align: center;
        }

        .payment-item i {
            font-size: 24px;
            color: var(--primary);
        }

        .guide-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .guide-card {
            background-color: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-subtle);
        }

        .guide-card h3 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 18px;
        }

        .guide-card p {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.6;
        }

        .lottery-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
        }

        .lottery-table th, .lottery-table td {
            padding: 12px;
            text-align: center;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 14px;
        }

        .lottery-table th {
            background-color: var(--bg-elevated);
            color: var(--primary);
            font-family: 'Oswald', sans-serif;
        }

        .win-amount { color: var(--accent); font-weight: bold; }

        .provider-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }

        .provider-block {
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            font-weight: bold;
            font-family: 'Oswald', sans-serif;
            color: #000;
        }

        .provider-1 { background-color: var(--primary); }
        .provider-2 { background-color: var(--accent); }

        .comment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .comment-card {
            background-color: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            position: relative;
        }

        .user-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .user-meta i {
            font-size: 30px;
            color: var(--primary);
        }

        .user-meta .name { font-weight: bold; }

        .stars { color: var(--warning); font-size: 12px; margin-bottom: 8px; }

        .comment-text {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 10px;
            font-style: italic;
        }

        .comment-date {
            font-size: 12px;
            color: var(--text-disabled);
            text-align: right;
        }

        .faq-section {
            margin-bottom: 30px;
        }

        .faq-item {
            background-color: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
        }

        .faq-question {
            padding: 15px;
            color: var(--primary);
            cursor: pointer;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
        }

        .faq-answer {
            padding: 0 15px 15px;
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.6;
        }

        .security-footer {
            background-color: var(--bg-surface);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            border: 1px dashed var(--primary);
            margin-bottom: 30px;
        }

        .security-footer .badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 20px;
            color: var(--primary);
        }

        .security-footer p {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 10px;
        }

        .security-footer a {
            color: var(--primary);
            text-decoration: none;
            font-weight: bold;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-surface);
            border-top: 2px solid var(--primary);
            display: flex;
            justify-content: space-around;
            align-items: center;
            height: 65px;
            z-index: 2000;
        }

        .nav-item {
            text-decoration: none;
            color: var(--text-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
            gap: 4px;
            transition: 0.3s;
        }

        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--primary); }

        footer {
            background-color: var(--bg-surface);
            padding: 40px 20px 100px;
            text-align: center;
            border-top: 1px solid var(--border-medium);
        }

        footer .contact-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        footer .contact-links a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        footer .footer-cols {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            text-align: left;
            max-width: 800px;
            margin: 0 auto 30px;
        }

        footer .footer-cols a {
            display: block;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            margin-bottom: 8px;
        }

        footer .footer-cols a:hover { color: var(--primary); }

        footer .copyright {
            color: var(--text-disabled);
            font-size: 13px;
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
        }

        @media (max-width: 768px) {
            .footer-cols { grid-template-columns: repeat(2, 1fr); }
            .game-grid { grid-template-columns: repeat(2, 1fr); }
        }