:root {
            --brand-primary: #FFD700;
            --brand-primary-dark: #B8860B;
            --brand-secondary: #E60012;
            --brand-accent: #00FFC8;
            --bg-main: #0B0E11;
            --bg-surface: #1A1D23;
            --bg-overlay: rgba(0, 0, 0, 0.7);
            --bg-gradient-start: #1C1C1C;
            --bg-gradient-end: #000000;
            --text-heading: #FFFFFF;
            --text-body: #B0B3B8;
            --text-muted: #707A8A;
            --text-inverse: #000000;
            --success: #0ECB81;
            --warning: #F0B90B;
            --error: #F6465D;
            --info: #3B82F6;
            --border-light: #2B2F36;
            --border-medium: #474D57;
            --border-strong: #FFD700;
            --font-primary: 'Inter', 'Roboto', sans-serif;
            --font-heading: 'Montserrat', sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg-main);
            background-image: linear-gradient(to bottom, var(--bg-gradient-start), var(--bg-gradient-end));
            color: var(--text-body);
            font-family: var(--font-primary);
            line-height: 1.5;
            overflow-x: hidden;
        }

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

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

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

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

        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
            font-family: var(--font-primary);
            font-size: 14px;
        }

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

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

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

        .btn-register:hover {
            background: var(--brand-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;
            cursor: pointer;
            border-radius: 15px;
            overflow: hidden;
            border: 2px solid var(--border-medium);
        }

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

        .jackpot-section {
            background: linear-gradient(45deg, #B8860B, #FFD700);
            color: var(--text-inverse);
            text-align: center;
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 25px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }

        .jackpot-title {
            font-family: var(--font-heading);
            font-weight: 800;
            text-transform: uppercase;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .jackpot-amount {
            font-family: 'JetBrains Mono', monospace;
            font-size: 32px;
            font-weight: 800;
            letter-spacing: 2px;
        }

        .intro-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            margin-bottom: 30px;
        }

        .intro-card h1 {
            font-family: var(--font-heading);
            color: var(--text-heading);
            font-size: 28px;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .intro-card p {
            color: var(--text-body);
            font-size: 16px;
            max-width: 800px;
            margin: 0 auto;
        }

        section {
            margin-bottom: 40px;
        }

        h2 {
            font-family: var(--font-heading);
            color: var(--text-heading);
            font-size: 24px;
            margin-bottom: 20px;
            border-left: 5px solid var(--brand-primary);
            padding-left: 15px;
        }

        .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: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--border-light);
        }

        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            border-color: var(--brand-primary);
        }

        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }

        .game-card h3 {
            color: var(--text-heading);
            font-size: 15px;
            padding: 12px;
            text-align: center;
            font-family: var(--font-primary);
            font-weight: 500;
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 10px;
        }

        .payment-item {
            background: var(--bg-surface);
            border: 1px solid var(--border-light);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-heading);
        }

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

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

        .guide-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border-bottom: 3px solid var(--brand-primary);
        }

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

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

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

        .lottery-table th {
            background: var(--border-medium);
            color: var(--text-heading);
            font-weight: 600;
        }

        .lottery-table td {
            color: var(--text-body);
            font-size: 14px;
        }

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

        .provider-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .provider-box {
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            font-weight: bold;
            color: var(--text-inverse);
            font-family: var(--font-heading);
        }

        .p-1 { background: #FFD700; }
        .p-2 { background: #E60012; }
        .p-3 { background: #00FFC8; color: #000; }
        .p-4 { background: #3B82F6; }
        .p-5 { background: #0ECB81; }
        .p-6 { background: #F0B90B; }
        .p-7 { background: #8B0000; }
        .p-8 { background: #4B0082; }

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

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

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

        .comment-header i {
            font-size: 30px;
            color: var(--border-medium);
        }

        .comment-user {
            color: var(--text-heading);
            font-weight: 600;
        }

        .comment-stars {
            color: var(--brand-primary);
            font-size: 12px;
            margin-bottom: 10px;
        }

        .comment-date {
            font-size: 12px;
            color: var(--text-muted);
            display: block;
            margin-top: 10px;
        }

        .faq-section {
            display: grid;
            gap: 15px;
        }

        .faq-item {
            background: var(--bg-surface);
            border: 1px solid var(--border-light);
            border-radius: 10px;
            padding: 20px;
        }

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

        .security-section {
            background: var(--bg-surface);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            margin-top: 40px;
        }

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

        .badge {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-heading);
            font-weight: 600;
        }

        .badge i {
            color: var(--success);
            font-size: 24px;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            border-top: 2px solid var(--brand-primary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            z-index: 1001;
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--text-body);
            font-size: 11px;
            gap: 5px;
        }

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

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

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

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

        .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-muted);
            text-decoration: none;
            font-size: 13px;
            padding: 5px 0;
        }

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

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

        @media (max-width: 768px) {
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
            .intro-card h1 {
                font-size: 22px;
            }
        }