@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@600;700;800&family=JetBrains+Mono&display=swap');

        :root {
            --brand-primary: #D4AF37;
            --brand-primary-light: #F9E076;
            --brand-primary-dark: #996515;
            --brand-secondary: #1A1D23;
            --brand-accent: #FF3DF0;
            --bg-base: #0B0E14;
            --bg-surface: #161B22;
            --bg-surface-elevated: #21262D;
            --text-primary: #FFFFFF;
            --text-secondary: #8B949E;
            --semantic-success: #2EA043;
            --semantic-hot: #FF4500;
        }

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

        body {
            background-color: var(--bg-base);
            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;
        }

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

        .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(--brand-primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

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

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

        .btn-register {
            background: var(--brand-primary);
            color: #0B0E14;
        }

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

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

        .jackpot-container {
            margin: 20px 15px;
            background: linear-gradient(145deg, #161B22, #0B0E14);
            border: 1px solid var(--brand-primary-dark);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
        }

        .jackpot-label {
            color: var(--brand-primary-light);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 10px;
            display: block;
        }

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

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

        .intro-section h1 {
            font-size: 24px;
            margin-bottom: 10px;
            color: var(--brand-primary);
        }

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

        .section-title {
            padding: 0 15px;
            margin: 20px 0 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-title h2 {
            font-size: 20px;
            color: var(--text-primary);
        }

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

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

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

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

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

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

        .article-card {
            display: flex;
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            height: 100px;
        }

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

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

        .article-info h3 {
            font-size: 14px;
            margin-bottom: 5px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

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

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

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

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

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

        .winners-section {
            margin: 20px 15px;
            background: var(--bg-surface);
            border-radius: 12px;
            padding: 15px;
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .winners-scroll {
            display: flex;
            flex-direction: column;
            gap: 10px;
            animation: scrollList 40s linear infinite;
        }

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

        .winner-row {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            padding: 8px;
            border-bottom: 1px solid var(--bg-surface-elevated);
        }

        .winner-name { color: var(--brand-primary-light); }
        .winner-amount { color: var(--semantic-success); font-weight: 600; }

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

        .provider-block {
            background: var(--bg-surface-elevated);
            height: 60px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--text-secondary);
            border: 1px solid #30363D;
        }

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

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

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

        .review-header i {
            background: var(--bg-surface-elevated);
            padding: 10px;
            border-radius: 50%;
            color: var(--brand-primary);
        }

        .star-rating {
            color: #F9E076;
            font-size: 12px;
        }

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

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

        .faq-question {
            padding: 15px;
            font-weight: 600;
            font-size: 14px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            color: var(--brand-primary-light);
        }

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

        .responsible-gaming {
            padding: 20px 15px;
            text-align: center;
            background: var(--bg-surface);
            margin: 20px 0;
        }

        .security-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            color: var(--semantic-success);
            font-size: 14px;
            margin-bottom: 10px;
        }

        .age-limit {
            display: inline-block;
            border: 2px solid #FF4D4D;
            color: #FF4D4D;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            line-height: 26px;
            font-weight: 800;
            margin: 10px 0;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background: var(--brand-secondary);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid #30363D;
            z-index: 1000;
        }

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

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

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

        footer {
            background: var(--bg-base);
            padding: 30px 15px 100px;
            border-top: 1px solid #30363D;
        }

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

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

        .copyright {
            text-align: center;
            font-size: 12px;
            color: var(--text-disabled);
        }