/* ==========================================================================
   CATBET ONLINE CASINO - MAIN STYLESHEET
   Aesthetics: Deep Dark Mode (#0b0f14), Vibrant Cyan (#00eff8), Orange & Gold
   Typography: Dela Gothic One (Headings), Onest (Body)
   ========================================================================== */

:root {
    --bg-site: #0b0f14;
    --bg-surface: #141923;
    --bg-card: #1c2330;
    --bg-card-hover: #242d3e;
    
    --border-color: #273142;
    --border-highlight: rgba(0, 239, 248, 0.3);
    
    --accent-cyan: #00eff8;
    --accent-cyan-hover: #54f5fc;
    --accent-orange: #ff7a00;
    --accent-gold: #fff500;
    --accent-pink: #f26df9;
    --accent-red: #f34b2e;
    --accent-green: #1cff7a;
    
    --text-main: #e6e9ef;
    --text-muted: #97a2b4;
    --text-dark: #0b0f14;
    
    --font-heading: 'Dela Gothic One', cursive, sans-serif;
    --font-body: 'Onest', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-pill: 50px;
    
    --shadow-glow-cyan: 0 0 20px rgba(0, 239, 248, 0.4);
    --shadow-glow-orange: 0 0 20px rgba(255, 122, 0, 0.4);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-site);
    color: var(--text-main);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-cyan-hover);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.highlight-cyan { color: var(--accent-cyan); }
.highlight-gold { color: var(--accent-gold); }
.w-100 { width: 100%; }
.mt-2 { margin-top: 10px; }
.mt-3 { margin-top: 20px; }

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-pill);
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-login:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    background-color: rgba(0, 239, 248, 0.08);
}

.btn-register {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #00b0ff 100%);
    color: var(--text-dark);
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0, 239, 248, 0.3);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-cyan);
}

.glowing-btn {
    position: relative;
    overflow: hidden;
}

.glowing-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(30deg);
    animation: shine 3.5s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(30deg); }
    20% { transform: translateX(100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

.btn-secondary {
    background-color: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--accent-cyan);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}

/* Badges */
.badge-hot, .badge-new, .badge-top, .badge-crash {
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.badge-hot { background-color: var(--accent-red); color: white; }
.badge-new { background-color: var(--accent-green); color: black; }
.badge-top { background-color: var(--accent-gold); color: black; }
.badge-crash { background-color: var(--accent-pink); color: white; }
.badge-21 { background-color: var(--accent-red); color: white; padding: 2px 8px; border-radius: 4px; font-weight: 800; }

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(11, 15, 20, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.logo-desktop { display: block; }
.logo-mobile { display: none; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 15px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
    background-color: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: var(--accent-cyan);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.icon-btn:hover {
    border-color: var(--accent-cyan);
    transform: scale(1.05);
}

.social-links-head {
    display: flex;
    gap: 8px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    transition: transform var(--transition-fast);
}

.social-btn:hover {
    transform: scale(1.1);
    border-color: var(--accent-cyan);
}

.mobile-menu-toggle {
    display: none;
    color: var(--text-main);
}

/* MOBILE DRAWER */
.mobile-drawer {
    display: none;
}

/* SCROLL SECTION COMMON */
.scroll-section {
    padding: 40px 0;
}

/* SCROLL 1: HERO CAROUSEL */
.hero-section {
    padding-top: 24px;
}

.hero-carousel {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    min-height: 380px;
}

.carousel-track {
    position: relative;
    width: 100%;
    min-height: 380px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    background-size: cover;
    background-position: center right;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    max-width: 580px;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background: rgba(0, 239, 248, 0.15);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 239, 248, 0.4);
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 38px;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
}

.slide-badge-image {
    z-index: 2;
}

.floating-img {
    max-height: 260px;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.6));
    animation: float 4s ease-in-out infinite;
}

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

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(20, 25, 35, 0.7);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.carousel-arrow:hover {
    background-color: var(--accent-cyan);
    color: var(--text-dark);
}

.prev-arrow { left: 16px; }
.next-arrow { right: 16px; }

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    width: 28px;
    border-radius: 10px;
    background-color: var(--accent-cyan);
}

/* Quick Stats Bar */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.stat-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform var(--transition-fast);
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-highlight);
}

