@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Oswald:wght@400;600&family=Roboto:wght@400;500;700&display=swap');

        :root {
            --primary-gold: #D4AF37;
            --secondary-gold: #F9E076;
            --accent-red: #E63946;
            --luxury-black: #0B0C10;
            --deep-charcoal: #1F2833;
            --main-bg: #0B0C10;
            --surface-card: #1F2833;
            --primary-text: #FFFFFF;
            --secondary-text: #C5C6C7;
            --muted-text: #66FCF1;
            --brand-text: #D4AF37;
            --border-default: #45A29E;
            --border-subtle: #1F2833;
        }

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

        body {
            background-color: var(--main-bg);
            color: var(--primary-text);
            font-family: 'Roboto', 'Segoe UI', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            color: var(--primary-gold);
            text-transform: uppercase;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

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

        .header-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .header-left img {
            width: 25px;
            height: 25px;
        }

        .header-left strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--primary-gold);
            letter-spacing: 1px;
        }

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

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

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

        .btn-register {
            background-color: var(--primary-gold);
            color: var(--luxury-black);
        }

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

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

        .jackpot-pool {
            background: var(--gradient-dark);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            border: 2px solid var(--primary-gold);
            text-align: center;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }

        .jackpot-title {
            font-family: 'Oswald', sans-serif;
            color: var(--secondary-gold);
            font-size: 18px;
            margin-bottom: 10px;
        }

        .jackpot-amount {
            font-family: 'Oswald', sans-serif;
            font-size: 32px;
            font-weight: 900;
            color: var(--primary-text);
            text-shadow: 0 0 10px var(--primary-gold);
        }

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

        .intro-section h1 {
            font-size: 28px;
            margin-bottom: 15px;
            line-height: 1.2;
        }

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

        .section-title {
            padding: 0 15px;
            margin: 20px 0 10px;
            font-size: 24px;
            border-left: 4px solid var(--accent-red);
            padding-left: 10px;
        }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 15px;
        }

        .game-card {
            background: var(--surface-card);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: 0.3s;
        }

        .game-card:active {
            transform: scale(0.95);
        }

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

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

        .article-list {
            padding: 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .article-card {
            display: flex;
            background: var(--surface-card);
            border-radius: 10px;
            overflow: hidden;
            border-bottom: 1px solid var(--border-default);
        }

        .article-card img {
            width: 100px;
            height: 100px;
            object-fit: cover;
        }

        .article-content {
            padding: 10px;
            flex: 1;
        }

        .article-content h3 {
            font-size: 16px;
            margin-bottom: 5px;
            color: var(--secondary-gold);
        }

        .article-content p {
            font-size: 12px;
            color: var(--secondary-text);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

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

        .payment-item {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }

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

        .payment-item span {
            font-size: 10px;
            color: var(--secondary-text);
        }

        .winning-records {
            padding: 15px;
            background: var(--surface-card);
            margin: 15px;
            border-radius: 12px;
            max-height: 300px;
            overflow-y: auto;
        }

        .winning-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--luxury-black);
            font-size: 13px;
        }

        .winning-user { color: var(--muted-text); }
        .winning-amount { color: var(--primary-gold); font-weight: bold; }

        .providers-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            padding: 15px;
        }

        .provider-block {
            background: var(--deep-charcoal);
            padding: 20px;
            text-align: center;
            border-radius: 8px;
            font-weight: bold;
            color: var(--secondary-gold);
            border: 1px solid var(--primary-gold);
        }

        .reviews-section {
            padding: 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .review-card {
            background: var(--surface-card);
            padding: 15px;
            border-radius: 12px;
            border-left: 4px solid var(--primary-gold);
        }

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

        .review-header i { font-size: 20px; color: var(--muted-text); }

        .stars { color: #F1C40F; margin: 5px 0; }

        .review-text { font-size: 14px; font-style: italic; color: var(--secondary-text); }

        .faq-section { padding: 20px 15px; }

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

        .faq-item h3 { font-size: 16px; margin-bottom: 10px; color: var(--secondary-gold); }

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

        .security-section {
            padding: 30px 15px;
            text-align: center;
            background: var(--luxury-black);
            border-top: 1px solid var(--border-default);
        }

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

        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: var(--luxury-black);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--primary-gold);
            z-index: 1000;
        }

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

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

        footer {
            padding: 40px 15px 100px;
            background: var(--luxury-black);
            text-align: center;
        }

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

        .footer-link {
            color: var(--secondary-text);
            font-size: 14px;
        }

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

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .hero-banner { aspect-ratio: 3 / 1; }
        }