:root {
            --primary: #FFD700;
            --primary-dark: #C5A000;
            --secondary: #E60012;
            --accent: #00FFC3;
            --bg-main: #0B0D17;
            --bg-surface: #161B2D;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --gradient-start: #1A2138;
            --gradient-end: #0B0D17;
            --text-heading: #FFFFFF;
            --text-body: #B0B3B8;
            --text-muted: #6B7280;
            --text-inverse: #0B0D17;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #FF5252;
            --info: #2196F3;
            --border-light: #2D344B;
            --border-medium: #3F4763;
            --border-strong: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background: var(--bg-main);
            background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
            color: var(--text-body);
            font-family: 'Roboto', 'Inter', Arial, sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 {
            font-family: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
            color: var(--text-heading);
            line-height: 1.2;
        }
        header {
            background: var(--bg-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);
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }
        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: cover;
        }
        header .logo-area strong {
            font-size: 16px;
            font-weight: normal;
            color: var(--primary);
        }
        header .auth-buttons {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 8px 16px;
            border-radius: 5px;
            cursor: pointer;
            font-family: 'Oswald', sans-serif;
            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);
            box-shadow: 0 0 15px var(--primary);
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            padding-bottom: 100px;
        }
        .banner-container {
            width: 100%;
            aspect-ratio: 2/1;
            overflow: hidden;
            border-radius: 15px;
            cursor: pointer;
            margin-bottom: 20px;
            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-section {
            background: linear-gradient(45deg, #B8860B, #FFD700, #B8860B);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 30px;
            color: var(--text-inverse);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
        }
        .jackpot-title {
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 20px;
            margin-bottom: 10px;
        }
        .jackpot-amount {
            font-size: 36px;
            font-weight: 900;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 2px;
        }
        .intro-card {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 20px;
            border-left: 5px solid var(--primary);
            margin-bottom: 40px;
            text-align: center;
        }
        .intro-card h1 {
            font-size: 28px;
            margin-bottom: 15px;
            color: var(--primary);
        }
        .intro-card p {
            font-size: 16px;
            color: var(--text-body);
            max-width: 800px;
            margin: 0 auto;
        }
        .section-title {
            font-size: 24px;
            margin: 40px 0 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid var(--border-light);
            padding-bottom: 10px;
        }
        .section-title i {
            color: var(--primary);
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            transition: 0.3s;
            border: 1px solid var(--border-light);
            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: 12px;
            font-size: 16px;
            text-align: center;
            color: var(--text-heading);
        }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            margin-bottom: 40px;
        }
        .payment-item {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid var(--border-light);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        .payment-item i {
            font-size: 24px;
            color: var(--primary);
        }
        .payment-item span {
            font-size: 14px;
            font-weight: 500;
        }
        .guide-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .guide-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-light);
        }
        .guide-card h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--primary);
        }
        .guide-card p {
            font-size: 14px;
            color: var(--text-body);
        }
        .lottery-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 40px;
        }
        .lottery-table th, .lottery-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid var(--border-light);
        }
        .lottery-table th {
            background: var(--border-medium);
            color: var(--primary);
            font-family: 'Oswald', sans-serif;
        }
        .lottery-table td {
            font-size: 14px;
        }
        .win-amount {
            color: var(--success);
            font-weight: bold;
        }
        .provider-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 40px;
        }
        .provider-box {
            padding: 15px;
            border-radius: 10px;
            font-weight: bold;
            text-align: center;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
        }
        .provider-box:nth-child(odd) {
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            color: var(--text-inverse);
        }
        .provider-box:nth-child(even) {
            background: linear-gradient(to right, var(--secondary), #990000);
            color: white;
        }
        .comment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .comment-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-light);
        }
        .comment-user {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .comment-user i {
            font-size: 30px;
            color: var(--primary);
        }
        .comment-user strong {
            color: var(--text-heading);
        }
        .comment-stars {
            color: #FFD700;
            font-size: 14px;
            margin-bottom: 10px;
        }
        .comment-text {
            font-size: 14px;
            font-style: italic;
            margin-bottom: 10px;
        }
        .comment-date {
            font-size: 12px;
            color: var(--text-muted);
            display: block;
            text-align: right;
        }
        .faq-section {
            margin-bottom: 40px;
        }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 10px;
            border: 1px solid var(--border-light);
            overflow: hidden;
        }
        .faq-question {
            padding: 15px 20px;
            background: var(--border-medium);
            color: var(--text-heading);
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            padding: 15px 20px;
            font-size: 14px;
            line-height: 1.6;
            border-top: 1px solid var(--border-light);
        }
        .security-footer {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid var(--border-light);
            margin-bottom: 40px;
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        .security-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: bold;
            color: var(--primary);
        }
        .security-text {
            font-size: 14px;
            color: var(--text-body);
            margin-bottom: 15px;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--primary);
            z-index: 1001;
            box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-body);
            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;
            text-align: center;
            border-top: 1px solid var(--border-light);
            color: var(--text-body);
            font-size: 14px;
        }
        .footer-contact {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .footer-contact a {
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            max-width: 800px;
            margin: 0 auto 30px;
            text-align: left;
        }
        .footer-links a {
            color: var(--text-body);
            text-decoration: none;
            transition: 0.3s;
        }
        .footer-links a:hover {
            color: var(--primary);
        }
        .copyright {
            border-top: 1px solid var(--border-light);
            padding-top: 20px;
            font-weight: 500;
        }
        @media (max-width: 768px) {
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
            .provider-wall {
                grid-template-columns: 1fr;
            }
        }