.stat-icon {
    font-size: 28px;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-weight: 800;
    font-size: 18px;
    color: var(--accent-cyan);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

/* SCROLL 2: CATEGORY TABS & GAME GRID */
.category-tabs-wrapper {
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.category-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.category-tabs {
    display: flex;
    gap: 10px;
    min-width: max-content;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: var(--bg-surface);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 14px;
    transition: all var(--transition-fast);
}

.tab-btn:hover, .tab-btn.active {
    background-color: var(--bg-card-hover);
    color: var(--text-main);
    border-color: var(--accent-cyan);
}

.tab-btn.active {
    background: linear-gradient(135deg, rgba(0, 239, 248, 0.15) 0%, rgba(0, 176, 255, 0.05) 100%);
    color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 239, 248, 0.2);
}

/* Providers Bar */
.providers-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    background-color: var(--bg-surface);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.providers-title {
    font-weight: 700;
    color: var(--text-muted);
    font-size: 14px;
    white-space: nowrap;
}

.providers-scroll {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
}

.providers-scroll::-webkit-scrollbar { display: none; }

.provider-pill {
    padding: 6px 14px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
}

.provider-pill:hover, .provider-pill.active {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;

    /* Maintain smooth height transition when filtering */
    transition: grid-template-columns 0.3s ease;
}

@media (max-width: 1200px) {
    .games-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .games-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}

@media (max-width: 480px) {
    .games-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

.game-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 25px rgba(0, 239, 248, 0.25);
}

.game-thumb {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #0d1117;
}

.game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-card:hover .game-thumb img {
    transform: scale(1.1);
}

.game-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 20, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity var(--transition-fast);
    padding: 10px;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-overlay .btn {
    width: 80%;
    padding: 8px 12px;
    font-size: 13px;
}

.game-info {
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.game-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.load-more-wrapper {
    text-align: center;
    margin-top: 30px;
}

.btn-load-more {
    padding: 14px 40px;
    font-size: 15px;
}

/* SCROLL 3: LIVE CASINO & CAT COLLECTIONS */
.section-banner {
    border-radius: var(--radius-lg);
    padding: 40px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.live-banner {
    background: linear-gradient(135deg, #1c1429 0%, #121926 100%);
    border-color: rgba(242, 109, 249, 0.3);
}

.badge-live-dot {
    color: var(--accent-pink);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
}

.banner-text h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 12px;
}

.banner-text p {
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 20px;
}

.live-preview-img {
    max-height: 200px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* Theme Collections Grid */
.section-title-wrap {
    margin-bottom: 24px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 26px;
    margin-bottom: 6px;
}

.section-desc {
    color: var(--text-muted);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .collections-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .collections-grid { grid-template-columns: repeat(1, 1fr); }
}

.collection-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.collection-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-4px);
    background-color: var(--bg-card-hover);
}

.collection-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.collection-name {
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--accent-cyan);
}

.collection-info {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.collection-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-gold);
}

/* Live Winners Ticker */
.live-winners-bar {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-pill);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
}

.winners-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 14px;
    white-space: nowrap;
}

.pulse-red {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--accent-red);
    box-shadow: 0 0 10px var(--accent-red);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.winners-ticker-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.winner-item {
    font-size: 13px;
    color: var(--text-muted);
}

.winner-item .user { color: var(--text-main); font-weight: 700; }
.winner-item .amount { color: var(--accent-green); font-weight: 800; }
.winner-item .game { color: var(--accent-cyan); }

/* MAIN CONTENT SEO SECTION (from main.md) */
.content-seo-section {
    background-color: #0e1219;
    border-top: 1px solid var(--border-color);
    padding: 60px 0;
}

.content-box {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-card);
}

@media (max-width: 768px) {
    .content-box { padding: 24px 16px; }
}

.content-header h1 {
    font-family: var(--font-heading);
    font-size: 34px;
    color: #ffffff;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.lead-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.text-muted {
    color: var(--text-muted);
    font-size: 15px;
}

/* Parameters Table */
.table-responsive {
    overflow-x: auto;
    margin: 30px 0;
}

.parameters-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.parameters-table th, .parameters-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.parameters-table th {
    background-color: rgba(0, 239, 248, 0.08);
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--accent-cyan);
}

.parameters-table tr:last-child td {
    border-bottom: none;
}

.badge-table {
    background-color: rgba(255,255,255,0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
}

/* Content Blocks & Headings */
.content-block {
    margin-top: 40px;
}

.content-block h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 16px;
    border-left: 4px solid var(--accent-cyan);
    padding-left: 12px;
}

.content-block h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 20px 0 10px;
    color: var(--accent-cyan);
}

.content-block p {
    margin-bottom: 14px;
    color: var(--text-main);
}

.styled-list {
    margin: 14px 0 20px 20px;
}

.styled-list li {
    margin-bottom: 8px;
    position: relative;
}

.styled-list li::before {
    content: "🐾";
    margin-right: 8px;
}

/* Registration Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
}

@media (max-width: 768px) {
    .steps-grid { grid-template-columns: repeat(1, 1fr); }
}

.step-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--accent-cyan);
    color: var(--text-dark);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Bonus Details Grid */
.bonus-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

@media (max-width: 768px) {
    .bonus-cards-grid { grid-template-columns: repeat(1, 1fr); }
}

.bonus-detail-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    position: relative;
}

.b-badge {
    display: inline-block;
    background-color: rgba(0, 239, 248, 0.15);
    color: var(--accent-cyan);
    font-size: 12px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}

