:root {
            --primary: #FFD700;
            --primary-dark: #C5A000;
            --secondary: #8B0000;
            --accent: #FF4500;
            --main-bg: #0B0B0B;
            --surface-bg: #1A1A1A;
            --overlay-bg: #262626;
            --gradient-start: #1a1a1a;
            --gradient-end: #000000;
            --text-heading: #FFFFFF;
            --text-body: #E0E0E0;
            --text-muted: #A0A0A0;
            --text-inverse: #000000;
            --success: #00C851;
            --error: #FF4444;
            --warning: #FFBB33;
            --info: #33B5E5;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-muted: #222222;
            --font-primary: 'Poppins', sans-serif;
            --font-secondary: 'Montserrat', sans-serif;
            --font-accent: 'Roboto Condensed', sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--main-bg);
            color: var(--text-body);
            font-family: var(--font-primary);
            line-height: 1.5;
            overflow-x: hidden;
        }

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

        .logo-container { display: flex; align-items: center; gap: 10px; text-decoration: none; }
        .logo-container img { width: 25px; height: 25px; }
        .logo-container strong { color: var(--text-heading); font-size: 16px; font-weight: normal; }

        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 18px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: 0.3s;
            border: none;
            font-family: var(--font-secondary);
        }
        .btn-login { background: var(--overlay-bg); color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: var(--text-inverse); }
        .btn:hover { opacity: 0.8; transform: translateY(-2px); }

        main { max-width: 1200px; margin: 0 auto; padding: 20px; }

        .main-banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
            cursor: pointer;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .main-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: linear-gradient(45deg, var(--secondary), #000);
            padding: 20px;
            text-align: center;
            border-radius: 15px;
            margin-bottom: 30px;
            border: 2px solid var(--primary);
        }
        .jackpot-title { color: var(--primary); font-size: 1.2rem; font-weight: bold; text-transform: uppercase; }
        .jackpot-number {
            font-family: var(--font-accent);
            font-size: 3rem;
            color: #FFF;
            font-weight: bold;
            text-shadow: 0 0 10px var(--primary);
            margin: 10px 0;
        }

        .intro-section { text-align: center; margin-bottom: 40px; padding: 0 10px; }
        .intro-section h1 { font-size: 2.5rem; color: var(--text-heading); margin-bottom: 20px; line-height: 1.2; }
        .intro-section p { color: var(--text-muted); font-size: 1.1rem; max-width: 800px; margin: 0 auto; }

        .section-title {
            color: var(--text-heading);
            font-size: 1.8rem;
            margin: 40px 0 20px;
            border-left: 5px solid var(--primary);
            padding-left: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .game-card {
            background: var(--surface-bg);
            border-radius: 15px;
            overflow: hidden;
            text-decoration: none;
            transition: 0.3s;
            border: 1px solid var(--border-default);
            text-align: center;
        }
        .game-card:hover { border-color: var(--primary); transform: scale(1.03); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
        .game-card h3 { color: var(--text-heading); padding: 15px; font-size: 1rem; }

        .article-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        .article-card {
            background: var(--surface-bg);
            border-radius: 15px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-default);
            transition: 0.3s;
        }
        .article-card:hover { background: var(--overlay-bg); border-color: var(--primary); }
        .article-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
        .article-content { padding: 20px; }
        .article-content h3 { color: var(--text-heading); margin-bottom: 10px; font-size: 1.1rem; }
        .article-content p { color: var(--text-muted); font-size: 0.9rem; }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 15px;
            margin-bottom: 40px;
        }
        .payment-item {
            background: var(--overlay-bg);
            padding: 20px;
            text-align: center;
            border-radius: 10px;
            border: 1px solid var(--border-muted);
            color: var(--text-heading);
            font-weight: 500;
        }
        .payment-item i { display: block; font-size: 2rem; color: var(--primary); margin-bottom: 10px; }

        .win-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--surface-bg);
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 40px;
        }
        .win-table th, .win-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid var(--border-muted);
        }
        .win-table th { background: var(--overlay-bg); color: var(--primary); }
        .win-table td { color: var(--text-body); }
        .win-amount { color: var(--success); font-weight: bold; }

        .provider-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }
        .provider-item {
            padding: 25px;
            text-align: center;
            border-radius: 15px;
            font-weight: bold;
            font-size: 1.2rem;
            color: #FFF;
            background: linear-gradient(135deg, var(--secondary), var(--main-bg));
            border: 1px solid var(--primary);
        }

        .comment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .comment-card {
            background: var(--surface-bg);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-default);
        }
        .comment-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
        .comment-header i { font-size: 2.5rem; color: var(--primary); }
        .comment-name { font-weight: bold; color: var(--text-heading); }
        .comment-stars { color: var(--primary); margin: 5px 0; }
        .comment-text { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 10px; }
        .comment-date { font-size: 0.8rem; color: var(--text-muted); }

        .faq-container {
            display: grid;
            gap: 15px;
            margin-bottom: 40px;
        }
        .faq-item {
            background: var(--surface-bg);
            border: 1px solid var(--border-default);
            border-radius: 10px;
            padding: 20px;
        }
        .faq-item h3 { color: var(--primary); margin-bottom: 10px; font-size: 1.1rem; }
        .faq-item p { color: var(--text-body); font-size: 0.95rem; }

        .security-box {
            background: var(--surface-bg);
            border: 1px solid var(--primary);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 40px;
        }
        .security-box i { font-size: 3rem; color: var(--success); margin-bottom: 20px; }
        .security-box h3 { color: var(--text-heading); margin-bottom: 15px; }
        .security-box p { color: var(--text-muted); margin-bottom: 20px; max-width: 700px; margin-left: auto; margin-right: auto; }
        .security-box a { color: var(--primary); text-decoration: none; font-weight: bold; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--surface-bg);
            border-top: 2px solid var(--primary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            z-index: 2000;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-muted);
            text-align: center;
            font-size: 0.75rem;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        .nav-item i { font-size: 1.2rem; color: var(--primary); }

        footer {
            background: var(--surface-bg);
            padding: 40px 20px 100px;
            text-align: center;
            border-top: 1px solid var(--border-default);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.85rem;
            transition: 0.3s;
        }
        .footer-links a:hover { color: var(--primary); }
        .copyright { color: var(--text-muted); font-size: 0.9rem; }

        @media (max-width: 768px) {
            .intro-section h1 { font-size: 1.8rem; }
            .jackpot-number { font-size: 2rem; }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
        }