:root {
            --primary: #D4AF37;
            --primary-hover: #F1C40F;
            --secondary: #8B0000;
            --accent: #FFD700;
            --bg-main: #0D0D0D;
            --bg-surface: #1A1A1A;
            --bg-overlay: #262626;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-brand: #D4AF37;
            --success: #2ECC71;
            --jackpot: #FF0000;
            --border-default: #333333;
            --font-headings: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
            --font-body: 'Inter', 'Roboto', sans-serif;
            --font-numbers: 'Oswald', sans-serif;
        }

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

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

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

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

        .header-left strong {
            font-family: var(--font-headings);
            font-size: 16px;
            font-weight: 400;
            color: var(--text-brand);
        }

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

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

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

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

        .hero-banner {
            width: 100%;
            cursor: pointer;
        }

        .hero-banner img {
            width: 100%;
            height: auto;
            aspect-ratio: 2 / 1;
            display: block;
        }

        .jackpot-container {
            background: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 100%);
            padding: 20px;
            text-align: center;
            border-bottom: 2px solid var(--secondary);
        }

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

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

        .content-section {
            padding: 24px 16px;
        }

        h1 {
            font-family: var(--font-headings);
            font-size: 24px;
            color: var(--primary);
            text-align: center;
            margin-bottom: 16px;
        }

        h2 {
            font-family: var(--font-headings);
            font-size: 20px;
            color: var(--text-primary);
            margin-bottom: 20px;
            border-left: 4px solid var(--primary);
            padding-left: 12px;
        }

        .intro-p {
            color: var(--text-secondary);
            font-size: 14px;
            text-align: justify;
            margin-bottom: 24px;
        }

        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 30px;
        }

        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            text-decoration: none;
            display: block;
        }

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

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

        .article-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 30px;
        }

        .article-card {
            display: flex;
            background: var(--bg-surface);
            border-radius: 8px;
            padding: 10px;
            gap: 12px;
            text-decoration: none;
        }

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

        .article-info h3 {
            font-size: 14px;
            color: var(--primary);
            margin: 0 0 4px 0;
        }

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

        .payment-section {
            background: var(--bg-surface);
            padding: 20px 16px;
            border-radius: 16px;
            margin-bottom: 30px;
        }

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

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

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

        .lottery-list {
            background: var(--bg-overlay);
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 30px;
        }

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

        .lottery-user { color: var(--accent); }
        .lottery-win { color: var(--success); font-weight: bold; }

        .providers-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 30px;
        }

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

        .review-card {
            background: var(--bg-surface);
            padding: 16px;
            border-radius: 12px;
            margin-bottom: 16px;
            border-left: 3px solid var(--primary);
        }

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

        .review-user-icon {
            color: var(--text-secondary);
            font-size: 20px;
        }

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

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

        .faq-q {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 8px;
            font-size: 15px;
        }

        .faq-a {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .security-section {
            text-align: center;
            padding: 20px;
            background: var(--bg-overlay);
            border-radius: 12px;
            margin-bottom: 40px;
        }

        .security-icons {
            font-size: 30px;
            color: var(--success);
            margin-bottom: 15px;
        }

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

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

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

        .nav-item:nth-child(3) i {
            color: var(--primary);
        }

        footer {
            padding: 30px 16px 100px 16px;
            background: #000;
            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: 12px;
        }

        .copyright {
            text-align: center;
            font-size: 11px;
            color: var(--text-disabled);
            border-top: 1px solid var(--border-default);
            padding-top: 20px;
        }