.gold-badge {
    background-color: rgba(255, 245, 0, 0.15);
    color: var(--accent-gold);
}

.bonus-detail-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #ffffff;
}

.vip-card {
    background: linear-gradient(135deg, #282012 0%, #1c1824 100%);
    border-color: rgba(255, 245, 0, 0.3);
}

/* Payment Methods Grid */
.payment-methods-grid {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 16px 0;
}

.pay-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* License Box */
.license-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 16px;
}

.license-badge {
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 12px;
}

.note-text {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
}

/* Contacts Grid */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .contacts-grid { grid-template-columns: repeat(1, 1fr); }
}

.contact-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
}

.c-icon { font-size: 30px; margin-bottom: 8px; display: block; }
.c-time { font-size: 12px; color: var(--text-muted); display: block; margin-top: 4px; }

/* Responsible Play Box */
.responsible-block {
    background-color: rgba(243, 75, 46, 0.08);
    border: 1px solid rgba(243, 75, 46, 0.3);
    border-radius: var(--radius-md);
    padding: 24px;
}

.responsible-wrap {
    display: flex;
    gap: 20px;
    align-items: center;
}

.age-badge-lg {
    font-size: 28px;
    font-weight: 900;
    background-color: var(--accent-red);
    color: white;
    padding: 10px 16px;
    border-radius: var(--radius-md);
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item.active {
    border-color: var(--accent-cyan);
}

.faq-question {
    width: 100%;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-main);
    text-align: left;
}

.faq-question:hover {
    color: var(--accent-cyan);
}

.faq-icon {
    font-size: 20px;
    font-weight: 400;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 20px;
    display: none;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* FOOTER */
.site-footer {
    background-color: #070a0e;
    border-top: 1px solid var(--border-color);
    padding: 50px 0 30px;
    margin-top: auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-top { flex-direction: column; }
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 16px;
    max-width: 400px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-col a:hover { color: var(--accent-cyan); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

@media (max-width: 768px) {
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

.pay-logos {
    display: flex;
    gap: 16px;
    font-weight: 700;
    color: var(--text-muted);
    font-size: 13px;
}

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

/* FIXED MOBILE BOTTOM NAV */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background-color: rgba(11, 15, 20, 0.95);
        backdrop-filter: blur(12px);
        border-top: 1px solid var(--border-color);
        z-index: 999;
        justify-content: space-around;
        align-items: center;
    }

    .mob-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        font-size: 11px;
        color: var(--text-muted);
        font-weight: 600;
    }

    .mob-nav-item.active {
        color: var(--accent-cyan);
    }

    .mob-reg-btn {
        color: var(--accent-gold);
    }

    /* Padding for mobile body to avoid overlap with bottom nav */
    body {
        padding-bottom: 60px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav, .social-links-head {
        display: none;
    }

    .logo-desktop { display: none; }
    .logo-mobile { display: block; }
    
    .carousel-slide {
        padding: 24px 20px;
    }
    
    .hero-title { font-size: 26px; }
    .hero-subtitle { font-size: 16px; }
    .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .slide-badge-image { display: none; }
}

/* MODALS SYSTEM */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
}

.modal-box {
    position: relative;
    z-index: 2;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 440px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 28px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.modal-close:hover { color: var(--text-main); }

.modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-top: 12px;
}

.modal-tabs {
    display: flex;
    background-color: var(--bg-card);
    padding: 4px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
}

.modal-tab-btn {
    flex: 1;
    padding: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    border-radius: var(--radius-pill);
    transition: all var(--transition-fast);
}

.modal-tab-btn.active {
    background-color: var(--accent-cyan);
    color: var(--text-dark);
}

.modal-form .form-group {
    margin-bottom: 16px;
}

.modal-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.modal-form input[type="text"],
.modal-form input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-size: 15px;
    outline: none;
    transition: border-color var(--transition-fast);
}

.modal-form input:focus {
    border-color: var(--accent-cyan);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.social-auth-divider {
    text-align: center;
    margin: 20px 0 14px;
    position: relative;
}

.social-auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
}

.social-auth-divider span {
    position: relative;
    background-color: var(--bg-surface);
    padding: 0 10px;
    font-size: 12px;
    color: var(--text-muted);
}

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

.btn-social {
    flex: 1;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 10px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 700;
}

.btn-social:hover {
    border-color: var(--accent-cyan);
}

/* Demo Modal Box */
.demo-modal-box {
    max-width: 800px;
}

.demo-player-container {
    aspect-ratio: 16 / 9;
    background-color: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.demo-screen {
    width: 100%;
    height: 100%;
    position: relative;
}

.demo-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.demo-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 18px;
}

/* Drawer CSS */
.mobile-drawer.active {
    display: block;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1500;
}

.drawer-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background-color: var(--bg-surface);
    z-index: 1501;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-drawer {
    font-size: 28px;
    color: var(--text-muted);
}

.drawer-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}
