:root {
            --primary: #FFD700;
            --primary-dark: #B8860B;
            --secondary: #E60012;
            --accent: #00FFC8;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-elevated: #2D2D2D;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --text-heading: #FFFFFF;
            --text-body: #CCCCCC;
            --text-muted: #888888;
            --text-on-brand: #000000;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #FF5252;
            --info: #2196F3;
            --border-subtle: #333333;
            --border-medium: #444444;
            --border-strong: #FFD700;
        }

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

        body {
            background-color: var(--bg-main);
            color: var(--text-body);
            font-family: 'Roboto', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: 'Poppins', sans-serif;
            color: var(--text-heading);
            line-height: 1.2;
        }

        h1 { font-size: 32px; text-align: center; margin-bottom: 20px; color: var(--primary); }
        h2 { font-size: 24px; text-align: center; margin: 40px 0 20px; color: var(--primary); text-transform: uppercase; }
        h3 { font-size: 18px; font-weight: 600; }

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

        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: inherit;
        }

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

        .logo-area strong {
            font-size: 16px;
            font-weight: normal;
            color: var(--text-heading);
        }

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

        .btn {
            padding: 8px 16px;
            border-radius: 5px;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            border: none;
            transition: 0.3s;
            text-decoration: none;
            font-size: 14px;
        }

        .btn-login { background-color: var(--bg-elevated); color: var(--text-heading); border: 1px solid var(--border-medium); }
        .btn-register { background-color: var(--primary); color: var(--text-on-brand); }
        .btn:hover { opacity: 0.8; transform: translateY(-2px); }

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

        .main-banner {
            width: 100%;
            aspect-ratio: 2/1;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid var(--border-medium);
            margin-bottom: 30px;
        }

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

        .jackpot-section {
            background: linear-gradient(145deg, var(--bg-surface), var(--bg-elevated));
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }

        .jackpot-title {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .jackpot-amount {
            font-family: 'Poppins', sans-serif;
            font-size: 40px;
            font-weight: 700;
            color: var(--primary);
            text-shadow: 0 0 10px var(--primary);
        }

        .intro-section {
            text-align: center;
            margin-bottom: 40px;
            padding: 0 10px;
        }

        .intro-section p {
            font-size: 16px;
            color: var(--text-body);
            max-width: 800px;
            margin: 0 auto;
        }

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

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

        .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 {
            padding: 12px;
            font-size: 15px;
            text-align: center;
            color: var(--text-heading);
        }

        .article-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

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

        .article-card:hover { border-color: var(--primary); }

        .article-card img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
        }

        .article-content { padding: 15px; }
        .article-content h3 { font-size: 17px; margin-bottom: 10px; color: var(--primary); }
        .article-content p { font-size: 14px; color: var(--text-muted); }

        .payment-license-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 40px;
        }

        .pl-card {
            background-color: var(--bg-surface);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid var(--border-subtle);
            color: var(--text-heading);
            font-size: 13px;
        }

        .pl-card i {
            display: block;
            font-size: 24px;
            margin-bottom: 8px;
            color: var(--primary);
        }

        .win-record-table {
            width: 100%;
            border-collapse: collapse;
            background-color: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 40px;
            font-size: 14px;
        }

        .win-record-table th {
            background-color: var(--bg-elevated);
            color: var(--primary);
            padding: 12px;
            text-align: left;
        }

        .win-record-table td {
            padding: 12px;
            border-bottom: 1px solid var(--border-subtle);
        }

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

        .provider-item {
            background-color: var(--bg-elevated);
            padding: 20px;
            text-align: center;
            border-radius: 12px;
            font-weight: bold;
            color: var(--text-heading);
            border: 1px solid var(--border-medium);
        }

        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .review-card {
            background-color: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-subtle);
        }

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

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

        .review-name { font-weight: 600; color: var(--text-heading); }
        .review-stars { color: var(--warning); font-size: 12px; margin-bottom: 10px; }
        .review-text { font-size: 14px; color: var(--text-body); margin-bottom: 10px; }
        .review-date { font-size: 12px; color: var(--text-muted); }

        .faq-container {
            max-width: 800px;
            margin: 0 auto 40px;
        }

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

        .faq-item h3 {
            font-size: 17px;
            margin-bottom: 10px;
            color: var(--primary);
        }

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

        .security-footer {
            text-align: center;
            background-color: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid var(--border-medium);
            margin-bottom: 40px;
        }

        .security-footer i {
            font-size: 40px;
            color: var(--success);
            margin-bottom: 15px;
        }

        .security-footer p {
            font-size: 14px;
            margin-bottom: 10px;
        }

        .security-footer a {
            color: var(--primary);
            text-decoration: none;
        }

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

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

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

        footer {
            background-color: var(--bg-surface);
            padding: 40px 20px 120px;
            text-align: center;
            border-top: 1px solid var(--border-subtle);
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            max-width: 1000px;
            margin: 0 auto 30px;
        }

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

        .footer-links a:hover { color: var(--primary); }

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

        @media (max-width: 768px) {
            .payment-license-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            h1 { font-size: 24px; }
            .jackpot-amount { font-size: 28px; }
        }