/* CSS Variables - Clean Modern Palette */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #ec4899;
    --accent: #06b6d4;
    --gold: #fbbf24;
    --dark: #0f0f1e;
    --dark-card: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.85);
    --border: rgba(99, 102, 241, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background: var(--dark);
    background-image: 
        radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(236, 72, 153, 0.1) 0px, transparent 50%);
    background-attachment: fixed;
}

/* Navigation - Sticky Header */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 15, 30, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    flex-shrink: 0;
    order: 1;
}

.nav-logo a {
    display: inline-block;
    transition: transform 0.2s ease;
    text-decoration: none;
}

.nav-logo a:hover {
    transform: scale(1.05);
}

.nav-logo-img {
    height: 35px;
    width: auto;
    max-width: 180px;
    max-height: 35px;
    display: block;
    object-fit: contain;
}

/* Navigation Links - Horizontal layout */
.nav-links {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
    order: 2;
    position: static;
    background: transparent;
    box-shadow: none;
    border: none;
    max-height: none;
    overflow: visible;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: inline-block;
    white-space: nowrap;
    width: auto;
    text-align: center;
}

.nav-links a:hover {
    color: var(--primary-light);
    background: rgba(99, 102, 241, 0.1);
}

.nav-links a.active {
    color: var(--primary-light);
    background: rgba(99, 102, 241, 0.15);
    font-weight: 600;
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
    order: 3;
}

.nav-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

/* Mobile Menu Toggle - Hidden on desktop */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    flex-shrink: 0;
    transition: all 0.2s ease;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    order: 2;
}

.mobile-menu-toggle:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-light);
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

.mobile-menu-toggle i {
    transition: transform 0.2s ease;
}

/* Desktop - Ensure horizontal layout */
@media (min-width: 769px) {
    .nav-links {
        display: flex;
        flex-direction: row;
        position: static;
        max-height: none;
        overflow: visible;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: none;
        box-shadow: none;
        padding: 0;
        gap: 0.5rem;
        z-index: auto;
    }
    
    .nav-links li {
        width: auto;
    }
    
    .nav-links a {
        width: auto;
        text-align: center;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        display: inline-block;
    }
    
    .nav-logo-img {
        height: 35px;
        max-width: 180px;
        max-height: 35px;
    }
}

