:root {
            --primary: #FFD700;
            --primary-dark: #B8860B;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --main-bg: #0B0B0B;
            --surface: #1A1A1A;
            --overlay: #2D2D2D;
            --contrast: #000000;
            --text-heading: #FFFFFF;
            --text-body: #E0E0E0;
            --text-muted: #A0A0A0;
            --text-inverse: #000000;
            --success: #00C853;
            --warning: #FFB300;
            --error: #FF5252;
            --info: #2196F3;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-subtle: #222222;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            background-color: var(--main-bg);
            color: var(--text-body);
            font-family: 'Open Sans', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-heading);
            font-weight: 700;
        }
        h1 { font-size: 32px; line-height: 1.2; margin-bottom: 1rem; }
        h2 { font-size: 24px; text-align: center; margin: 2rem 0 1.5rem; color: var(--primary); }
        h3 { font-size: 18px; margin-bottom: 0.5rem; }

        header {
            background-color: var(--surface);
            border-bottom: 2px solid var(--border-highlight);
            padding: 0 1rem;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .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: 4px;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 14px;
            border: none;
            transition: 0.3s;
        }
        .btn-login {
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }
        .btn-register {
            background: var(--primary);
            color: var(--text-inverse);
        }
        .btn:hover { opacity: 0.8; }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px 100px;
        }
        .main-banner {
            width: 100%;
            aspect-ratio: 2/1;
            object-fit: cover;
            border-radius: 12px;
            margin-top: 1rem;
            cursor: pointer;
            display: block;
        }
        .jackpot-container {
            background: linear-gradient(145deg, var(--surface), var(--contrast));
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin: 2rem 0;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label {
            font-family: 'Playfair Display', serif;
            color: var(--secondary);
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .jackpot-value {
            font-family: 'Montserrat', sans-serif;
            font-size: 48px;
            color: var(--primary);
            font-weight: 800;
            margin: 10px 0;
            text-shadow: 0 0 10px var(--primary-dark);
        }
        .intro-section {
            text-align: center;
            padding: 2rem 0;
            max-width: 800px;
            margin: 0 auto;
        }
        .intro-section p {
            color: var(--text-muted);
            font-size: 16px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 3rem;
        }
        .game-card {
            background: var(--surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-default);
            transition: transform 0.3s, border-color 0.3s;
        }
        .game-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }
        .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;
            color: var(--text-heading);
            margin: 0;
        }
        .article-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 3rem;
        }
        .article-card {
            background: var(--surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            display: flex;
            flex-direction: column;
            text-decoration: none;
        }
        .article-card img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .article-content {
            padding: 15px;
        }
        .article-content h3 {
            color: var(--primary);
            font-size: 18px;
            margin-bottom: 10px;
        }
        .article-content p {
            font-size: 14px;
            color: var(--text-muted);
        }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 3rem;
        }
        .payment-item {
            background: var(--surface);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border-subtle);
            color: var(--secondary);
            font-size: 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        .payment-item i {
            font-size: 24px;
            color: var(--primary);
        }
        .win-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--surface);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 3rem;
        }
        .win-table th, .win-table td {
            padding: 12px;
            text-align: center;
            border-bottom: 1px solid var(--border-default);
        }
        .win-table th {
            background: var(--overlay);
            color: var(--primary);
            font-family: 'Montserrat', sans-serif;
        }
        .provider-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 3rem;
        }
        .provider-block {
            background: var(--overlay);
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            font-weight: 700;
            font-size: 20px;
            color: var(--text-heading);
            border-left: 5px solid var(--primary);
        }
        .comment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 3rem;
        }
        .comment-card {
            background: var(--surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-default);
        }
        .comment-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }
        .comment-header i {
            font-size: 30px;
            color: var(--primary);
        }
        .comment-name {
            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-muted);
            margin-bottom: 10px;
        }
        .comment-date {
            font-size: 12px;
            color: var(--border-default);
            text-align: right;
        }
        .faq-section {
            margin-bottom: 3rem;
        }
        .faq-item {
            background: var(--surface);
            margin-bottom: 15px;
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-default);
        }
        .faq-item h3 {
            font-size: 18px;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .faq-item p {
            font-size: 15px;
            color: var(--text-body);
        }
        .security-section {
            background: var(--surface);
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--border-default);
            margin-bottom: 3rem;
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        .sec-icon {
            color: var(--success);
            font-size: 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            font-size: 14px;
        }
        .sec-icon i { font-size: 30px; }
        .security-text {
            font-size: 14px;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--surface);
            border-top: 2px solid var(--primary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            z-index: 1000;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-muted);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
            gap: 5px;
        }
        .nav-item i {
            font-size: 20px;
            color: var(--primary);
        }
        footer {
            background: var(--contrast);
            padding: 40px 20px 120px;
            text-align: center;
            border-top: 1px solid var(--border-default);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            max-width: 900px;
            margin: 0 auto 30px;
        }
        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 13px;
            transition: 0.3s;
        }
        .footer-links a:hover { color: var(--primary); }
        .copyright {
            color: var(--text-muted);
            font-size: 14px;
        }
        @media (max-width: 768px) {
            .payment-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
        }