:root {
            --primary: #FFD700;
            --primary-hover: #FFC400;
            --secondary: #B8860B;
            --accent: #FF4500;
            --bg-main: #0B0D17;
            --bg-surface: #161B2D;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --grad-start: #1A1F35;
            --grad-end: #0B0D17;
            --text-heading: #FFFFFF;
            --text-body: #B0B3B8;
            --text-muted: #6B7280;
            --text-inverse: #0B0D17;
            --success: #00C853;
            --warning: #FFB300;
            --error: #FF5252;
            --info: #2196F3;
            --border-light: #2D344D;
            --border-medium: #3F4766;
            --border-strong: #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);
            background-image: linear-gradient(to bottom, var(--grad-start), var(--grad-end));
            color: var(--text-body);
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.5;
            overflow-x: hidden;
        }

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

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

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

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

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

        .btn {
            padding: 8px 18px;
            border-radius: 6px;
            font-family: var(--font-accent);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            text-transform: uppercase;
            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-hover);
            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;
            margin-bottom: 30px;
            border-radius: 15px;
            overflow: hidden;
            border: 2px solid var(--border-medium);
            cursor: pointer;
        }

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

        .jackpot-section {
            background: var(--bg-surface);
            border: 2px solid var(--secondary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(184, 134, 11, 0.3);
        }

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

        .jackpot-amount {
            font-family: var(--font-heading);
            font-size: 32px;
            font-weight: 800;
            color: #FFF;
            display: block;
            transition: all 0.1s ease;
        }

        .intro-card {
            background: linear-gradient(135deg, var(--bg-surface), #1c233d);
            padding: 30px;
            border-radius: 20px;
            border-left: 5px solid var(--primary);
            margin-bottom: 40px;
            text-align: center;
        }

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

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

        h2 {
            font-family: var(--font-heading);
            color: var(--text-heading);
            font-size: 24px;
            text-align: center;
            margin: 40px 0 20px;
            position: relative;
            padding-bottom: 10px;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary);
        }

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

        .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 10px 20px rgba(0,0,0,0.5);
            border-color: var(--primary);
        }

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

        .game-card h3 {
            padding: 12px;
            font-family: var(--font-heading);
            font-size: 16px;
            color: var(--text-heading);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .payment-licenses {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            margin-bottom: 40px;
        }

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

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

        .pl-item span {
            font-size: 14px;
            color: var(--text-heading);
            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-medium);
        }

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

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

        .lottery-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 40px;
            font-size: 14px;
        }

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

        .lottery-table th {
            background: var(--secondary);
            color: #FFF;
            font-family: var(--font-heading);
        }

        .lottery-table td {
            color: var(--text-body);
        }

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

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

        .provider-box {
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            font-family: var(--font-accent);
            font-weight: bold;
            color: var(--text-heading);
            text-transform: uppercase;
        }

        .prov-1 { background: linear-gradient(45deg, #4a148c, #7b1fa2); }
        .prov-2 { background: linear-gradient(45deg, #b71c1c, #d32f2f); }
        .prov-3 { background: linear-gradient(45deg, #004d40, #00796b); }
        .prov-4 { background: linear-gradient(45deg, #e65100, #fb8c00); }
        .prov-5 { background: linear-gradient(45deg, #01579b, #0288d1); }
        .prov-6 { background: linear-gradient(45deg, #311b92, #5e35b1); }
        .prov-7 { background: linear-gradient(45deg, #1b5e20, #388e3c); }
        .prov-8 { background: linear-gradient(45deg, #bf360c, #e64a19); }

        .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-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 10px;
        }

        .comment-header i {
            font-size: 40px;
            color: var(--primary);
        }

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

        .comment-stars {
            color: var(--warning);
            font-size: 12px;
            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;
            color: var(--text-heading);
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 0 20px 15px;
            color: var(--text-body);
            font-size: 14px;
            line-height: 1.6;
        }

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

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

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

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

        .security-text {
            font-size: 14px;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto 15px;
        }

        .security-link {
            color: var(--primary);
            text-decoration: none;
            font-size: 14px;
            font-weight: bold;
        }

        .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;
            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: color 0.3s;
        }

        .nav-item i {
            font-size: 20px;
        }

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

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

        .footer-contact {
            margin-bottom: 30px;
        }

        .footer-contact h4 {
            color: var(--text-heading);
            margin-bottom: 15px;
            font-family: var(--font-heading);
        }

        .contact-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

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

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

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

        .footer-col a {
            display: block;
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            margin-bottom: 8px;
            transition: color 0.3s;
        }

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

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

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