/* Tablet adjustments - Still horizontal */
@media (max-width: 968px) and (min-width: 769px) {
    .nav-container {
        padding: 1rem 1.5rem;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 0.25rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
        padding: 0.65rem 0.85rem;
    }
    
    .nav-cta {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Mobile Navigation - Vertical menu */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .nav-logo {
        order: 1;
        flex: 1;
    }
    
    .nav-logo-img {
        height: 28px;
        max-width: 140px;
        max-height: 28px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }
    
    .nav-cta {
        order: 3;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .nav-links {
        order: 4;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(15, 15, 30, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        z-index: 999;
    }
    
    .nav-links.mobile-open {
        max-height: 500px;
        padding: 1rem 0;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        width: 100%;
        padding: 1rem 1.5rem;
        border-radius: 0;
        text-align: left;
        font-size: 1rem;
        display: block;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(99, 102, 241, 0.2);
    }
}

@media (max-width: 480px) {
    .nav-logo a {
        font-size: 1.1rem;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-cta.mobile-visible {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
        border-radius: 8px;
    }
}

/* Compact Hero Section */
.hero-section {
    padding: 4rem 1.5rem 3rem;
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(15, 15, 30, 0.95) 0%,
        rgba(26, 26, 46, 0.9) 100%
    );
    border-bottom: 1px solid var(--border);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .diamond-word {
    background: linear-gradient(135deg, var(--gold), #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .secrets-word {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 0.25rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* CTA Buttons - Simplified */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: opacity 0.2s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    color: white;
    text-decoration: none;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.cta-button.secondary {
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid var(--primary);
    color: var(--primary-light);
}

.cta-button.secondary:hover {
    background: rgba(99, 102, 241, 0.3);
}

/* Section Styles */
.section {
    padding: 4rem 0;
}

.section-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Page Hero (for separate pages) */
.page-hero {
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border-bottom: 1px solid var(--border);
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    align-items: stretch;
}

.features-grid.compact {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* 4-column grid for room cards */
.rooms-section .features-grid,
#featured-rooms-container.features-grid,
.features-grid.rooms-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

@media (max-width: 1400px) {
    .rooms-section .features-grid,
    #featured-rooms-container.features-grid,
    .features-grid.rooms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .rooms-section .features-grid,
    #featured-rooms-container.features-grid,
    .features-grid.rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rooms-section .features-grid,
    #featured-rooms-container.features-grid,
    .features-grid.rooms-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: border-color 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Room cards use horizontal layout inside */
.feature-card.room-card {
    text-align: left;
    padding: 1.5rem;
}


.feature-card:hover {
    border-color: var(--primary-light);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.feature-link {
    color: var(--primary-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature-link:hover {
    color: var(--primary);
}

/* Room Card Styles - 3 Row Layout */
/* Structure:
 * Row 1: Icon | Name (side by side)
 * Row 2: Description (full width, grows to fill space)
 * Row 3: Online count (full width, aligned at bottom)
 */
.room-card-layout {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    height: 100%;
    min-height: 0;
}

/* Ensure room cards in grid have equal height */
.features-grid.rooms-grid .feature-card.room-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Row 1: Icon | Name */
.room-row-1 {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
}

.room-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    flex-grow: 0;
}

.room-icon-wrapper.has-image {
    padding: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border);
}

.room-icon-wrapper .room-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.room-icon-wrapper .icon-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 14px;
    font-size: 2rem;
    color: white;
}

/* Row 1: Name (part of room-row-1) */
.room-name-row {
    flex: 1;
    text-align: left;
    display: flex;
    align-items: center;
}

.room-name-row h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
    line-height: 1.3;
}

/* Row 2: Description - grows to fill space */
.room-description-row {
    text-align: left;
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1;
    min-height: 0;
}

.room-description-row p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    width: 100%;
    display: block;
}

/* Row 3: Online Count - aligned at bottom and centered */
.room-online-row {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-top: auto;
}

.room-online-row .online-count {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

/* Content Blocks */
.content-block {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.content-block h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.content-block p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.comparison-block {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 3rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 1rem 0;
    display: flex;
    align-items: start;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: var(--accent);
    margin-top: 0.25rem;
    font-size: 1.25rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.benefit-item i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 3rem;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid var(--border);
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background: rgba(15, 15, 30, 0.95);
    border-top: 1px solid var(--border);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

/* Loading States */
.loading-rooms {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 1rem 2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .features-grid:not(.rooms-grid) {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .content-block,
    .comparison-block {
        padding: 2rem;
    }
    
    .cta-section {
        padding: 3rem 2rem;
    }
}

/* Simple fade in animation */
@media (prefers-reduced-motion: no-preference) {
    .feature-card {
        animation: fadeIn 0.5s ease-out;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
}

/* Comparison Section Background */
.comparison-section {
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.8), rgba(26, 26, 46, 0.7));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* Rooms Section */
.rooms-section {
    background: rgba(15, 15, 30, 0.5);
}

.features-preview-section {
    background: rgba(26, 26, 46, 0.3);
}

.about-preview-section {
    background: rgba(15, 15, 30, 0.5);
}

.cta-preview-section {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
}

/* Age Verification Modal - Professional Design */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: fadeInAge 0.4s ease;
    margin: 0;
    overflow: hidden;
}

.age-verification-modal {
    background: rgba(15, 15, 30, 0.95);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: slideUpAge 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.age-verification-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.age-verification-content {
    padding: 2.5rem;
}

.age-verification-header {
    text-align: center;
    margin-bottom: 2rem;
}

.age-verification-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.age-verification-logo-img {
    max-width: 180px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.age-verification-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

.age-verification-body {
    margin-bottom: 2rem;
}

.age-verification-message {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0 0 1rem 0;
    text-align: center;
    font-weight: 500;
}

.age-verification-message strong {
    color: var(--text-primary);
    font-weight: 700;
}

.age-verification-message-secondary {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.age-verification-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.age-verify-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.age-verify-yes {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.age-verify-yes:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}

.age-verify-yes:active {
    transform: translateY(0);
}

.age-verify-no {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.age-verify-no:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.15);
}

@keyframes fadeInAge {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUpAge {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .age-verification-overlay {
        padding: 1rem;
    }
    
    .age-verification-content {
        padding: 2rem 1.5rem;
    }
    
    .age-verification-title {
        font-size: 1.5rem;
    }
    
    .age-verification-logo-img {
        max-width: 150px;
        max-height: 50px;
    }
    
    .age-verification-message {
        font-size: 1rem;
    }
    
    .age-verification-message-secondary {
        font-size: 0.9rem;
    }
    
    .age-verify-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    /* Room cards mobile - stack vertically */
    .room-row-1 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .room-name-row {
        text-align: center;
        justify-content: center;
    }
    
    .room-description-row {
        text-align: center;
    }
    
    .room-online-row {
        text-align: center;
    }
    
    .room-icon-wrapper {
        width: 80px;
        height: 80px;
        font-size: 1.75rem;
    }
    
    .room-icon-wrapper .room-image {
        width: 80px;
        height: 80px;
    }
    
    .room-icon-wrapper .icon-fallback {
        font-size: 1.75rem;
    }
}
