:root {
            --primary: #DAB25D;
            --primary-variant: #B89144;
            --secondary: #008F39;
            --accent: #FFD700;
            --bg-main: #0A0B0D;
            --bg-surface: #16191E;
            --bg-elevated: #20242B;
            --text-primary: #FFFFFF;
            --text-secondary: #B1B5C3;
            --text-muted: #777E90;
            --border-default: #2D3139;
            --font-heading: 'Montserrat', 'Helvetica Neue', sans-serif;
            --font-body: 'Inter', 'Roboto', sans-serif;
            --font-display: 'Playfair Display', serif;
        }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-body);
            margin: 0;
            padding: 0;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        header {
            background-color: var(--bg-surface);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        .header-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .header-left img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }
        .header-left strong {
            font-size: 16px;
            font-weight: 400;
            font-family: var(--font-heading);
            color: var(--primary);
        }
        .header-right {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
        }
        .btn-login {
            background-color: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border-default);
        }
        .btn-register {
            background-color: var(--primary);
            color: #000;
        }
        main {
            padding-bottom: 80px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .banner-container {
            width: 100%;
            aspect-ratio: 2 / 1;
            overflow: hidden;
            cursor: pointer;
        }
        .banner-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-section {
            background: linear-gradient(135deg, #16191E 0%, #0A0B0D 100%);
            margin: 20px 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--primary);
            box-shadow: 0 0 15px rgba(218, 178, 93, 0.2);
        }
        .jackpot-title {
            color: var(--primary);
            font-family: var(--font-heading);
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }
        .jackpot-amount {
            font-family: var(--font-display);
            font-size: 32px;
            color: var(--accent);
            font-weight: 900;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        .intro-card {
            background-color: var(--bg-surface);
            margin: 15px;
            padding: 25px;
            border-radius: 12px;
            border-left: 4px solid var(--primary);
        }
        .intro-card h1 {
            font-family: var(--font-heading);
            font-size: 24px;
            margin-bottom: 12px;
            color: var(--primary);
        }
        .intro-card p {
            color: var(--text-secondary);
            font-size: 14px;
        }
        .section-title {
            padding: 0 15px;
            margin: 25px 0 15px;
            font-family: var(--font-heading);
            font-size: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title i {
            color: var(--primary);
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background-color: var(--bg-elevated);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border-default);
        }
        .game-card:active {
            transform: scale(0.95);
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }
        .game-info {
            padding: 10px;
        }
        .game-info h3 {
            font-size: 14px;
            color: var(--text-primary);
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .game-info p {
            font-size: 11px;
            color: var(--text-muted);
            margin: 4px 0 0;
        }
        .payments-section, .providers-section {
            padding: 20px 15px;
            background-color: var(--bg-surface);
            margin-top: 20px;
        }
        .icon-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }
        .icon-grid i {
            font-size: 24px;
            color: var(--text-secondary);
        }
        .guidelines-grid {
            padding: 15px;
            display: grid;
            gap: 15px;
        }
        .guideline-item {
            background-color: var(--bg-surface);
            padding: 15px;
            border-radius: 10px;
        }
        .guideline-item h2 {
            font-size: 18px;
            color: var(--primary);
            margin-bottom: 8px;
        }
        .guideline-item p {
            font-size: 14px;
            color: var(--text-secondary);
        }
        .marquee-container {
            background-color: var(--bg-elevated);
            padding: 15px 0;
            overflow: hidden;
            margin: 20px 0;
        }
        .marquee-content {
            display: flex;
            white-space: nowrap;
            animation: marquee 30s linear infinite;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .winner-tag {
            background-color: var(--bg-surface);
            padding: 10px 20px;
            margin: 0 10px;
            border-radius: 50px;
            border: 1px solid var(--border-default);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
        }
        .winner-tag span {
            color: var(--accent);
            font-weight: bold;
        }
        .reviews-section {
            padding: 15px;
        }
        .review-card {
            background-color: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 15px;
            border: 1px solid var(--border-default);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-header i {
            font-size: 30px;
            color: var(--text-muted);
        }
        .review-user-info h3 {
            font-size: 16px;
            margin: 0;
        }
        .stars {
            color: var(--accent);
            font-size: 12px;
        }
        .review-date {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 2px;
        }
        .faq-section {
            padding: 15px;
        }
        .faq-item {
            margin-bottom: 15px;
            background-color: var(--bg-surface);
            border-radius: 8px;
            overflow: hidden;
        }
        .faq-question {
            padding: 15px;
            font-weight: 600;
            color: var(--primary);
            cursor: pointer;
            border-bottom: 1px solid var(--border-default);
        }
        .faq-answer {
            padding: 15px;
            font-size: 14px;
            color: var(--text-secondary);
        }
        .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: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item {
            text-align: center;
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 11px;
        }
        .nav-item i {
            font-size: 18px;
            display: block;
            margin-bottom: 4px;
        }
        .nav-item:active {
            color: var(--primary);
        }
        footer {
            background-color: var(--bg-main);
            padding: 30px 15px 100px;
            border-top: 1px solid var(--border-default);
            text-align: center;
        }
        .footer-social {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 25px;
        }
        .footer-social a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }
        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 13px;
        }
        .footer-copyright {
            font-size: 12px;
            color: var(--text-muted);
        }
        .responsible-gaming {
            margin: 20px 15px;
            padding: 15px;
            border: 1px dashed var(--text-muted);
            border-radius: 8px;
            font-size: 12px;
            color: var(--text-muted);
        }