:root {
            --primary: #FFD700;
            --primary-dark: #B8860B;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-overlay: #2C2C2C;
            --bg-contrast: #000000;
            --text-heading: #FFFFFF;
            --text-body: #E0E0E0;
            --text-muted: #A0A0A0;
            --text-inverse: #000000;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #FF5252;
            --info: #2196F3;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-subtle: #262626;
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Roboto', sans-serif;
            --font-heading: 'Poppins', sans-serif;
        }

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

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

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

        a {
            text-decoration: none;
            color: inherit;
            transition: 0.3s;
        }

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

        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-highlight);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .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 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            font-family: var(--font-primary);
            border: none;
            transition: 0.3s;
        }

        .btn-login {
            background-color: var(--bg-overlay);
            color: var(--text-heading);
            border: 1px solid var(--border-default);
        }

        .btn-register {
            background-color: var(--primary);
            color: var(--text-inverse);
        }

        .btn:hover {
            opacity: 0.8;
            transform: translateY(-2px);
        }

        .banner-section {
            margin: 20px 0;
        }

        .main-banner {
            width: 100%;
            aspect-ratio: 2/1;
            object-fit: cover;
            border-radius: 15px;
            cursor: pointer;
            border: 2px solid var(--border-subtle);
        }

        .jackpot-banner {
            background: linear-gradient(45deg, var(--bg-contrast), var(--bg-surface), var(--bg-contrast));
            padding: 30px;
            text-align: center;
            border-radius: 15px;
            margin: 20px 0;
            border: 1px solid var(--border-highlight);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }

        .jackpot-title {
            color: var(--primary);
            font-size: 18px;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .jackpot-number {
            font-family: var(--font-heading);
            font-size: 42px;
            font-weight: bold;
            color: #fff;
            text-shadow: 0 0 10px var(--primary);
        }

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

        .intro-section h1 {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--primary);
        }

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

        .section-title {
            font-size: 24px;
            text-align: center;
            margin: 40px 0 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--primary);
        }

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

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

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

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

        .game-card h3 {
            padding: 12px;
            font-size: 14px;
            text-align: center;
            color: var(--text-heading);
        }

        .article-grid {
            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);
            display: flex;
            flex-direction: column;
        }

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

        .article-content {
            padding: 20px;
        }

        .article-content h3 {
            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: 15px;
            margin: 30px 0;
        }

        .payment-item {
            background-color: var(--bg-surface);
            padding: 15px;
            text-align: center;
            border-radius: 10px;
            border: 1px solid var(--border-subtle);
            color: var(--text-heading);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

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

        .win-list {
            background-color: var(--bg-surface);
            border-radius: 15px;
            padding: 20px;
            margin: 30px 0;
            border: 1px solid var(--border-subtle);
        }

        .win-item {
            display: grid;
            grid-template-columns: 2fr 3fr 2fr 2fr;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 14px;
        }

        .win-item:last-child {
            border-bottom: none;
        }

        .win-header {
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 10px;
        }

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

        .provider-card {
            background: linear-gradient(135deg, var(--bg-surface), var(--bg-overlay));
            padding: 30px;
            text-align: center;
            border-radius: 12px;
            font-weight: bold;
            font-size: 20px;
            border: 1px solid var(--border-subtle);
            color: var(--text-heading);
        }

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

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

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

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

        .comment-user {
            font-weight: bold;
            color: var(--text-heading);
        }

        .comment-rating {
            color: var(--primary);
            font-size: 12px;
            margin-bottom: 10px;
        }

        .comment-body {
            font-size: 14px;
            color: var(--text-body);
            font-style: italic;
        }

        .comment-date {
            display: block;
            margin-top: 10px;
            font-size: 12px;
            color: var(--text-muted);
        }

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

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

        .faq-question {
            padding: 15px 20px;
            background-color: var(--bg-overlay);
            color: var(--text-heading);
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

        .safety-section {
            background-color: var(--bg-surface);
            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-icon-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            color: var(--text-heading);
            font-size: 12px;
        }

        .safety-icon-item i {
            font-size: 24px;
            color: var(--success);
        }

        .safety-text {
            font-size: 14px;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto 15px;
        }

        .safety-link {
            color: var(--primary);
            text-decoration: underline;
        }

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

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

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

        footer {
            background-color: var(--bg-contrast);
            padding: 40px 0 100px;
            border-top: 1px solid var(--border-subtle);
            text-align: center;
        }

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

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

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

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

        @media (max-width: 768px) {
            .payment-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
            .win-item {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .win-header {
                display: none;
            }
            .intro-section h1 {
                font-size: 24px;
            }
            .jackpot-number {
                font-size: 28px;
            }
        }