:root {
            --primary-gold: #d4af37;
            --secondary-gold: #f9e29b;
            --bg-dark: #0f1218;
            --card-bg: #1a1d24;
            --text-white: #ffffff;
            --text-gray: #a0a0a0;
            --accent-red: #e63946;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            background-color: var(--bg-dark);
            color: var(--text-white);
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            padding-bottom: 70px;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        header {
            background: linear-gradient(to bottom, #1a1d24, #0f1218);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        }
        .header-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .header-left img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }
        .header-left strong {
            font-size: 16px;
            font-weight: normal;
            color: var(--secondary-gold);
        }
        .header-right {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            border: none;
        }
        .btn-login {
            background-color: transparent;
            color: var(--primary-gold);
            border: 1px solid var(--primary-gold);
        }
        .btn-register {
            background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
            color: #000;
        }
        .banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            cursor: pointer;
            overflow: hidden;
        }
        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-section {
            background: radial-gradient(circle, #2c313a 0%, #1a1d24 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--primary-gold);
        }
        .jackpot-title {
            color: var(--primary-gold);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-white);
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }
        .section-title {
            padding: 0 15px;
            margin: 20px 0 10px;
            font-size: 18px;
            border-left: 4px solid var(--primary-gold);
            margin-left: 15px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background-color: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.2s;
            position: relative;
        }
        .game-card img {
            width: 100%;
            display: block;
            aspect-ratio: 1/1;
            object-fit: cover;
        }
        .game-info {
            padding: 8px;
            text-align: center;
            font-size: 13px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .intro-card {
            background-color: var(--card-bg);
            margin: 20px 15px;
            padding: 20px;
            border-radius: 15px;
            border-left: 5px solid var(--primary-gold);
        }
        .intro-card h1 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--primary-gold);
        }
        .intro-card p {
            font-size: 14px;
            color: var(--text-gray);
        }
        .guidelines {
            padding: 0 15px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }
        .guide-item {
            background-color: var(--card-bg);
            padding: 15px;
            border-radius: 12px;
        }
        .guide-item h3 {
            color: var(--secondary-gold);
            font-size: 16px;
            margin-bottom: 8px;
        }
        .winners-box {
            margin: 20px 15px;
            background-color: #000;
            padding: 15px;
            border-radius: 12px;
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        .winners-scroll {
            animation: scroll-up 20s linear infinite;
        }
        @keyframes scroll-up {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .winner-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            font-size: 13px;
            border-bottom: 1px solid #1a1d24;
        }
        .winner-name { color: var(--secondary-gold); }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .casino-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            padding: 20px 15px;
            text-align: center;
        }
        .stat-item i {
            font-size: 24px;
            color: var(--primary-gold);
            margin-bottom: 5px;
        }
        .stat-item div {
            font-size: 12px;
            color: var(--text-gray);
        }
        .comments-section {
            padding: 0 15px;
        }
        .comment-card {
            background-color: var(--card-bg);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }
        .user-name { font-weight: bold; color: var(--secondary-gold); }
        .stars { color: #ffc107; font-size: 12px; }
        .faq-section {
            padding: 0 15px;
        }
        .faq-item {
            margin-bottom: 15px;
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 15px;
        }
        .faq-item h4 {
            color: var(--primary-gold);
            margin-bottom: 10px;
            font-size: 15px;
        }
        .faq-item p {
            font-size: 13px;
            color: var(--text-gray);
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #1a1d24;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--primary-gold);
            z-index: 1000;
        }
        .nav-item {
            text-align: center;
            font-size: 11px;
            color: var(--text-gray);
        }
        .nav-item i {
            display: block;
            font-size: 20px;
            margin-bottom: 3px;
        }
        footer {
            padding: 30px 15px 100px;
            background-color: #090b0e;
            text-align: center;
        }
        .footer-row {
            margin-bottom: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
        .footer-row a {
            color: var(--text-gray);
            font-size: 13px;
        }
        .copyright {
            font-size: 12px;
            color: #555;
            margin-top: 20px;
        }