:root {
            --primary-gold: #d4af37;
            --dark-bg: #12141a;
            --card-bg: #1a1d24;
            --text-white: #ffffff;
            --text-gray: #b0b3b8;
            --accent-green: #00c853;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-white);
            line-height: 1.6;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--card-bg);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #2a2e35;
        }
        .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;
        }
        .header-right {
            display: flex;
            gap: 10px;
        }
        .btn {
            border: none;
            border-radius: 20px;
            padding: 6px 15px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .btn-login {
            background-color: transparent;
            color: var(--primary-gold);
            border: 1px solid var(--primary-gold);
        }
        .btn-register {
            background: linear-gradient(to right, #d4af37, #f1c40f);
            color: #000;
        }
        main {
            padding: 15px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .banner {
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 20px;
            aspect-ratio: 2/1;
            cursor: pointer;
        }
        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-section {
            background: linear-gradient(145deg, #1a1d24, #252a34);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            border: 1px solid #d4af3755;
        }
        .jackpot-title {
            color: var(--primary-gold);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 5px;
        }
        .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 {
            font-size: 18px;
            margin: 20px 0 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .section-title i {
            color: var(--primary-gold);
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 25px;
        }
        .game-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: white;
            transition: transform 0.2s;
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .game-info {
            padding: 8px;
            font-size: 13px;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .intro-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 25px;
            border-left: 4px solid var(--primary-gold);
        }
        .intro-card h1 {
            font-size: 20px;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .intro-card p {
            color: var(--text-gray);
            font-size: 14px;
        }
        .guidelines-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
            margin-bottom: 25px;
        }
        .guideline-item {
            background: #1e222a;
            padding: 15px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .guideline-item i {
            color: var(--primary-gold);
            font-size: 20px;
        }
        .winners-list {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 15px;
            max-height: 300px;
            overflow-y: auto;
            margin-bottom: 25px;
        }
        .winner-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #2a2e35;
            font-size: 13px;
        }
        .winner-item:last-child {
            border-bottom: none;
        }
        .winner-name {
            color: var(--text-gray);
        }
        .winner-amount {
            color: var(--accent-green);
            font-weight: 600;
        }
        .casino-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin: 25px 0;
            text-align: center;
        }
        .feature-box {
            background: var(--card-bg);
            padding: 15px 5px;
            border-radius: 10px;
        }
        .feature-box i {
            font-size: 24px;
            color: var(--primary-gold);
            margin-bottom: 8px;
        }
        .feature-box span {
            display: block;
            font-size: 11px;
            color: var(--text-gray);
        }
        .comments-section {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 25px;
        }
        .comment-card {
            background: var(--card-bg);
            padding: 15px;
            border-radius: 12px;
            position: relative;
        }
        .comment-user {
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .stars {
            color: #ffc107;
            font-size: 12px;
        }
        .comment-text {
            font-size: 13px;
            color: var(--text-gray);
            font-style: italic;
        }
        .faq-section {
            margin-bottom: 30px;
        }
        .faq-item {
            background: var(--card-bg);
            margin-bottom: 10px;
            border-radius: 10px;
            overflow: hidden;
        }
        .faq-question {
            padding: 15px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #2a2e35;
        }
        .faq-answer {
            padding: 15px;
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.5;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #1a1d24;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid #2a2e35;
            z-index: 2000;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-gray);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
            gap: 4px;
        }
        .nav-item i {
            font-size: 18px;
        }
        footer {
            background: #0d0f14;
            padding: 30px 15px 100px;
            text-align: center;
        }
        .footer-row {
            margin-bottom: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
        .footer-link {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 13px;
        }
        .copyright {
            color: #555;
            font-size: 12px;
            margin-top: 20px;
        }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines-grid { grid-template-columns: repeat(2, 1fr); }
            .comments-section { grid-template-columns: repeat(2, 1fr); }
        }