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

:root {
    --bg-primary: #1a0f2e;
    --bg-secondary: #2a1a4a;
    --bg-card: #2d1f47;
    --accent-green: #4ade80;
    --accent-yellow: #fbbf24;
    --accent-purple: #a855f7;
    --text-primary: #ffffff;
    --text-secondary: #a8a8b3;
    --border-color: #3a2a5a;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1a0f2e 0%, #2a1545 100%);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Touch-Friendly Improvements */
button, a, .game-card, .promo-card, .review-card, .vip-level {
    -webkit-tap-highlight-color: rgba(251, 191, 36, 0.2);
    touch-action: manipulation;
}

button, input, select, textarea {
    font-size: 16px; /* Prevent zoom on iOS */
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Header Styles */
.header {
    background: rgba(26, 15, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    position: relative;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    border: 2px solid var(--accent-yellow);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.mobile-menu-btn i {
    font-size: 1.3rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 3px;
    margin-top: -5px;
    font-weight: 600;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s;
    padding: 0.5rem 0;
    font-family: 'Inter', sans-serif;
}

.nav-link:hover {
    color: var(--accent-yellow);
}

.nav-link i {
    font-size: 0.7rem;
    color: var(--accent-yellow);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-login {
    background: transparent;
    border: 2px solid var(--accent-yellow);
    color: var(--text-primary);
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.btn-login:hover {
    background: var(--accent-yellow);
    color: #1a0f2e;
}

.btn-register {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border: none;
    color: #1a0f2e;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(74, 222, 128, 0.3);
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s;
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-selector img {
    width: 24px;
    height: 16px;
    border-radius: 2px;
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    left: 0;
    top: 80px;
    width: 220px;
    height: calc(100vh - 80px);
    background: rgba(26, 15, 46, 0.8);
    backdrop-filter: blur(10px);
    border-right: 1px solid var(--border-color);
    padding: 1rem;
    overflow-y: auto;
    z-index: 900;
}

.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--accent-purple);
    border-radius: 3px;
}

.sidebar-promo {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    cursor: pointer;
    transition: transform 0.3s;
    color: #1a0f2e;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.sidebar-promo:hover {
    transform: translateX(5px);
}

.sidebar-promo.missions {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.promo-icon {
    font-size: 1.5rem;
}

.sidebar-nav {
    margin-top: 1.5rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.8rem;
    border-radius: 8px;
    transition: all 0.3s;
    margin-bottom: 0.3rem;
    position: relative;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.sidebar-link:hover {
    background: rgba(168, 85, 247, 0.2);
    transform: translateX(5px);
}

.sidebar-link i:first-child {
    font-size: 1.2rem;
    width: 20px;
    color: var(--accent-yellow);
}

.sidebar-link i.fa-chevron-down {
    margin-left: auto;
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.badge {
    background: var(--accent-green);
    color: #1a0f2e;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    margin-left: auto;
    font-family: 'Montserrat', sans-serif;
}

/* Latest Winners */
.latest-winners {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.latest-winners h3 {
    color: var(--accent-yellow);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: rgba(45, 31, 71, 0.5);
    border-radius: 8px;
    transition: transform 0.3s;
}

.winner-item:hover {
    transform: translateX(5px);
}

.winner-item img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.winner-info {
    font-size: 0.75rem;
    line-height: 1.4;
}

.winner-name {
    color: var(--text-primary);
    font-weight: 600;
}

.winner-amount {
    color: var(--accent-green);
    font-weight: 700;
}

.winner-game {
    color: var(--text-secondary);
    font-size: 0.7rem;
}

/* Main Content */
.main-content {
    margin-left: 220px;
    padding: 2rem;
    min-height: calc(100vh - 80px);
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #2a1545 0%, #3d2557 100%);
    border-radius: 20px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 400px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.hero-animals {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.animal-wolf,
.animal-bull {
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(251, 146, 60, 0.3) 100%);
    border-radius: 50%;
    filter: blur(100px);
}

.animal-wolf {
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
}

.animal-bull {
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a0f2e;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.highlight-yellow {
    color: var(--accent-yellow);
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}

.btn-hero {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border: none;
    color: #1a0f2e;
    padding: 1rem 3rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(74, 222, 128, 0.4);
}

.hero-indicators {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 2rem;
}

.indicator {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: var(--accent-yellow);
    width: 50px;
}

/* Hero Banner Image */
.hero-banner-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Recommended Section */
.recommended-section {
    margin-top: 3rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.title-icon {
    font-size: 2rem;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.game-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.game-card.hot .game-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(251, 146, 60, 0.2), rgba(239, 68, 68, 0.2));
    pointer-events: none;
}

.hot-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.game-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.rtp-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(74, 222, 128, 0.9);
    color: #1a0f2e;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    z-index: 10;
}

.game-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.game-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.game-placeholder.pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.game-placeholder.green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.game-placeholder.blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.game-placeholder.dark {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.game-placeholder.rainbow {
    background: linear-gradient(135deg, #f0abfc 0%, #c084fc 50%, #a78bfa 100%);
}

.game-placeholder.leopard {
    background: linear-gradient(135deg, #ca8a04 0%, #a16207 100%);
}

.game-placeholder.purple {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

.game-placeholder.orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.game-icon {
    font-size: 4rem;
    z-index: 5;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

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

.game-info {
    padding: 1rem;
}

.game-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.game-info p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
}

.game-players {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-green);
    font-size: 0.85rem;
    font-weight: 600;
}

.game-players i {
    font-size: 0.9rem;
}

/* Chat Button */
.chat-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
    transition: all 0.3s;
    z-index: 1000;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.6);
}

/* Section Actions */
.section-actions {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.btn-see-all {
    background: transparent;
    border: 2px solid var(--accent-yellow);
    color: var(--accent-yellow);
    padding: 0.8rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-see-all:hover {
    background: var(--accent-yellow);
    color: #1a0f2e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

/* Best Games Section */
.best-games-section {
    margin-top: 4rem;
    padding: 3rem 0;
}

.best-games-header {
    position: relative;
    margin-bottom: 3rem;
}

.best-games-mascots {
    position: absolute;
    width: 100%;
    top: -20px;
    left: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.mascot-left,
.mascot-right {
    font-size: 8rem;
    opacity: 0.3;
    animation: float 4s ease-in-out infinite;
}

.mascot-right {
    animation-delay: 2s;
}

.best-games-title {
    margin-bottom: 2rem;
}

/* Search Bar */
.search-bar {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    background: rgba(45, 31, 71, 0.5);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 0.5rem;
    transition: all 0.3s;
}

.search-bar:focus-within {
    border-color: var(--accent-yellow);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
}

.game-search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    outline: none;
}

.game-search-input::placeholder {
    color: var(--text-secondary);
}

.search-button {
    background: var(--accent-yellow);
    border: none;
    color: #1a0f2e;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.search-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
}

/* Providers Filter */
.providers-filter {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: rgba(45, 31, 71, 0.3);
    border-radius: 16px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-purple) transparent;
}

.providers-filter::-webkit-scrollbar {
    height: 6px;
}

.providers-filter::-webkit-scrollbar-track {
    background: transparent;
}

.providers-filter::-webkit-scrollbar-thumb {
    background: var(--accent-purple);
    border-radius: 3px;
}

.filter-label {
    color: var(--text-primary);
    font-weight: 600;
    white-space: nowrap;
    margin-right: 1rem;
}

.provider-logo {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.provider-logo:hover {
    transform: translateY(-5px);
    border-color: var(--accent-yellow);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.provider-logo.active {
    border-color: var(--accent-green);
}

.provider-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Additional Game Placeholder Colors */
.game-placeholder.sky {
    background: linear-gradient(135deg, #7dd3fc 0%, #0ea5e9 100%);
}

.game-placeholder.neon-green {
    background: linear-gradient(135deg, #4ade80 0%, #16a34a 100%);
}

.game-placeholder.teal {
    background: linear-gradient(135deg, #2dd4bf 0%, #0d9488 100%);
}

.game-placeholder.red {
    background: linear-gradient(135deg, #f87171 0%, #dc2626 100%);
}

.game-placeholder.electric-blue {
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
}

.game-placeholder.gold {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
}

.game-placeholder.cyan {
    background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
}

.game-placeholder.dark-purple {
    background: linear-gradient(135deg, #581c87 0%, #3b0764 100%);
}

.game-placeholder.sky-blue {
    background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
}

.game-placeholder.emerald {
    background: linear-gradient(135deg, #34d399 0%, #059669 100%);
}

.game-placeholder.dark-gray {
    background: linear-gradient(135deg, #4b5563 0%, #1f2937 100%);
}

.game-placeholder.bronze {
    background: linear-gradient(135deg, #b45309 0%, #78350f 100%);
}

.game-placeholder.deep-purple {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
}

.game-placeholder.wine-red {
    background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
}

.game-placeholder.lime-green {
    background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
}

.game-placeholder.lime {
    background: linear-gradient(135deg, #a3e635 0%, #84cc16 100%);
}

.game-placeholder.forest-green {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.game-placeholder.deep-blue {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

/* New Games Section */
.new-games-section {
    margin-top: 4rem;
    padding: 3rem 0;
}

/* Exclusive Bonus Badge */
.exclusive-bonus-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a0f2e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(251, 191, 36, 0.6);
        transform: scale(1.05);
    }
}

.exclusive-bonus-badge i {
    font-size: 0.8rem;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Live Games Section */
.live-games-section {
    margin-top: 4rem;
    padding: 3rem 0;
}

/* Live Games Banner */
.live-games-banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-dealer-left,
.live-dealer-right {
    position: absolute;
    width: 400px;
    height: 100%;
    top: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.7;
}

.live-dealer-left {
    left: 0;
    background: linear-gradient(to right, rgba(30, 58, 138, 0.8), transparent),
                url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="400" height="350"%3E%3Crect fill="%231e3a8a" width="400" height="350"/%3E%3C/svg%3E');
}

.live-dealer-right {
    right: 0;
    background: linear-gradient(to left, rgba(30, 41, 59, 0.8), transparent),
                url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="400" height="350"%3E%3Crect fill="%231e293b" width="400" height="350"/%3E%3C/svg%3E');
}

.live-banner-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.live-title {
    margin-bottom: 1.5rem;
}

.live-banner-heading {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.live-banner-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn-learn-more {
    background: transparent;
    border: 2px solid var(--accent-yellow);
    color: var(--accent-yellow);
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-learn-more:hover {
    background: var(--accent-yellow);
    color: #1a0f2e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

/* Live Games Grid */
.live-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.live-game-card {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.live-game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.live-game-image {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, #4b5563 0%, #1f2937 100%);
    overflow: hidden;
}

.live-game-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.live-game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
}

.live-game-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.live-game-provider {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
}

/* Live Game Image Variants */
.live-game-image.colorful {
    background: linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
}

.live-game-image.warm {
    background: linear-gradient(135deg, #f97316 0%, #dc2626 100%);
}

.live-game-image.purple-glow {
    background: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%);
}

.live-game-image.dark-elegant {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.live-game-image.casino-green {
    background: linear-gradient(135deg, #059669 0%, #065f46 100%);
}

.live-game-image.classic {
    background: linear-gradient(135deg, #92400e 0%, #78350f 100%);
}

.live-game-image.elegant-dark {
    background: linear-gradient(135deg, #312e81 0%, #1e1b4b 100%);
}

.live-game-image.fortune-wheel {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
}

.live-game-image.professional {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
}

.live-game-image.studio {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e293b 100%);
}

.live-game-image.vibrant {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
}

/* Orange RTP Badge */
.rtp-badge.orange-badge {
    background: rgba(249, 115, 22, 0.9);
}

/* Live Card Hover Effect */
.live-game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
    z-index: 3;
    pointer-events: none;
}

.live-game-card:hover::before {
    transform: translateX(100%);
}

/* Promotions Section */
.promotions-section {
    margin-top: 4rem;
    padding: 3rem 0;
    position: relative;
}

.promotions-slider {
    position: relative;
    overflow: hidden;
    margin: 3rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #2a1545 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    background-image: 
        linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(42, 21, 69, 0.9) 100%),
        repeating-linear-gradient(90deg, rgba(251, 191, 36, 0.1) 0px, transparent 2px, transparent 40px, rgba(251, 191, 36, 0.1) 42px);
}

.promotions-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

/* Promo Card */
.promo-card {
    flex: 0 0 calc(50% - 1rem);
    min-width: calc(50% - 1rem);
    background: rgba(45, 31, 71, 0.6);
    border: 2px solid var(--accent-yellow);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.3);
    border-color: var(--accent-green);
}

.promo-card-inner {
    position: relative;
    z-index: 2;
}

.promo-icon-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-green) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a0f2e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    animation: pulse-glow 2s infinite;
}

.promo-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.promo-details {
    margin-bottom: 2rem;
}

.promo-amount {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.promo-bonus {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.3;
}

.promo-bonus .highlight-yellow {
    font-size: 1rem;
    font-weight: 700;
    display: inline-block;
    margin-left: 0.5rem;
}

.btn-promo {
    background: linear-gradient(135deg, var(--accent-green) 0%, #22c55e 100%);
    border: none;
    color: #1a0f2e;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-promo:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(74, 222, 128, 0.4);
}

/* Promo Mascots */
.promo-mascot {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 300px;
    height: 350px;
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
    transition: all 0.5s;
}

.promo-card:hover .promo-mascot {
    opacity: 0.6;
    transform: scale(1.1) translateX(-10px);
}

.promo-mascot-rhino {
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="300" height="350" viewBox="0 0 300 350"%3E%3Ctext x="150" y="200" text-anchor="middle" fill="%23fbbf24" font-size="120" opacity="0.3"%3E🦏%3C/text%3E%3C/svg%3E') no-repeat center;
    background-size: contain;
}

.promo-mascot-wolf {
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="300" height="350" viewBox="0 0 300 350"%3E%3Ctext x="150" y="200" text-anchor="middle" fill="%239ca3af" font-size="120" opacity="0.3"%3E🐺%3C/text%3E%3C/svg%3E') no-repeat center;
    background-size: contain;
}

.promo-mascot-bull {
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="300" height="350" viewBox="0 0 300 350"%3E%3Ctext x="150" y="200" text-anchor="middle" fill="%23f97316" font-size="120" opacity="0.3"%3E🐂%3C/text%3E%3C/svg%3E') no-repeat center;
    background-size: contain;
}

.promo-mascot-tiger {
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="300" height="350" viewBox="0 0 300 350"%3E%3Ctext x="150" y="200" text-anchor="middle" fill="%23fb923c" font-size="120" opacity="0.3"%3E🐅%3C/text%3E%3C/svg%3E') no-repeat center;
    background-size: contain;
}

/* Promotions Navigation */
.promotions-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.promo-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(45, 31, 71, 0.8);
    border: 2px solid var(--accent-yellow);
    border-radius: 12px;
    color: var(--accent-yellow);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-nav-btn:hover {
    background: var(--accent-yellow);
    color: #1a0f2e;
    transform: scale(1.1);
}

.promo-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.btn-view-all-promos {
    background: transparent;
    border: 2px solid var(--accent-yellow);
    color: var(--accent-yellow);
    padding: 0.8rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-view-all-promos:hover {
    background: var(--accent-yellow);
    color: #1a0f2e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

/* VIP Program Section */
.vip-program-section {
    margin-top: 4rem;
    padding: 3rem 0;
}

.vip-program-banner {
    background: linear-gradient(135deg, #2a1545 0%, #1e1b4b 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
}

.vip-background-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
    pointer-events: none;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* VIP Levels */
.vip-levels {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    margin: 3rem 0;
    position: relative;
    z-index: 2;
}

.vip-level-path {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        to right,
        var(--text-secondary) 0px,
        var(--text-secondary) 10px,
        transparent 10px,
        transparent 20px
    );
    transform: translateY(-50%);
    z-index: 1;
}

.vip-level-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    transition: all 0.3s;
}

.vip-level-item:hover {
    transform: translateY(-10px);
}

.vip-level-avatar {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f97316 0%, #dc2626 100%);
    border: 4px solid var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
}

.vip-level-item[data-level="2"] .vip-level-avatar {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    width: 140px;
    height: 140px;
}

.vip-level-item[data-level="3"] .vip-level-avatar {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.vip-level-avatar.active-avatar {
    border-color: var(--accent-green);
    animation: vip-glow 2s infinite;
}

@keyframes vip-glow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(74, 222, 128, 0.5);
    }
    50% {
        box-shadow: 0 15px 40px rgba(74, 222, 128, 0.8);
    }
}

.vip-avatar-icon {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.vip-level-badge {
    background: rgba(45, 31, 71, 0.9);
    border: 2px solid var(--accent-yellow);
    border-radius: 8px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-yellow);
    text-transform: uppercase;
}

.vip-level-item.active .vip-level-badge {
    background: var(--accent-green);
    color: #1a0f2e;
    border-color: var(--accent-green);
}

/* VIP Treasure Box */
.vip-treasure-box {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, #d97706 0%, #92400e 100%);
    border-radius: 10px;
    border: 3px solid var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    animation: treasure-bounce 2s ease-in-out infinite;
}

@keyframes treasure-bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.treasure-icon {
    font-size: 2rem;
    animation: spin 4s linear infinite;
}

/* VIP Progress Container */
.vip-progress-container {
    margin: 5rem auto 3rem;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.vip-progress-bar {
    background: rgba(45, 31, 71, 0.8);
    border: 2px solid var(--text-secondary);
    border-radius: 50px;
    height: 30px;
    position: relative;
    overflow: hidden;
}

.vip-progress-fill {
    background: linear-gradient(90deg, var(--accent-yellow) 0%, var(--accent-green) 100%);
    height: 100%;
    border-radius: 50px;
    position: relative;
    transition: width 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.vip-progress-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-green) 0%, #22c55e 100%);
    border: 3px solid var(--accent-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    animation: progress-pulse 1.5s ease-in-out infinite;
}

@keyframes progress-pulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-50%) scale(1.1);
    }
}

.vip-progress-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.vip-progress-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    padding: 0 1rem;
}

.vip-progress-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.vip-progress-label.current {
    color: var(--accent-green);
    font-weight: 700;
}

/* VIP Description */
.vip-description {
    text-align: center;
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
    z-index: 2;
}

.vip-text-main {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.vip-text-secondary {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-vip-learn-more {
    background: transparent;
    border: 2px solid var(--accent-yellow);
    color: var(--accent-yellow);
    padding: 0.8rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-vip-learn-more:hover {
    background: var(--accent-yellow);
    color: #1a0f2e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

/* Reviews Section */
.reviews-section {
    margin-top: 4rem;
    padding: 3rem 0;
}

.reviews-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.reviews-slider {
    flex: 1;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(42, 21, 69, 0.3) 100%);
    border-radius: 20px;
    padding: 2rem 1rem;
}

.reviews-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

/* Review Card */
.review-card {
    flex: 0 0 calc(33.333% - 1.333rem);
    min-width: calc(33.333% - 1.333rem);
    background: linear-gradient(135deg, #2a1545 0%, #1e1b4b 100%);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.review-header {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.casino-badge {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    border: 3px solid var(--accent-yellow);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.casino-badge i {
    position: absolute;
    top: 8px;
    left: 8px;
    color: var(--accent-yellow);
    font-size: 0.8rem;
}

.casino-badge > span:first-of-type {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-yellow);
    line-height: 1;
}

.badge-text {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.review-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-yellow);
    text-align: center;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.review-author {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.review-content {
    margin-bottom: 1.5rem;
    min-height: 120px;
}

.review-content p {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.btn-read-more {
    background: transparent;
    border: 2px solid var(--accent-yellow);
    color: var(--accent-yellow);
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-read-more:hover {
    background: var(--accent-yellow);
    color: #1a0f2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

/* Review Navigation Buttons */
.review-nav-btn {
    width: 60px;
    height: 60px;
    background: rgba(45, 31, 71, 0.8);
    border: 2px solid var(--accent-yellow);
    border-radius: 50%;
    color: var(--accent-yellow);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-nav-btn:hover {
    background: var(--accent-yellow);
    color: #1a0f2e;
    transform: scale(1.1);
}

.review-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.review-nav-btn:disabled:hover {
    transform: none;
    background: rgba(45, 31, 71, 0.8);
    color: var(--accent-yellow);
}

/* About Casino Section */
.about-casino-section {
    margin-top: 4rem;
    padding: 3rem 0;
    background: rgba(30, 21, 51, 0.3);
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-main-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    text-align: left;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.about-intro {
    margin-bottom: 2.5rem;
}

.about-intro p {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.about-features-list li {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.8;
    padding-left: 0;
    position: relative;
}

.about-features-list li::before {
    content: '';
    display: inline-block;
    margin-right: 0;
}

.about-section-block {
    margin-bottom: 2.5rem;
}

.about-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.about-text {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-text:last-child {
    margin-bottom: 0;
}

/* About Toggle Button */
.about-toggle-container {
    text-align: center;
    margin: 2rem 0;
}

.btn-read-more-about {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border: none;
    color: #1a0f2e;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-read-more-about:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(74, 222, 128, 0.3);
}

.btn-read-more-about i {
    transition: transform 0.3s;
}

.btn-read-more-about.expanded i {
    transform: rotate(180deg);
}

/* About Expandable Content */
.about-expandable-content {
    overflow: hidden;
    transition: all 0.5s ease;
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0;
    background: rgba(20, 15, 35, 0.5);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.faq-answer {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.8;
}

.faq-toggle-container {
    text-align: center;
    margin-top: 2rem;
}

.btn-read-less {
    background: transparent;
    border: none;
    color: var(--accent-yellow);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    transition: all 0.3s;
}

.btn-read-less:hover {
    color: var(--accent-green);
}

/* Footer */
.footer {
    background: #1a0f2e;
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-yellow), transparent);
    margin-bottom: 2rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 1rem;
    margin-bottom: 2rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--accent-yellow);
}

.footer-separator {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-restriction {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.age-badge {
    background: #ef4444;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    border: 3px solid white;
}

.legal-info {
    text-align: center;
    margin: 2rem 0;
    padding: 0 1rem;
}

.legal-info p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.6;
}

.responsible-gaming-notice {
    text-align: center;
    margin: 2rem 0;
}

.responsible-gaming-notice p {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
}

/* Responsible Gaming Logos */
.responsible-gaming-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.rg-logo-link {
    text-decoration: none;
    transition: transform 0.3s, opacity 0.3s;
}

.rg-logo-link:hover {
    transform: translateY(-5px);
    opacity: 0.8;
}

.rg-logo {
    cursor: pointer;
}

.rg-logo svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: filter 0.3s;
}

.rg-logo-link:hover .rg-logo svg {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.5));
}

.license-badge {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.footer-copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-copyright p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        margin-left: 0;
        padding: 1rem;
    }

    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .header {
        padding: 0.8rem 0;
    }

    .header-container {
        padding: 0 0.8rem;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 0.8rem;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo-image {
        height: 40px;
    }

    .header-actions {
        display: flex;
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .btn-login {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .btn-register {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .language-selector {
        display: none;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.8rem;
    }

    .game-card {
        border-radius: 10px;
    }

    .game-info {
        padding: 0.8rem;
    }

    .game-info h3 {
        font-size: 0.85rem;
    }

    .game-info p {
        font-size: 0.7rem;
    }

    .hero-banner {
        padding: 1rem;
        min-height: 400px;
        border-radius: 15px;
        margin-bottom: 2.5rem;
    }

    .hero-slide {
        padding: 0.5rem;
        min-height: 400px;
    }

    .hero-banner-image {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-banner-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        min-height: 380px;
        max-height: 400px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    /* Search Bar */
    .search-bar {
        max-width: 100%;
        padding: 0.8rem;
    }

    /* Provider Filters */
    .provider-filters {
        gap: 0.5rem;
    }

    .provider-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    /* Live Games Banner */
    .live-games-banner {
        padding: 2rem 1rem;
        min-height: 250px;
    }

    .live-banner-title {
        font-size: 1.8rem;
    }

    /* Promotions Slider */
    .promo-card {
        min-width: 320px;
    }

    .promo-content {
        padding: 1.8rem;
    }

    .promo-title {
        font-size: 1.4rem;
    }

    /* VIP Program */
    .vip-banner {
        padding: 2rem 1rem;
        min-height: 250px;
    }

    .vip-levels {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.8rem;
    }

    .vip-level {
        padding: 0.8rem;
    }

    .vip-avatar {
        width: 40px;
        height: 40px;
    }

    .vip-level-name {
        font-size: 0.75rem;
    }

    /* Reviews Slider */
    .review-card {
        min-width: 340px;
    }

    .review-title {
        font-size: 1.3rem;
    }

    .review-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* About Section */
    .about-main-title {
        font-size: 1.8rem;
        padding: 0 1rem;
    }

    .about-section-title {
        font-size: 1.3rem;
    }

    .about-text {
        font-size: 0.95rem;
    }

    .btn-read-more-about {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-nav {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .footer-separator {
        display: none;
    }

    .footer-link {
        font-size: 0.85rem;
        padding: 0.5rem;
    }

    .payment-methods {
        gap: 1rem;
    }

    .legal-info p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .responsible-gaming-logos {
        gap: 1rem;
        flex-direction: column;
    }

    .rg-logo svg {
        width: 100px;
        height: 42px;
    }

    .footer-logo-image {
        height: 50px;
    }
}

/* Mobile Phones (Portrait) */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .header {
        padding: 0.6rem 0;
    }

    .header-container {
        padding: 0 0.6rem;
        gap: 0.6rem;
    }

    .logo-image {
        height: 36px;
    }

    .header-actions {
        gap: 0.4rem;
    }

    .btn-login {
        padding: 0.45rem 0.7rem;
        font-size: 0.75rem;
    }

    .btn-register {
        padding: 0.45rem 0.7rem;
        font-size: 0.75rem;
    }

    /* Sidebar */
    .sidebar {
        width: 200px;
    }

    .sidebar-link {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .latest-winners h3 {
        font-size: 0.9rem;
    }

    .winner-amount {
        font-size: 0.75rem;
    }

    /* Games Grid */
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .game-card {
        border-radius: 8px;
    }

    .game-image {
        height: 150px;
    }

    .game-info {
        padding: 0.6rem;
    }

    .game-info h3 {
        font-size: 0.75rem;
    }

    .game-info p {
        font-size: 0.65rem;
    }

    .game-players {
        font-size: 0.7rem;
    }

    .play-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    /* Hero Banner */
    .hero-banner {
        padding: 0.8rem;
        min-height: 350px;
        margin-bottom: 2rem;
        border-radius: 12px;
    }

    .hero-slide {
        padding: 0.5rem;
        min-height: 350px;
    }

    .hero-banner-image {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-banner-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        min-height: 330px;
        max-height: 350px;
        border-radius: 8px;
    }

    .hero-indicators {
        bottom: 10px;
        gap: 6px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        gap: 0.5rem;
    }

    .title-icon {
        font-size: 1.5rem;
    }

    /* Search Bar */
    .search-bar {
        padding: 0.7rem;
        font-size: 0.85rem;
    }

    .search-bar i {
        font-size: 0.9rem;
    }

    /* Provider Filters */
    .provider-filters {
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    .provider-btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.75rem;
    }

    /* Live Games */
    .live-games-banner {
        padding: 1.5rem 0.8rem;
        min-height: 200px;
    }

    .live-banner-title {
        font-size: 1.5rem;
    }

    .live-banner-subtitle {
        font-size: 0.85rem;
    }

    /* Promotions */
    .promo-slider {
        gap: 1rem;
    }

    .promo-card {
        min-width: 85%;
        max-width: 90%;
    }

    .promo-content {
        padding: 1.5rem;
    }

    .promo-title {
        font-size: 1.2rem;
    }

    .promo-description {
        font-size: 0.9rem;
    }

    .promo-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .promo-mascot {
        width: 120px;
        height: 120px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    /* VIP Program */
    .vip-banner {
        padding: 1.5rem 0.8rem;
        min-height: 200px;
    }

    .vip-banner-title {
        font-size: 1.5rem;
    }

    .vip-levels {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }

    .vip-level {
        padding: 0.6rem;
    }

    .vip-avatar {
        width: 35px;
        height: 35px;
    }

    .vip-level-name {
        font-size: 0.7rem;
    }

    .vip-level-number {
        font-size: 0.65rem;
    }

    /* Reviews */
    .review-slider {
        gap: 1rem;
    }

    .review-card {
        min-width: 85%;
        max-width: 90%;
        padding: 1.5rem;
    }

    .review-title {
        font-size: 1.2rem;
    }

    .review-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .btn-read-more {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    /* About Section */
    .about-container {
        padding: 0 1rem;
    }

    .about-main-title {
        font-size: 1.5rem;
        padding: 0;
    }

    .about-section-title {
        font-size: 1.1rem;
    }

    .about-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .about-features-list li {
        font-size: 0.9rem;
    }

    .btn-read-more-about {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    /* Footer */
    .footer-container {
        padding: 0 1rem;
    }

    .footer-logo-image {
        height: 45px;
    }

    .footer-nav {
        gap: 0.6rem;
    }

    .footer-link {
        font-size: 0.8rem;
        padding: 0.4rem;
    }

    .payment-methods {
        flex-wrap: wrap;
        gap: 0.8rem;
        justify-content: center;
    }

    .payment-icon {
        transform: scale(0.9);
    }

    .age-badge {
        font-size: 1.5rem;
        width: 50px;
        height: 50px;
    }

    .legal-info p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .responsible-gaming-notice p {
        font-size: 0.9rem;
    }

    .responsible-gaming-logos {
        gap: 0.8rem;
    }

    .rg-logo svg {
        width: 90px;
        height: 38px;
    }

    .license-badge svg {
        width: 70px;
        height: 70px;
    }

    .footer-copyright p {
        font-size: 0.8rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 360px) {
    .header-container {
        padding: 0 0.5rem;
        gap: 0.5rem;
    }

    .logo-image {
        height: 32px;
    }

    .header-actions {
        gap: 0.3rem;
    }

    .btn-login {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }

    .btn-register {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .hero-banner {
        min-height: 320px;
        padding: 0.5rem;
    }

    .hero-slide {
        min-height: 320px;
        padding: 0.3rem;
    }

    .hero-banner-image img {
        min-height: 300px;
        max-height: 320px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .vip-levels {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-card,
    .review-card {
        min-width: 90%;
    }
}
