:root {
            --primary: #D4AF37;
            --primary-light: #F1C40F;
            --primary-dark: #996515;
            --secondary: #E31837;
            --accent: #00FF41;
            --bg-default: #0B0E11;
            --bg-paper: #15191C;
            --bg-surface: #1E2329;
            --bg-elevated: #2B3139;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-disabled: #5E6673;
            --text-hint: #848E9C;
            --border-default: #2D333B;
            --success: #2EBD85;
            --error: #F6465D;
            --font-main: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            --font-heading: 'Montserrat', 'Inter', sans-serif;
        }

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

        body {
            background-color: var(--bg-default);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            overflow-x: hidden;
        }

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

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

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

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

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

        header button {
            padding: 6px 16px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 0.875rem;
        }

        header .btn-login {
            background-color: var(--bg-surface);
            color: var(--text-primary);
        }

        header .btn-register {
            background-color: var(--primary);
            color: #000;
        }

        main {
            padding-bottom: 80px;
        }

        .banner-container {
            width: 100%;
            aspect-ratio: 2/1;
            cursor: pointer;
            overflow: hidden;
        }

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

        .jackpot-wrap {
            background: linear-gradient(135deg, var(--primary-dark), #000);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
        }

        .jackpot-title {
            color: var(--primary-light);
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .jackpot-amount {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-primary);
            font-family: var(--font-heading);
            display: block;
            text-shadow: 0 0 10px var(--primary);
        }

        .intro-section {
            padding: 20px 15px;
            text-align: center;
        }

        h1 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 12px;
            font-family: var(--font-heading);
        }

        .intro-section p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        .section-title {
            padding: 15px;
            font-size: 1.25rem;
            font-family: var(--font-heading);
            border-left: 4px solid var(--primary);
            margin: 10px 15px;
            background: var(--bg-paper);
        }

        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 15px;
        }

        .game-card {
            background: var(--bg-paper);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border-default);
        }

        .game-card:hover {
            transform: translateY(-5px);
        }

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

        .game-card h3 {
            padding: 10px;
            font-size: 0.9rem;
            color: var(--text-primary);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .payment-licence {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 20px 15px;
            background: var(--bg-surface);
            margin: 20px 0;
        }

        .payment-item {
            text-align: center;
            font-size: 0.7rem;
            color: var(--text-hint);
        }

        .payment-item i {
            display: block;
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .guides-section {
            padding: 15px;
        }

        .guide-item {
            background: var(--bg-paper);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 12px;
            border-bottom: 2px solid var(--bg-elevated);
        }

        .guide-item h2 {
            font-size: 1.1rem;
            color: var(--primary-light);
            margin-bottom: 10px;
        }

        .guide-item p {
            font-size: 0.875rem;
            color: var(--text-secondary);
        }

        .lottery-marquee {
            background: var(--bg-surface);
            padding: 10px 0;
            overflow: hidden;
            margin: 20px 0;
            height: 200px;
            position: relative;
        }

        .marquee-content {
            display: flex;
            flex-direction: column;
            animation: scrollUp 40s linear infinite;
        }

        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }

        .lottery-item {
            padding: 10px 20px;
            border-bottom: 1px solid var(--border-default);
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
        }

        .lottery-item span:nth-child(2) {
            color: var(--accent);
            font-weight: bold;
        }

        .providers-wall {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding: 15px;
        }

        .provider-tag {
            flex: 1 0 45%;
            background: var(--bg-elevated);
            color: var(--primary);
            padding: 12px;
            text-align: center;
            border-radius: 6px;
            font-weight: bold;
            font-size: 0.85rem;
        }

        .comment-section {
            padding: 15px;
        }

        .comment-card {
            background: var(--bg-paper);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border-left: 3px solid var(--primary);
        }

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

        .comment-header i {
            font-size: 1.5rem;
            color: var(--text-hint);
        }

        .comment-name {
            font-weight: bold;
            font-size: 0.9rem;
        }

        .stars {
            color: #F0B90B;
            font-size: 0.8rem;
        }

        .comment-date {
            font-size: 0.75rem;
            color: var(--text-hint);
            margin-left: auto;
        }

        .faq-section {
            padding: 15px;
        }

        .faq-item {
            margin-bottom: 15px;
            background: var(--bg-surface);
            border-radius: 8px;
            padding: 15px;
        }

        .faq-item h2 {
            font-size: 1rem;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .faq-item p {
            font-size: 0.875rem;
            color: var(--text-secondary);
        }

        .security-section {
            margin: 20px 15px;
            padding: 20px;
            background: var(--bg-elevated);
            border-radius: 12px;
            text-align: center;
        }

        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 1.5rem;
            color: var(--success);
        }

        .security-section p {
            font-size: 0.8rem;
            color: var(--text-hint);
            margin-bottom: 8px;
        }

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

        .navigator a {
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 0.75rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .navigator a i {
            font-size: 1.25rem;
        }

        .navigator a:nth-child(3) {
            color: var(--primary);
            transform: translateY(-5px);
        }

        footer {
            background: var(--bg-surface);
            padding: 30px 15px 100px;
            text-align: center;
            border-top: 1px solid var(--border-default);
        }

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

        footer .footer-contact a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.85rem;
        }

        footer .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }

        footer .footer-links a {
            color: var(--text-hint);
            text-decoration: none;
            font-size: 0.8rem;
        }

        footer .copyright {
            font-size: 0.75rem;
            color: var(--text-disabled);
            border-top: 1px solid var(--border-default);
            padding-top: 20px;
        }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            header, .jackpot-wrap, .intro-section, .section-title, .game-grid, .payment-licence, .guides-section, .lottery-marquee, .providers-wall, .comment-section, .faq-section, .security-section, footer {
                max-width: 800px;
                margin-left: auto;
                margin-right: auto;
            }
        }