:root {
            --primary: #D4AF37;
            --primary-hover: #F1C40F;
            --secondary: #059669;
            --secondary-hover: #10B981;
            --accent: #FF4500;
            --bg-main: #0D0D0D;
            --bg-surface: #1A1A1A;
            --bg-elevated: #262626;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #737373;
            --border-default: #333333;
        }

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

        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }

        h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: 0.3s;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        header {
            background-color: var(--bg-surface);
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }

        .header-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-area img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }

        .logo-area strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--primary);
        }

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

        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }

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

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

        .btn-register:hover {
            background-color: var(--primary-hover);
        }

        .banner-img {
            width: 100%;
            aspect-ratio: 2 / 1;
            object-fit: cover;
            cursor: pointer;
            border-radius: 12px;
            margin: 15px 0;
        }

        .jackpot-container {
            background: linear-gradient(135deg, #1A1A1A, #262626);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 2px solid var(--primary);
            margin-bottom: 20px;
        }

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

        .jackpot-amount {
            font-family: 'JetBrains Mono', monospace;
            font-size: 32px;
            font-weight: 900;
            color: #FFFFFF;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }

        .intro-card {
            background-color: var(--bg-surface);
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 25px;
            border-left: 4px solid var(--primary);
        }

        .intro-card h1 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--primary);
        }

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

        .section-title {
            font-size: 18px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-title::before {
            content: "";
            width: 4px;
            height: 18px;
            background-color: var(--primary);
            display: inline-block;
        }

        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 25px;
        }

        .game-card {
            background-color: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: 0.3s;
        }

        .game-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
        }

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

        .game-card h3 {
            padding: 10px;
            font-size: 14px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            text-align: center;
        }

        .payment-licences {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 25px;
        }

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

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

        .guides-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 25px;
        }

        .guide-card {
            background-color: var(--bg-surface);
            padding: 15px;
            border-radius: 10px;
        }

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

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

        .lottery-marquee {
            background-color: var(--bg-surface);
            padding: 15px;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 25px;
            border: 1px solid var(--border-default);
        }

        .marquee-content {
            display: flex;
            flex-direction: column;
            gap: 10px;
            animation: slideUp 20s linear infinite;
        }

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

        .lottery-item {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            border-bottom: 1px solid var(--bg-elevated);
            padding-bottom: 5px;
        }

        .winner-name { color: var(--primary); font-weight: 600; }
        .winner-amount { color: var(--secondary); font-weight: 700; }

        .providers-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 25px;
        }

        .provider-block {
            background-color: var(--bg-elevated);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            color: var(--text-primary);
        }

        .provider-block:nth-child(even) { border-top: 2px solid var(--primary); }
        .provider-block:nth-child(odd) { border-top: 2px solid var(--secondary); }

        .reviews-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 25px;
        }

        .review-card {
            background-color: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-default);
        }

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

        .review-header i { font-size: 24px; color: var(--text-muted); }
        .star-rating { color: #FFCC00; font-size: 12px; }

        .faq-section {
            margin-bottom: 25px;
        }

        .faq-item {
            background-color: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-question {
            padding: 15px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--bg-elevated);
        }

        .faq-answer {
            padding: 15px;
            font-size: 14px;
            color: var(--text-secondary);
        }

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

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

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

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

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

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

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
        }

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

        .footer-links a {
            font-size: 12px;
            color: var(--text-secondary);
        }

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

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guides-container { grid-template-columns: 1fr 1fr; }
            .reviews-grid { grid-template-columns: 1fr 1fr; }
        }