:root {
            --primary: #FFD700;
            --primary-variant: #C5A000;
            --secondary: #D32F2F;
            --accent: #FFAB00;
            --bg-main: #0A0A0A;
            --bg-surface: #121212;
            --bg-elevated: #1E1E1E;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --border-default: #333333;
            --heading-font: 'Montserrat', 'Inter', sans-serif;
            --body-font: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
        }

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

        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--body-font);
            line-height: 1.5;
            padding-bottom: 70px;
        }

        h1, h2, h3 {
            font-family: var(--heading-font);
            font-weight: 700;
            color: var(--primary);
        }

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

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        header {
            background-color: var(--bg-surface);
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }

        .nav-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-box {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo-box img {
            width: 25px;
            height: 25px;
        }

        .logo-box strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--text-primary);
        }

        .auth-buttons {
            display: flex;
            gap: 10px;
        }

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

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

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

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

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

        .jackpot-section {
            background: linear-gradient(180deg, #1E1E1E 0%, #0A0A0A 100%);
            padding: 20px;
            text-align: center;
            margin: 15px 0;
            border: 1px solid var(--primary-variant);
            border-radius: 8px;
        }

        .jackpot-amount {
            font-size: 32px;
            font-weight: 900;
            color: var(--primary);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
            display: block;
        }

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

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

        .intro-section h1 {
            font-size: 24px;
            margin-bottom: 15px;
        }

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

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

        .section-title::before {
            content: '';
            width: 4px;
            height: 20px;
            background-color: var(--secondary);
            display: inline-block;
        }

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

        .game-card {
            background-color: var(--bg-surface);
            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;
            display: block;
        }

        .game-card h3 {
            font-size: 14px;
            padding: 10px;
            text-align: center;
            color: var(--text-primary);
        }

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

        .article-card {
            display: flex;
            gap: 15px;
            background: var(--bg-elevated);
            padding: 10px;
            border-radius: 8px;
        }

        .article-card img {
            width: 80px;
            height: 80px;
            border-radius: 4px;
            object-fit: cover;
        }

        .article-info h2 {
            font-size: 16px;
            margin-bottom: 5px;
            color: var(--primary);
        }

        .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: 20px 15px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }

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

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

        .winners-box {
            margin: 15px;
            background: var(--bg-surface);
            border-radius: 8px;
            padding: 15px;
            border: 1px solid var(--border-default);
        }

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

        .winner-row:last-child { border: none; }

        .winner-name { color: var(--accent); }
        .winner-prize { color: var(--primary); font-weight: bold; }

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

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

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

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

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

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

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

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

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

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

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

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

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

        .nav-item {
            text-align: center;
            color: var(--text-secondary);
            font-size: 11px;
        }

        .nav-item i {
            display: block;
            font-size: 20px;
            margin-bottom: 2px;
        }

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

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

        .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-secondary);
            border-top: 1px solid var(--border-default);
            padding-top: 20px;
        }

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