:root {
            --brand-gold: #D4AF37;
            --brand-gold-light: #F9E076;
            --brand-gold-dark: #996515;
            --accent-red: #E63946;
            --accent-red-hover: #C1121F;
            --bg-main: #0B0C10;
            --bg-surface: #1F2833;
            --bg-surface-elevated: #2E3944;
            --text-high: #FFFFFF;
            --text-medium: #C5C6C7;
            --border-default: #45A29E;
            --border-gold-divider: rgba(212, 175, 55, 0.3);
            --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-accent: 'Montserrat', 'Oswald', sans-serif;
        }

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

        body {
            background-color: var(--bg-main);
            color: var(--text-high);
            font-family: var(--font-primary);
            line-height: 1.5;
            -webkit-tap-highlight-color: transparent;
        }

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

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

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

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

        .header-left strong {
            font-size: 16px;
            font-weight: 500;
            color: var(--brand-gold);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

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

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

        .btn:active {
            transform: scale(0.95);
        }

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

        .btn-register {
            background-color: var(--brand-gold);
            color: var(--bg-main);
        }

        .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: linear-gradient(135deg, var(--bg-surface-elevated), var(--bg-surface));
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--border-gold-divider);
            box-shadow: 0 4px 15px rgba(0,0,0,0.5);
        }

        .jackpot-label {
            color: var(--brand-gold-light);
            font-size: 14px;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 5px;
            display: block;
        }

        #jackpot-amount {
            font-family: var(--font-accent);
            font-size: 32px;
            font-weight: 900;
            color: var(--brand-gold);
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }

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

        .intro-section h1 {
            font-size: 24px;
            color: var(--brand-gold);
            margin-bottom: 12px;
            line-height: 1.2;
        }

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

        .section-title {
            padding: 0 20px;
            margin: 25px 0 15px;
            font-family: var(--font-accent);
            font-size: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--brand-gold-light);
        }

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

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

        .game-card {
            background-color: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-gold-divider);
            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;
        }

        .game-info h3 {
            font-size: 13px;
            color: var(--text-high);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

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

        .article-card {
            display: flex;
            background-color: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border-bottom: 2px solid var(--brand-gold);
        }

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

        .article-content {
            padding: 12px;
            flex: 1;
        }

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

        .article-content p {
            font-size: 12px;
            color: var(--text-medium);
            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: 15px;
            background-color: var(--bg-surface-elevated);
            margin: 15px;
            border-radius: 12px;
        }

        .payment-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 10px;
            color: var(--text-medium);
            text-align: center;
        }

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

        .lottery-ticker {
            height: 150px;
            overflow: hidden;
            background-color: var(--bg-surface);
            margin: 15px;
            border-radius: 12px;
            padding: 10px;
            border: 1px solid var(--border-gold-divider);
            position: relative;
        }

        .lottery-scroll {
            animation: scrollUp 20s linear infinite;
        }

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

        .winner-record {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            font-size: 12px;
        }

        .winner-name { color: var(--brand-gold-light); }
        .winner-amount { color: var(--semantic-success, #00C853); font-weight: bold; }

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

        .provider-block {
            background-color: var(--bg-surface-elevated);
            height: 60px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--text-medium);
            border: 1px solid rgba(255,255,255,0.05);
        }

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

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

        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .user-meta {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .stars { color: #FFAB00; font-size: 12px; }

        .faq-section {
            padding: 15px;
        }

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

        .faq-item h3 {
            font-size: 14px;
            color: var(--brand-gold-light);
            margin-bottom: 8px;
        }

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

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

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

        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background-color: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-gold-divider);
            z-index: 1000;
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
            color: var(--text-medium);
        }

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

        .nav-item.active i, .nav-item.active {
            color: var(--brand-gold);
        }

        footer {
            padding: 30px 15px 100px;
            background-color: var(--bg-main);
            color: var(--text-medium);
            text-align: center;
        }

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

        .footer-links a {
            font-size: 13px;
        }

        .copyright {
            font-size: 12px;
            border-top: 1px solid var(--border-gold-divider);
            padding-top: 15px;
        }