:root {
            --primary: #FFD700;
            --primary-dark: #C5A000;
            --secondary: #B22222;
            --accent: #00FF41;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --bg-contrast: #262626;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #737373;
            --text-inverse: #000000;
            --success: #00C853;
            --warning: #FFB300;
            --error: #FF5252;
            --info: #2196F3;
            --border-subtle: #333333;
            --border-strong: #4D4D4D;
            --border-highlight: #FFD700;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Roboto', sans-serif;
            --font-accent: 'Oswald', sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background-color: var(--bg-main); 
            color: var(--text-primary); 
            font-family: var(--font-body); 
            line-height: 1.5; 
            overflow-x: hidden;
        }

        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;
        }

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

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

        header .logo-section strong {
            font-size: 16px;
            font-weight: normal;
            font-family: var(--font-heading);
            color: var(--primary);
        }

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

        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            cursor: pointer;
            font-family: var(--font-accent);
            font-weight: 600;
            text-transform: uppercase;
            transition: 0.3s;
            border: none;
            font-size: 14px;
        }

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

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

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

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

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

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

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

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

        .jackpot-title {
            font-family: var(--font-accent);
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .jackpot-amount {
            font-family: var(--font-heading);
            font-size: 36px;
            font-weight: 900;
            color: var(--accent);
            text-shadow: 0 0 10px var(--accent);
        }

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

        .intro-card h1 {
            font-family: var(--font-heading);
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.3;
        }

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

        h2 {
            font-family: var(--font-heading);
            font-size: 24px;
            color: var(--primary);
            margin: 30px 0 20px;
            text-align: center;
            text-transform: uppercase;
            position: relative;
        }

        h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--primary);
            margin: 10px auto;
        }

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

        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            transition: transform 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-card h3 {
            padding: 12px;
            font-size: 14px;
            text-align: center;
            font-family: var(--font-heading);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }

        .payment-item {
            background: var(--bg-contrast);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            font-size: 12px;
            color: var(--text-secondary);
            border: 1px solid var(--border-subtle);
        }

        .payment-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: 30px;
        }

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

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

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

        .lottery-container {
            background: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid var(--border-strong);
            margin-bottom: 30px;
        }

        .lottery-header {
            background: var(--primary);
            color: var(--text-inverse);
            padding: 10px;
            text-align: center;
            font-weight: bold;
            font-family: var(--font-accent);
        }

        .lottery-list {
            width: 100%;
            border-collapse: collapse;
        }

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

        .lottery-list tr:last-child td { border-bottom: none; }
        .win-amount { color: var(--accent); font-weight: bold; }

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

        .provider-box {
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            font-family: var(--font-accent);
            font-size: 16px;
            background: var(--bg-contrast);
            border: 1px solid var(--primary);
            color: var(--primary);
        }

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

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

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

        .comment-user i { font-size: 24px; color: var(--primary); }
        .comment-user span { font-weight: bold; }
        .comment-stars { color: var(--warning); margin-bottom: 10px; font-size: 12px; }
        .comment-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-muted); }

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

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

        .faq-item h3 {
            font-size: 16px;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .faq-item p {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .security-footer {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--border-strong);
        }

        .security-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .badge-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .badge-item i { color: var(--accent); }

        .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;
            padding: 10px 0;
            z-index: 2000;
        }

        .nav-item {
            text-decoration: none;
            color: var(--text-secondary);
            text-align: center;
            font-size: 12px;
            flex: 1;
            transition: 0.3s;
        }

        .nav-item i {
            display: block;
            font-size: 20px;
            margin-bottom: 5px;
        }

        .nav-item:hover { color: var(--primary); }

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

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

        .footer-contact a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            transition: 0.3s;
        }

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

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

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 13px;
            transition: 0.3s;
        }

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

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

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