:root {
            --primary: #FFD700;
            --primary-variant: #B8860B;
            --secondary: #E60012;
            --accent: #00FFAB;
            --bg-main: #0B0E11;
            --bg-surface: #1A1D23;
            --bg-surface-variant: #2C313C;
            --bg-overlay: rgba(0, 0, 0, 0.7);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-disabled: #6C757D;
            --text-inverse: #0B0E11;
            --success: #00C853;
            --warning: #FFC107;
            --error: #FF5252;
            --info: #2196F3;
            --border-subtle: #373D49;
            --border-strong: #4A5262;
            --border-highlight: #FFD700;
            --font-primary: 'Inter', 'Roboto', sans-serif;
            --font-display: 'Montserrat', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background-color: var(--bg-surface);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-subtle);
        }
        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: cover;
        }
        header .logo-section strong {
            font-size: 16px;
            font-weight: normal;
            color: var(--primary);
        }
        header .auth-buttons {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            font-family: var(--font-primary);
            transition: 0.3s;
            text-decoration: none;
            font-size: 14px;
        }
        .btn-login {
            background-color: var(--bg-surface-variant);
            color: var(--text-primary);
            border: 1px solid var(--border-strong);
        }
        .btn-register {
            background-color: var(--primary);
            color: var(--text-inverse);
        }
        .btn:hover { opacity: 0.9; transform: translateY(-2px); }
        main { max-width: 1200px; margin: 0 auto; padding: 20px; }
        .banner-container {
            width: 100%;
            aspect-ratio: 2 / 1;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
            border: 2px solid var(--border-strong);
        }
        .banner-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-box {
            background: linear-gradient(135deg, var(--bg-surface-variant), var(--bg-surface));
            border: 2px solid var(--primary);
            border-radius: 16px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title {
            color: var(--primary);
            font-family: var(--font-display);
            font-size: 18px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        .jackpot-amount {
            font-family: var(--font-mono);
            font-size: 32px;
            font-weight: bold;
            color: var(--accent);
            text-shadow: 0 0 10px var(--accent);
        }
        .intro-card {
            background-color: var(--bg-surface);
            padding: 30px;
            border-radius: 16px;
            border-left: 5px solid var(--primary);
            margin-bottom: 30px;
        }
        .intro-card h1 {
            font-family: var(--font-display);
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.3;
        }
        .intro-card p {
            color: var(--text-secondary);
            font-size: 16px;
        }
        .section-title {
            font-family: var(--font-display);
            font-size: 22px;
            color: var(--text-primary);
            margin: 30px 0 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title::before {
            content: '';
            width: 4px;
            height: 24px;
            background: var(--primary);
            display: inline-block;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        .game-card {
            background-color: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-subtle);
            transition: 0.3s;
        }
        .game-card:hover {
            border-color: var(--primary);
            transform: scale(1.02);
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            padding: 12px;
            font-size: 15px;
            color: var(--text-primary);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 10px;
            margin-bottom: 30px;
        }
        .payment-item {
            background-color: var(--bg-surface-variant);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            font-size: 13px;
            color: var(--text-secondary);
            border: 1px solid var(--border-subtle);
        }
        .payment-item i {
            display: block;
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 8px;
        }
        .guide-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        .guide-card {
            background-color: 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-table {
            width: 100%;
            border-collapse: collapse;
            background-color: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 30px;
        }
        .lottery-table th, .lottery-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 14px;
        }
        .lottery-table th {
            background-color: var(--bg-surface-variant);
            color: var(--primary);
        }
        .win-amount { color: var(--accent); font-weight: bold; }
        .provider-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }
        .provider-item {
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            font-family: var(--font-display);
            color: var(--text-primary);
        }
        .prov-1 { background: linear-gradient(45deg, #ff416c, #ff4b2b); }
        .prov-2 { background: linear-gradient(45deg, #1f4037, #99f2c8); color: #000; }
        .prov-3 { background: linear-gradient(45deg, #4776e6, #8e54e9); }
        .prov-4 { background: linear-gradient(45deg, #f7971e, #ffd200); color: #000; }
        .prov-5 { background: linear-gradient(45deg, #00b09b, #96c93d); }
        .prov-6 { background: linear-gradient(45deg, #8e2de2, #4a00e0); }
        .prov-7 { background: linear-gradient(45deg, #f2994a, #f2c94c); color: #000; }
        .prov-8 { background: linear-gradient(45deg, #eb3349, #f45c43); }
        .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: 12px;
            border: 1px solid var(--border-subtle);
        }
        .comment-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }
        .comment-header i {
            font-size: 30px;
            color: var(--primary);
        }
        .comment-user { font-weight: bold; font-size: 15px; }
        .comment-stars { color: var(--warning); font-size: 12px; margin-bottom: 10px; }
        .comment-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-disabled); text-align: right; }
        .faq-container {
            display: grid;
            gap: 15px;
            margin-bottom: 30px;
        }
        .faq-item {
            background-color: var(--bg-surface);
            border-radius: 12px;
            padding: 20px;
            border: 1px solid var(--border-subtle);
        }
        .faq-item h3 {
            color: var(--primary);
            font-size: 16px;
            margin-bottom: 10px;
        }
        .faq-item p {
            font-size: 14px;
            color: var(--text-secondary);
        }
        .security-footer {
            background-color: var(--bg-surface-variant);
            padding: 30px;
            border-radius: 16px;
            text-align: center;
            border: 1px dashed var(--primary);
        }
        .security-footer .ssl-badge {
            font-size: 40px;
            color: var(--accent);
            margin-bottom: 15px;
        }
        .security-footer p {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 15px;
        }
        .security-footer a {
            color: var(--primary);
            text-decoration: none;
            font-weight: bold;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            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;
            transition: 0.3s;
        }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--primary); }
        footer {
            background-color: var(--bg-surface);
            padding: 40px 20px;
            text-align: center;
            margin-bottom: 70px;
            border-top: 1px solid var(--border-subtle);
        }
        footer .contact-row {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        footer .contact-row a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
        }
        footer .link-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            max-width: 800px;
            margin: 0 auto 30px;
            text-align: left;
        }
        footer .link-grid a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 13px;
            transition: 0.3s;
        }
        footer .link-grid a:hover { color: var(--primary); }
        footer .copyright {
            font-size: 13px;
            color: var(--text-disabled);
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
        }
        @media (max-width: 768px) {
            .link-grid { grid-template-columns: repeat(3, 1fr); }
            .game-grid { grid-template-columns: repeat(2, 1fr); }
            .provider-wall { grid-template-columns: repeat(2, 1fr); }
        }