:root {
            --primary: #D4AF37;
            --primary-light: #F1C40F;
            --primary-dark: #996515;
            --accent: #FFD700;
            --bg-main: #0B0E11;
            --bg-surface: #161B22;
            --bg-elevated: #1C2128;
            --text-primary: #FFFFFF;
            --text-secondary: #A0AEC0;
            --border-default: #2D3748;
            --heading-font: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
            --body-font: 'Inter', 'Roboto', system-ui, sans-serif;
            --numeric-font: 'Oswald', sans-serif;
        }

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

        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--body-font);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        header {
            height: 60px;
            background-color: var(--bg-surface);
            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-default);
        }

        .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: 500;
            font-family: var(--heading-font);
            color: var(--primary);
        }

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

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

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

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

        main {
            padding-bottom: 80px;
            max-width: 800px;
            margin: 0 auto;
        }

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

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

        .jackpot-container {
            background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-main) 100%);
            padding: 20px;
            text-align: center;
            border-bottom: 1px solid var(--border-default);
        }

        .jackpot-label {
            color: var(--primary);
            font-family: var(--heading-font);
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .jackpot-amount {
            font-family: var(--numeric-font);
            font-size: 2.5rem;
            color: var(--primary-light);
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }

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

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

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

        .section-title {
            padding: 20px 15px 10px;
            font-family: var(--heading-font);
            font-size: 1.25rem;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

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

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

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

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

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

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

        .article-card {
            display: flex;
            background-color: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            height: 100px;
            border: 1px solid var(--border-default);
        }

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

        .article-info {
            padding: 10px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .article-info h3 {
            font-size: 0.9rem;
            color: var(--text-primary);
            margin-bottom: 5px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

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

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

        .trust-item {
            background-color: var(--bg-elevated);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            font-size: 0.7rem;
            color: var(--text-secondary);
        }

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

        .winner-ticker {
            height: 200px;
            overflow: hidden;
            background-color: var(--bg-surface);
            margin: 15px;
            border-radius: 12px;
            border: 1px solid var(--border-default);
            position: relative;
        }

        .winner-list {
            list-style: none;
            position: absolute;
            width: 100%;
            animation: scrollUp 40s linear infinite;
        }

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

        .winner-item {
            padding: 12px 15px;
            border-bottom: 1px solid var(--border-default);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
        }

        .win-user { color: var(--primary); font-weight: 600; }
        .win-amount { color: var(--accent); font-family: var(--numeric-font); }

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

        .provider-block {
            background-color: var(--bg-elevated);
            height: 60px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--text-secondary);
            border: 1px solid var(--border-default);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

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

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

        .review-header i {
            color: var(--primary);
            font-size: 1.2rem;
        }

        .review-stars {
            color: #FFD700;
            margin: 5px 0;
        }

        .review-body {
            font-size: 0.875rem;
            color: var(--text-secondary);
            font-style: italic;
        }

        .review-date {
            font-size: 0.75rem;
            color: var(--text-disabled);
            margin-top: 10px;
            text-align: right;
        }

        .faq-section {
            padding: 15px;
        }

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

        .faq-question {
            padding: 15px;
            font-weight: 600;
            color: var(--primary);
            border-bottom: 1px solid var(--border-default);
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .faq-answer {
            padding: 15px;
            font-size: 0.875rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .security-section {
            padding: 30px 15px;
            text-align: center;
            background-color: var(--bg-surface);
            margin-top: 20px;
        }

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

        .age-limit {
            display: inline-block;
            border: 2px solid var(--primary);
            color: var(--primary);
            width: 40px;
            height: 40px;
            line-height: 36px;
            border-radius: 50%;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .responsible-text {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-bottom: 15px;
        }

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

        .nav-item {
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--text-secondary);
            font-size: 0.7rem;
        }

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

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

        footer {
            background-color: var(--bg-main);
            padding: 20px 15px 100px;
            border-top: 1px solid var(--border-default);
        }

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

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

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