:root {
            --primary: #FFD700;
            --primary-dark: #B8860B;
            --secondary: #E60012;
            --accent: #00FFC8;
            --main-bg: #0B0B0B;
            --surface-bg: #1A1A1A;
            --overlay-bg: #2D2D2D;
            --gradient-start: #1A1A1A;
            --gradient-end: #000000;
            --text-heading: #FFFFFF;
            --text-body: #CCCCCC;
            --text-muted: #888888;
            --on-brand: #000000;
            --success: #28A745;
            --error: #DC3545;
            --warning: #FFC107;
            --info: #17A2B8;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-subtle: #222222;
        }

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

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

        header {
            background: var(--surface-bg);
            border-bottom: 1px solid var(--border-default);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 10px 20px;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .brand-box {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--text-heading);
        }

        .brand-logo {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }

        .brand-name {
            font-size: 16px;
            font-weight: normal;
        }

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

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

        .btn-login {
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }

        .btn-login:hover {
            background: var(--primary);
            color: var(--on-brand);
        }

        .btn-register {
            background: var(--primary);
            color: var(--on-brand);
        }

        .btn-register:hover {
            background: var(--primary-dark);
        }

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

        .banner-container {
            width: 100%;
            margin-bottom: 20px;
            cursor: pointer;
        }

        .banner-img {
            width: 100%;
            aspect-ratio: 2/1;
            object-fit: cover;
            border-radius: 16px;
            display: block;
        }

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

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

        .jackpot-amount {
            font-family: 'Montserrat', sans-serif;
            font-size: 48px;
            font-weight: 700;
            color: var(--text-heading);
            display: block;
        }

        .rolling-number {
            display: inline-block;
            animation: roll 2s infinite linear;
        }

        @keyframes roll {
            0% { transform: translateY(0); }
            100% { transform: translateY(-10px); }
        }

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

        .intro-section h1 {
            font-size: 32px;
            color: var(--text-heading);
            margin-bottom: 15px;
            line-height: 1.2;
        }

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

        .section-title {
            font-size: 24px;
            color: var(--text-heading);
            margin: 30px 0 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-title::before {
            content: '';
            width: 4px;
            height: 24px;
            background: var(--primary);
            display: inline-block;
        }

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

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

        .game-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
        }

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

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

        .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;
            text-decoration: none;
            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: 15px;
        }

        .article-card h3 {
            font-size: 18px;
            color: var(--primary);
            margin-bottom: 10px;
        }

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

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

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

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

        .lottery-table {
            width: 100%;
            background: var(--surface-bg);
            border-collapse: collapse;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 40px;
            border: 1px solid var(--border-subtle);
        }

        .lottery-table th, .lottery-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid var(--border-subtle);
        }

        .lottery-table th {
            background: var(--overlay-bg);
            color: var(--primary);
            font-weight: 600;
        }

        .win-amount {
            color: var(--accent);
            font-weight: bold;
        }

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

        .provider-item {
            background: linear-gradient(135deg, var(--overlay-bg), var(--surface-bg));
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            font-weight: bold;
            color: var(--text-heading);
            border-left: 4px solid var(--primary);
            font-size: 18px;
        }

        .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: 10px;
        }

        .comment-avatar {
            font-size: 30px;
            color: var(--primary);
        }

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

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

        .comment-body {
            font-size: 14px;
            margin-bottom: 10px;
        }

        .comment-date {
            font-size: 12px;
            color: var(--text-muted);
        }

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

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

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

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

        .safety-box {
            background: var(--overlay-bg);
            padding: 25px;
            border-radius: 16px;
            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 {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: var(--text-heading);
            font-size: 12px;
        }

        .safety-icon i {
            font-size: 32px;
            color: var(--accent);
        }

        .safety-text {
            font-size: 14px;
            max-width: 700px;
            margin: 0 auto 15px;
        }

        .safety-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }

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

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

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

        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;
            max-width: 1200px;
            margin: 0 auto 30px;
        }

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

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

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

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