:root {
            --brand-primary: #FFD700;
            --brand-primary-variant: #B8860B;
            --brand-secondary: #C0C0C0;
            --brand-accent: #FF4500;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --bg-gradient-start: #1a1a1a;
            --bg-gradient-end: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #666666;
            --text-inverse: #000000;
            --text-highlight: #FFD700;
            --semantic-success: #00C853;
            --semantic-error: #FF1744;
            --semantic-warning: #FFEA00;
            --semantic-info: #2979FF;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-muted: #262626;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Roboto', sans-serif;
            --font-accent: 'Playfair Display', serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            background-color: var(--bg-main);
            background-image: linear-gradient(to bottom, var(--bg-gradient-start), var(--bg-gradient-end));
            color: var(--text-primary);
            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-highlight);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }

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

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

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

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

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

        .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-variant);
            transform: translateY(-2px);
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            padding-bottom: 80px;
        }

        .banner-container {
            width: 100%;
            aspect-ratio: 2/1;
            overflow: hidden;
            border-radius: 15px;
            margin-bottom: 25px;
            cursor: pointer;
            border: 2px solid var(--border-default);
        }

        .banner-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .banner-container:hover img {
            transform: scale(1.05);
        }

        .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.4);
        }

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

        .jackpot-amount {
            font-family: var(--font-accent);
            font-size: 36px;
            font-weight: 800;
            display: block;
            filter: drop-shadow(0 2px 2px rgba(0,0,0,0.3));
        }

        .intro-card {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 20px;
            border-left: 5px solid var(--brand-primary);
            margin-bottom: 30px;
        }

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

        .intro-card p {
            color: var(--text-secondary);
            font-size: 16px;
        }

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

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

        .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;
            transition: all 0.3s ease;
            border: 1px solid var(--border-muted);
        }

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

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

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

        .payment-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 30px;
            text-align: center;
        }

        .payment-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: var(--text-secondary);
            font-size: 13px;
        }

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

        .guides-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: 15px;
            border: 1px solid var(--border-muted);
        }

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

        .guide-card p {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.6;
        }

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

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

        .lottery-table th {
            background: var(--brand-primary-variant);
            color: var(--text-inverse);
            font-family: var(--font-heading);
            font-size: 14px;
        }

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

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

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

        .provider-block {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            font-family: var(--font-heading);
            font-weight: 600;
            border: 1px solid var(--border-muted);
            transition: background 0.3s;
        }

        .provider-block:nth-child(odd) {
            border-left: 4px solid var(--brand-primary);
            background: linear-gradient(90deg, #262626, #1a1a1a);
        }

        .provider-block:nth-child(even) {
            border-right: 4px solid var(--brand-accent);
            background: linear-gradient(270deg, #262626, #1a1a1a);
        }

        .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;
            position: relative;
            border: 1px solid var(--border-muted);
        }

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

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

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

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

        .comment-text {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 10px;
            font-style: italic;
        }

        .comment-date {
            font-size: 12px;
            color: var(--text-muted);
            display: block;
            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-muted);
        }

        .faq-question {
            padding: 15px 20px;
            background: #222;
            cursor: pointer;
            font-family: var(--font-heading);
            font-weight: 600;
            color: var(--brand-primary);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 15px 20px;
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.6;
            border-top: 1px solid var(--border-muted);
        }

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

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

        .security-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            color: var(--text-secondary);
            font-size: 13px;
        }

        .security-icon i {
            font-size: 30px;
            color: var(--semantic-success);
        }

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

        .security-link {
            color: var(--brand-primary);
            text-decoration: none;
            font-weight: bold;
            border-bottom: 1px solid var(--brand-primary);
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 10px 0;
            border-top: 2px solid var(--brand-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;
            gap: 5px;
            font-size: 12px;
            font-family: var(--font-heading);
            flex: 1;
        }

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

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

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

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

        footer .contact-links a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s;
        }

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

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

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

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

        footer .copyright {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 20px;
            border-top: 1px solid var(--border-muted);
            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: 28px;
            }
        }