:root {
            --bg-primary: #0a0a0a;
            --bg-secondary: #141414;
            --bg-surface: #1e1e1e;
            --overlay: rgba(0, 0, 0, 0.85);
            --gold-primary: #d4af37;
            --gold-secondary: #f9e076;
            --accent-red: #b30000;
            --deep-blue: #001f3f;
            --success: #28a745;
            --text-primary: #ffffff;
            --text-secondary: #b0b0b0;
            --text-muted: #6c757d;
            --border-light: #333333;
            --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-display: 'Montserrat', 'Poppins', sans-serif;
        }

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

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

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

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

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

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

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

        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }

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

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

        main {
            padding-bottom: 80px;
        }

        .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(180deg, var(--deep-blue), var(--bg-primary));
            padding: 20px;
            text-align: center;
            border-bottom: 2px solid var(--gold-primary);
        }

        .jackpot-label {
            color: var(--gold-secondary);
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.875rem;
            margin-bottom: 5px;
            text-transform: uppercase;
        }

        .jackpot-amount {
            font-family: 'Roboto Mono', monospace;
            font-size: 2rem;
            font-weight: 900;
            color: var(--text-primary);
            text-shadow: 0 0 10px var(--gold-primary);
        }

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

        .intro-section h1 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            color: var(--gold-primary);
            margin-bottom: 15px;
        }

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

        .section-title {
            padding: 20px 15px 10px;
            font-family: var(--font-display);
            font-size: 1.25rem;
            color: var(--gold-secondary);
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

        .card {
            background-color: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-light);
            text-decoration: none;
            transition: transform 0.2s;
        }

        .card:active {
            transform: scale(0.98);
        }

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

        .card-info {
            padding: 10px;
        }

        .card-info h3 {
            font-size: 0.875rem;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

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

        .article-card {
            display: flex;
            background-color: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-light);
        }

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

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

        .article-content h3 {
            font-size: 0.9rem;
            color: var(--gold-primary);
            margin-bottom: 5px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

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

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

        .payment-item {
            background-color: var(--bg-surface);
            padding: 10px 5px;
            border-radius: 8px;
            border: 1px solid var(--border-light);
        }

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

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

        .winning-ticker {
            background-color: var(--bg-secondary);
            margin: 15px;
            padding: 10px;
            border-radius: 10px;
            border-left: 4px solid var(--success);
            max-height: 250px;
            overflow-y: auto;
        }

        .winning-item {
            padding: 8px 0;
            border-bottom: 1px solid var(--border-light);
            font-size: 0.8rem;
            display: flex;
            justify-content: space-between;
        }

        .winner-name { color: var(--gold-secondary); }
        .win-amount { color: var(--success); font-weight: bold; }

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

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

        .reviews-section {
            padding: 15px;
        }

        .review-card {
            background-color: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border: 1px solid var(--border-light);
        }

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

        .review-header i {
            font-size: 1.5rem;
            color: var(--gold-primary);
        }

        .review-user { font-weight: 600; font-size: 0.9rem; }

        .stars { color: #ffcc00; font-size: 0.8rem; }

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

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

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

        .faq-item h3 {
            font-size: 0.95rem;
            color: var(--gold-primary);
            margin-bottom: 8px;
        }

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

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

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

        .security-text {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

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

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

        .nav-item i {
            display: block;
            font-size: 1.2rem;
            margin-bottom: 3px;
        }

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

        footer {
            background-color: var(--bg-primary);
            padding: 30px 15px 100px;
            text-align: center;
            border-top: 1px solid var(--border-light);
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.8rem;
        }

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

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