:root {
            --primary: #FFD700;
            --primary-dark: #B8860B;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --highlight: #FFFFFF;
            --main-bg: #0F0F0F;
            --surface-bg: #1A1A1A;
            --overlay-bg: rgba(0, 0, 0, 0.8);
            --card-bg: #262626;
            --text-heading: #FFFFFF;
            --text-body: #E0E0E0;
            --text-muted: #A0A0A0;
            --on-brand: #000000;
            --link-color: #FFD700;
            --success: #28A745;
            --warning: #FFC107;
            --error: #DC3545;
            --info: #17A2B8;
            --border-default: #333333;
            --border-active: #FFD700;
            --border-subtle: #444444;
        }

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

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

        h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-heading);
            font-weight: 700;
            text-align: center;
        }

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

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

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

        .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-weight: 600;
            font-family: 'Roboto', sans-serif;
            transition: 0.3s;
            border: none;
            font-size: 14px;
        }

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

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

        .main-banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            object-fit: cover;
            border-radius: 15px;
            margin-top: 20px;
            cursor: pointer;
            display: block;
        }

        .jackpot-section {
            background: linear-gradient(45deg, #B8860B, #FFD700);
            color: var(--on-brand);
            text-align: center;
            padding: 20px;
            border-radius: 15px;
            margin: 20px 0;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
        }

        .jackpot-title { font-weight: 700; font-size: 18px; text-transform: uppercase; }
        .jackpot-amount {
            font-size: 40px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            display: block;
            margin: 10px 0;
        }

        .intro-section {
            text-align: center;
            padding: 40px 0;
            max-width: 800px;
            margin: 0 auto;
        }

        .intro-section p {
            color: var(--text-body);
            font-size: 16px;
            line-height: 1.8;
        }

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

        .game-card {
            background: var(--card-bg);
            border-radius: 12px;
            text-decoration: none;
            overflow: hidden;
            transition: 0.3s;
            border: 1px solid var(--border-default);
            display: flex;
            flex-direction: column;
        }

        .game-card:hover {
            border-color: var(--primary);
            transform: scale(1.02);
        }

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

        .game-info {
            padding: 12px;
            text-align: center;
        }

        .game-info h3 {
            font-size: 16px;
            margin: 0;
            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: var(--surface-bg);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            text-decoration: none;
            color: inherit;
            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 { text-align: left; font-size: 18px; margin-bottom: 10px; color: var(--primary); }
        .article-content p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

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

        .payment-item {
            background: var(--card-bg);
            padding: 15px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            border: 1px solid var(--border-subtle);
            color: var(--text-heading);
        }

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

        .win-records {
            background: var(--surface-bg);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 40px;
            border: 1px solid var(--border-default);
        }

        .win-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }

        .win-table th {
            text-align: left;
            padding: 12px;
            color: var(--primary);
            border-bottom: 1px solid var(--border-subtle);
        }

        .win-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: var(--card-bg);
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            font-weight: 700;
            font-size: 18px;
            border-left: 5px solid var(--primary);
            color: var(--text-heading);
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        }

        .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: 12px;
            border: 1px solid var(--border-subtle);
        }

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

        .comment-header i { font-size: 30px; color: var(--primary); }
        .comment-user { font-weight: 600; color: var(--text-heading); }
        .comment-stars { color: var(--warning); font-size: 14px; margin-bottom: 10px; }
        .comment-body { font-size: 14px; color: var(--text-body); margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-muted); }

        .faq-section {
            margin-bottom: 40px;
        }

        .faq-item {
            background: var(--card-bg);
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
        }

        .faq-question {
            padding: 15px 20px;
            background: var(--surface-bg);
            color: var(--primary);
            font-weight: 600;
            cursor: pointer;
            display: block;
        }

        .faq-answer {
            padding: 15px 20px;
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.6;
        }

        .safety-section {
            background: var(--surface-bg);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--border-subtle);
            margin-bottom: 40px;
        }

        .safety-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .safety-icons i { font-size: 40px; color: var(--primary); }
        .safety-text { font-size: 14px; color: var(--text-muted); max-width: 700px; margin: 0 auto; }
        .safety-text a { color: var(--primary); text-decoration: underline; }

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

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

        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--primary); }

        footer {
            background: var(--surface-bg);
            padding: 40px 20px 100px;
            border-top: 1px solid var(--border-default);
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            text-align: center;
            margin-bottom: 30px;
        }

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

        .footer-links a:hover { color: var(--primary); }
        .footer-copy {
            text-align: center;
            font-size: 14px;
            color: var(--text-muted);
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
        }

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