:root {
            --primary: #FFD700;
            --secondary: #C0C0C0;
            --accent: #FF4500;
            --highlight: #FFD700;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --grad-start: #1a1a1a;
            --grad-end: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #666666;
            --text-inverse: #000000;
            --success: #00C851;
            --warning: #FFBB00;
            --error: #FF4444;
            --info: #33B5E5;
            --border-subtle: #333333;
            --border-strong: #444444;
            --border-brand: #FFD700;
            --font-heading: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
            --font-body: 'Inter', 'Segoe UI', Roboto, sans-serif;
            --font-accent: 'Oswald', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background: var(--bg-main);
            background: linear-gradient(to bottom, var(--grad-start), var(--grad-end));
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background: var(--bg-surface);
            border-bottom: 2px solid var(--border-brand);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: inherit;
        }
        header .logo-area img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }
        header .logo-area strong {
            font-size: 16px;
            font-weight: normal;
            color: var(--primary);
        }
        header .auth-buttons {
            display: flex;
            gap: 10px;
        }
        .btn-auth {
            padding: 8px 16px;
            border-radius: 5px;
            cursor: pointer;
            font-family: var(--font-accent);
            font-weight: 600;
            text-transform: uppercase;
            transition: 0.3s;
            border: none;
        }
        .btn-login {
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }
        .btn-register {
            background: var(--primary);
            color: var(--text-inverse);
        }
        .btn-auth:hover {
            opacity: 0.8;
            transform: translateY(-2px);
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        .banner-container {
            width: 100%;
            aspect-ratio: 2/1;
            margin-bottom: 20px;
            cursor: pointer;
            overflow: hidden;
            border-radius: 15px;
            border: 2px solid var(--border-strong);
        }
        .banner-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }
        .banner-container:hover img {
            transform: scale(1.05);
        }
        .jackpot-section {
            background: var(--bg-surface);
            padding: 20px;
            text-align: center;
            border-radius: 15px;
            margin-bottom: 20px;
            border: 1px solid var(--border-brand);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title {
            font-family: var(--font-accent);
            color: var(--primary);
            font-size: 20px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }
        .jackpot-amount {
            font-family: var(--font-accent);
            font-size: 36px;
            font-weight: bold;
            color: #fff;
            text-shadow: 0 0 10px var(--primary);
        }
        .intro-card {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            text-align: center;
            border-left: 5px solid var(--primary);
        }
        .intro-card h1 {
            font-family: var(--font-heading);
            font-size: 28px;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .intro-card p {
            color: var(--text-secondary);
            font-size: 16px;
        }
        .section-title {
            font-family: var(--font-heading);
            font-size: 24px;
            color: var(--primary);
            margin: 30px 0 20px;
            text-align: center;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 10px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--accent);
        }
        .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: 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;
        }
        .game-card h3 {
            padding: 12px;
            font-size: 16px;
            text-align: center;
            font-family: var(--font-body);
            color: var(--text-primary);
        }
        .payment-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            margin-bottom: 30px;
        }
        .payment-item {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid var(--border-subtle);
            color: var(--text-secondary);
            font-size: 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        .payment-item i {
            font-size: 24px;
            color: var(--primary);
        }
        .guide-grid {
            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-top: 3px solid var(--primary);
        }
        .guide-card h3 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 18px;
        }
        .guide-card p {
            color: var(--text-secondary);
            font-size: 14px;
        }
        .lottery-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
        }
        .lottery-table th, .lottery-table td {
            padding: 12px;
            text-align: center;
            border-bottom: 1px solid var(--border-subtle);
        }
        .lottery-table th {
            background: var(--border-strong);
            color: var(--primary);
            font-family: var(--font-accent);
        }
        .lottery-table td {
            color: var(--text-secondary);
            font-size: 14px;
        }
        .lottery-table .win-amount {
            color: var(--success);
            font-weight: bold;
        }
        .provider-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        .provider-box {
            padding: 20px;
            border-radius: 10px;
            font-weight: bold;
            text-align: center;
            text-transform: uppercase;
            font-family: var(--font-accent);
            font-size: 18px;
        }
        .provider-box:nth-child(odd) { background: linear-gradient(45deg, #B8860B, #FFD700); color: #000; }
        .provider-box:nth-child(even) { background: linear-gradient(45deg, #4B0082, #8A2BE2); color: #fff; }
        .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: 15px;
            border: 1px solid var(--border-subtle);
        }
        .comment-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .comment-header i {
            font-size: 30px;
            color: var(--primary);
        }
        .comment-user {
            font-weight: bold;
            color: var(--text-primary);
        }
        .comment-stars {
            color: var(--primary);
            font-size: 12px;
            margin-bottom: 10px;
        }
        .comment-text {
            color: var(--text-secondary);
            font-size: 14px;
            margin-bottom: 10px;
        }
        .comment-date {
            font-size: 12px;
            color: var(--text-muted);
            text-align: right;
        }
        .faq-section {
            margin-bottom: 30px;
        }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
        }
        .faq-question {
            padding: 15px 20px;
            background: var(--border-strong);
            color: var(--primary);
            cursor: pointer;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            padding: 15px 20px;
            color: var(--text-secondary);
            font-size: 14px;
            border-top: 1px solid var(--border-subtle);
        }
        .security-footer {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 30px;
            border: 1px dashed var(--primary);
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        .sec-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            font-size: 13px;
            color: var(--text-secondary);
        }
        .sec-item i {
            font-size: 30px;
            color: var(--primary);
        }
        .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);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
            gap: 5px;
            transition: 0.3s;
        }
        .nav-item i {
            font-size: 20px;
        }
        .nav-item:hover {
            color: var(--primary);
        }
        footer {
            background: var(--bg-surface);
            padding: 40px 20px;
            margin-bottom: 70px;
            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(--primary);
            text-decoration: none;
            font-size: 14px;
            background: var(--bg-main);
            padding: 5px 15px;
            border-radius: 20px;
            border: 1px solid var(--primary);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            max-width: 800px;
            margin: 0 auto 30px;
            text-align: center;
        }
        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 13px;
            transition: 0.3s;
        }
        .footer-links a:hover {
            color: var(--primary);
        }
        .footer-copy {
            color: var(--text-muted);
            font-size: 12px;
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
        }
        @media (max-width: 768px) {
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            .intro-card h1 { font-size: 22px; }
        }