:root {
            --bg-primary: #0b0e11;
            --bg-secondary: #15191e;
            --bg-tertiary: #1e2329;
            --overlay: rgba(0, 0, 0, 0.85);
            --primary-gold: #d4af37;
            --secondary-gold: #f9d71c;
            --accent-red: #ff4d4d;
            --cta-gradient: linear-gradient(180deg, #f9d71c 0%, #d4af37 100%);
            --success: #00c853;
            --error: #ff3d00;
            --warning: #ffab00;
            --info: #2979ff;
            --jackpot: #ff00ff;
            --text-primary: #ffffff;
            --text-secondary: #9aa0a6;
            --text-disabled: #5f6368;
            --text-inverse: #000000;
            --link: #d4af37;
            --border-default: #2b2f36;
            --border-active: #d4af37;
            --border-subtle: #1e2329;
            --font-headings: 'Montserrat', 'Inter', sans-serif;
            --font-body: 'Inter', 'Roboto', sans-serif;
            --font-numbers: 'Oswald', sans-serif;
        }

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

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

        h1, h2, h3 {
            font-family: var(--font-headings);
            font-weight: 700;
            line-height: 1.2;
            color: var(--primary-gold);
        }

        h1 { font-size: 40px; margin-bottom: 20px; text-align: center; }
        h2 { font-size: 32px; margin: 30px 0 20px; text-align: center; }
        h3 { font-size: 20px; margin-bottom: 10px; }

        a {
            text-decoration: none;
            color: var(--link);
            transition: opacity 0.3s;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        header {
            background-color: var(--bg-secondary);
            padding: 10px 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-default);
        }

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

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

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

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

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

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

        .btn-register {
            background: var(--cta-gradient);
            color: var(--text-inverse);
        }

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

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

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

        .jackpot-label {
            font-family: var(--font-headings);
            font-size: 14px;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 5px;
        }

        .jackpot-amount {
            font-family: var(--font-numbers);
            font-size: 48px;
            font-weight: 900;
            color: var(--jackpot);
            display: flex;
            justify-content: center;
            gap: 2px;
        }

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

        .intro-section p {
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
        }

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

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

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

        .game-info {
            padding: 10px;
            text-align: center;
        }

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

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

        .article-card {
            display: flex;
            background: var(--bg-secondary);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
        }

        .article-image {
            width: 100px;
            min-width: 100px;
        }

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

        .article-content {
            padding: 12px;
        }

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

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

        .payment-section {
            padding: 30px 15px;
            background: var(--bg-secondary);
            margin: 20px 0;
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }

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

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

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

        .lottery-list {
            background: var(--bg-tertiary);
            border-radius: 12px;
            padding: 10px;
        }

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

        .lottery-item:last-child { border-bottom: none; }

        .lottery-user { color: var(--secondary-gold); font-weight: 600; }
        .lottery-game { color: var(--text-primary); }
        .lottery-win { color: var(--success); font-weight: 700; }

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

        .provider-block {
            background: var(--bg-tertiary);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            color: var(--text-secondary);
            border: 1px solid var(--border-default);
        }

        .reviews-section {
            padding: 30px 15px;
        }

        .review-card {
            background: var(--bg-secondary);
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 15px;
            border-left: 4px solid var(--primary-gold);
        }

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

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

        .review-user-info h4 {
            font-size: 16px;
            margin: 0;
        }

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

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

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

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

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

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

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

        .security-section {
            padding: 30px 15px;
            text-align: center;
            background: var(--bg-secondary);
            border-top: 2px solid var(--primary-gold);
        }

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

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

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }

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

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

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

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

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

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

        @keyframes rolling {
            0% { transform: translateY(0); }
            100% { transform: translateY(-5px); }
        }

        .rolling-digit {
            display: inline-block;
            animation: rolling 0.1s infinite alternate;
        }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .payment-grid { grid-template-columns: repeat(8, 1fr); }
            .providers-section { grid-template-columns: repeat(4, 1fr); }
        }