:root {
            --primary-gold: #FFD700;
            --primary-gold-hover: #E6C200;
            --secondary-red: #E01E37;
            --accent-blue: #0056B3;
            --deep-black: #0B0E11;
            --surface-dark: #181C21;
            --surface-elevated: #2B3139;
            --text-high: #FFFFFF;
            --text-medium: #B7BDC6;
            --text-low: #707A8A;
            --success: #0ECB81;
            --error: #F6465D;
            --border-subtle: #373D48;
            --font-primary: 'Hind Siliguri', 'Inter', sans-serif;
        }

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

        body {
            background-color: var(--deep-black);
            color: var(--text-high);
            font-family: var(--font-primary);
            line-height: 1.5;
            overflow-x: hidden;
        }

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

        header {
            height: 60px;
            background: var(--surface-dark);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-subtle);
        }

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

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

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

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

        .btn {
            padding: 6px 15px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }

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

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

        main {
            padding-bottom: 80px;
        }

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

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

        .jackpot-container {
            background: linear-gradient(180deg, #1e1e1e 0%, #0b0e11 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary-gold);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }

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

        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--success);
            font-family: 'Inter', sans-serif;
        }

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

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

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

        .section-title {
            padding: 0 15px;
            margin: 20px 0 10px;
            font-size: 20px;
            color: var(--text-high);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-title::before {
            content: "";
            width: 4px;
            height: 20px;
            background: var(--primary-gold);
            border-radius: 2px;
        }

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

        .game-card {
            background: var(--surface-dark);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: transform 0.2s;
        }

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

        .game-info {
            padding: 8px;
        }

        .game-info h3 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-high);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .game-provider {
            font-size: 12px;
            color: var(--text-low);
        }

        .payment-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 15px;
            background: var(--surface-dark);
            margin: 15px;
            border-radius: 12px;
        }

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

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

        .guidelines-section {
            padding: 0 15px;
        }

        .guide-card {
            background: var(--surface-elevated);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 10px;
        }

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

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

        .marquee-container {
            background: var(--surface-dark);
            margin: 15px;
            padding: 10px;
            border-radius: 12px;
            overflow: hidden;
            height: 200px;
            position: relative;
        }

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

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

        .win-record {
            display: flex;
            justify-content: space-between;
            padding: 8px;
            background: var(--surface-elevated);
            border-radius: 6px;
            font-size: 13px;
        }

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

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

        .provider-tag {
            background: var(--surface-elevated);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            color: var(--text-medium);
            border: 1px solid var(--border-subtle);
        }

        .review-grid {
            padding: 0 15px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .review-card {
            background: var(--surface-dark);
            padding: 15px;
            border-radius: 12px;
        }

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

        .review-user i {
            font-size: 24px;
            color: var(--text-low);
        }

        .stars {
            color: var(--primary-gold);
            font-size: 12px;
        }

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

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

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

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

        .security-section {
            margin: 20px 15px;
            padding: 20px;
            background: rgba(14, 203, 129, 0.05);
            border: 1px dashed var(--success);
            border-radius: 12px;
            text-align: center;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: var(--surface-dark);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-subtle);
            z-index: 1000;
        }

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

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

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

        footer {
            background: var(--deep-black);
            padding: 40px 15px 100px;
            border-top: 1px solid var(--border-subtle);
        }

        .footer-contacts {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 30px;
        }

        .footer-contacts a {
            display: block;
            padding: 10px;
            background: var(--surface-dark);
            border-radius: 6px;
            text-align: center;
            font-size: 14px;
        }

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

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

        .copyright {
            text-align: center;
            font-size: 12px;
            color: var(--text-low);
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
        }