:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #1E1E1E;
            --accent: #D4AF37;
            --bg-main: #0B0E11;
            --bg-layer: #161A1E;
            --bg-modal: #1C1F23;
            --bg-card: #1F2327;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-muted: #65676B;
            --text-accent: #FFD700;
            --text-inv: #000000;
            --success: #00C853;
            --error: #FF5252;
            --warning: #FFD600;
            --info: #2979FF;
            --border-default: #2C2F33;
            --border-active: #FFD700;
            --border-subtle: #1C1F23;
            --font-main: 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            --font-display: 'Montserrat', 'Oswald', sans-serif;
        }

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

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

        h1, h2, h3 {
            font-family: var(--font-display);
            font-weight: 700;
            line-height: 1.2;
        }

        h1 { font-size: 40px; margin-bottom: 20px; color: var(--primary); }
        h2 { font-size: 32px; margin: 30px 0 20px; text-align: center; }
        h3 { font-size: 18px; margin: 10px 0; }

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

        header {
            background-color: var(--bg-layer);
            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 var(--border-default);
        }

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

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

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

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

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

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

        .btn-register {
            background-color: var(--primary);
            color: var(--text-inv);
        }

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

        main { padding-bottom: 80px; }

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

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

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

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

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

        .intro-section {
            padding: 40px 20px;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

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

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

        .game-card {
            background-color: var(--bg-card);
            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-info {
            padding: 10px;
            text-align: center;
        }

        .article-section {
            padding: 20px 15px;
            background-color: var(--bg-layer);
        }

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

        .article-card {
            display: flex;
            background-color: var(--bg-card);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-default);
        }

        .article-img {
            width: 120px;
            min-width: 120px;
            height: 120px;
            object-fit: cover;
        }

        .article-content {
            padding: 15px;
        }

        .article-content h3 {
            font-size: 16px;
            margin-top: 0;
            color: var(--primary);
        }

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

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

        .payment-item {
            background-color: var(--bg-card);
            padding: 15px 5px;
            border-radius: 8px;
            border: 1px solid var(--border-subtle);
        }

        .payment-item i {
            font-size: 24px;
            color: var(--accent);
            margin-bottom: 8px;
            display: block;
        }

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

        .winning-records {
            background-color: var(--bg-layer);
            margin: 40px 15px;
            border-radius: 15px;
            padding: 20px;
            border: 1px solid var(--accent);
        }

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

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

        .record-user { color: var(--primary); font-weight: 600; }

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

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

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

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

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

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

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

        .stars { color: var(--warning); margin-bottom: 10px; }

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

        .review-date { font-size: 12px; color: var(--text-muted); margin-top: 10px; }

        .faq-section {
            padding: 20px 15px;
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background-color: var(--bg-layer);
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-default);
        }

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

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

        .security-section {
            padding: 40px 15px;
            text-align: center;
            background-color: var(--bg-layer);
            border-top: 1px solid var(--border-default);
        }

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

        .security-text {
            font-size: 13px;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        .security-links a {
            color: var(--info);
            text-decoration: underline;
        }

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

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

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

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

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

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

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

        .footer-copy {
            font-size: 12px;
            color: var(--text-muted);
        }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .providers-grid { grid-template-columns: repeat(4, 1fr); }
            .article-list { flex-direction: row; flex-wrap: wrap; justify-content: center; }
            .article-card { width: 48%; }
        }