/* ==========================================================
   STYLE.CSS – CAMLUST.CF
 
   ========================================================== */

/* ==========================================================
   1. RESET & SETĂRI GLOBALE
   ========================================================== */

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

body {
    background: #0b0b0f;
    font-family: 'Inter', sans-serif;
    color: #ededee;
    padding: 1rem 1.5rem 2rem;
}

.app-wrapper {
    max-width: 1600px;
    margin: 0 auto;
}

/* ==========================================================
   2. HEADER (centrat)
   ========================================================== */

.main-header {
    text-align: center;
    padding: 1.5rem 0 1rem;
    border-bottom: 1px solid #2a2a36;
    margin-bottom: 1.5rem;
}

.site-title {
    font-size: 3.2rem;
    font-weight: 800;
    font-family: 'Space Grotesk', monospace;
    background: linear-gradient(135deg, #ff7eb3, #ff758c, #f5b042, #3b9eff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientFlow 4s ease infinite;
}

.dot-cf {
    font-size: 2rem;
    background: linear-gradient(135deg, #aaa, #ddd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.site-slogan {
    font-size: 0.85rem;
    color: #ff9fbc;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 0.2rem;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.header-stats {
    font-size: 0.9rem;
    color: #b0b0c0;
    margin: 0.3rem 0 0.8rem;
}
.header-stats span {
    color: #ff69b4;
    font-weight: 600;
}

/* ==========================================================
   3. CONTROALE ROW – filtre stânga, căutare dreapta
   ========================================================== */

.controls-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    flex: 1 1 auto;
}

.filter-tab {
    background: #171722;
    border: 1px solid #2c2c3c;
    color: #e2e2ec;
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 3rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.filter-tab:hover {
    background: #262636;
    border-color: #ff69b4;
}
.filter-tab.active {
    background: #ff69b4;
    color: #0a0a0f;
    border-color: #ff69b4;
    box-shadow: 0 0 14px rgba(255, 105, 180, 0.4);
}

.search-section {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex: 0 1 480px;
    min-width: 200px;
}

.search-wrapper {
    display: flex;
    align-items: center;
    background: #12121a;
    border: 1px solid #2c2c3e;
    border-radius: 3rem;
    padding: 0.2rem 0.2rem 0.2rem 1.2rem;
    flex: 1;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.search-wrapper:focus-within {
    border-color: #ff69b4;
    box-shadow: 0 0 12px rgba(255, 105, 180, 0.25);
}

.search-icon {
    color: #ff9fbc;
    margin-right: 4px;
    font-size: 0.9rem;
}
.search-input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.9rem;
    padding: 0.6rem 0.2rem;
    width: 100%;
    outline: none;
}
.clear-search {
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 10px;
}
.clear-search:hover { color: #ff69b4; }

.filter-toggle-btn {
    background: #1a1a2a;
    border: 1px solid #2a2a36;
    color: #e2e2ec;
    padding: 0.5rem 1.2rem;
    border-radius: 3rem;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s;
    flex-shrink: 0;
}
.filter-toggle-btn:hover {
    border-color: #ff69b4;
    background: #262636;
}
.filter-icon { font-size: 1rem; }

/* ==========================================================
   4. FILTER STATUS BAR (afișează filtrele active)
   ========================================================== */

.filter-status-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #1a1a2a;
    border-radius: 2rem;
    margin: 0.5rem 0 1.5rem 0;
    border: 1px solid #2a2a36;
    font-size: 0.85rem;
    color: #b0b0c0;
}

.filter-status-bar .filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #2a2a3e;
    padding: 0.2rem 0.8rem;
    border-radius: 2rem;
    color: #ff69b4;
    font-weight: 500;
}

.filter-status-bar .filter-tag .remove-filter {
    cursor: pointer;
    font-weight: 700;
    color: #aaa;
    font-size: 0.9rem;
    margin-left: 0.2rem;
}
.filter-status-bar .filter-tag .remove-filter:hover {
    color: #ff3b6f;
}

.clear-all-btn {
    background: none;
    border: none;
    color: #ff6b6b;
    font-size: 0.8rem;
    cursor: pointer;
    font-weight: 600;
    padding: 0.2rem 0.8rem;
    border-radius: 2rem;
    transition: 0.2s;
}
.clear-all-btn:hover {
    background: #ff3b6f;
    color: #0a0a0f;
}

/* ==========================================================
   5. SIDEBAR DRAWER (se deschide din dreapta)
   ========================================================== */

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    display: none;
}
.sidebar-overlay.open { display: block; }

.sidebar-drawer {
    position: fixed;
    top: 0;
    right: -380px;
    width: 360px;
    height: 100%;
    background: #0e0e16;
    border-left: 1px solid #2a2a36;
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 1.5rem 1.2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.sidebar-drawer.open { right: 0; }

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #2a2a36;
}
.sidebar-header h3 {
    color: #ff69b4;
    font-size: 1.2rem;
}
.sidebar-close {
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.8rem;
    cursor: pointer;
}
.sidebar-close:hover { color: #ff69b4; }

.sidebar-body { flex: 1; }

.filter-group {
    margin-bottom: 1.8rem;
}
.filter-group h4 {
    color: #ff9fbc;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.filter-opt {
    background: #1a1a2a;
    border: 1px solid #2a2a36;
    color: #b0b0c0;
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
}
.filter-opt:hover {
    border-color: #ff69b4;
    color: #fff;
}
.filter-opt.active {
    background: #ff69b4;
    border-color: #ff69b4;
    color: #0a0a0f;
    font-weight: 600;
    box-shadow: 0 0 12px rgba(255, 105, 180, 0.3);
}

.reset-filters-btn {
    background: #1a1a2a;
    border: 1px solid #ff3b6f;
    color: #ff6b6b;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s;
    margin-top: 0.5rem;
}
.reset-filters-btn:hover {
    background: #ff3b6f;
    color: #0a0a0f;
}

/* ==========================================================
   6. DUAL SLIDER – pentru vârstă
   ========================================================== */

.dual-slider-container { padding: 0.3rem 0; }

.slider-track {
    position: relative;
    height: 4px;
    background: #2a2a36;
    border-radius: 4px;
    margin: 1rem 0;
    cursor: pointer;
}
.slider-fill {
    position: absolute;
    height: 100%;
    background: #ff69b4;
    border-radius: 4px;
    left: 0%;
    right: 0%;
}
.slider-thumb {
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    background: #ff69b4;
    border: 2px solid #0a0a0f;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: grab;
    z-index: 2;
    box-shadow: 0 0 8px rgba(255, 105, 180, 0.4);
}
.slider-thumb:active { cursor: grabbing; }
.thumb-min { left: 0%; }
.thumb-max { left: 100%; }

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #aaa;
}

/* ==========================================================
   7. TAG-URI
   ========================================================== */

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
}
.tag-item {
    background: #1a1a2a;
    border: 1px solid #2a2a36;
    color: #b0b0c0;
    padding: 0.2rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.2s;
}
.tag-item:hover {
    border-color: #ff69b4;
    color: #fff;
}
.tag-item.active {
    background: #ff69b4;
    border-color: #ff69b4;
    color: #0a0a0f;
    font-weight: 600;
}

.tag-search-wrapper {
    display: flex;
    gap: 0.4rem;
    margin: 0.4rem 0;
}
.tag-search-input {
    flex: 1;
    background: #1a1a2a;
    border: 1px solid #2a2a36;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    outline: none;
}
.tag-search-input:focus { border-color: #ff69b4; }
.tag-add-btn {
    background: #ff69b4;
    border: none;
    color: #0a0a0f;
    font-weight: 700;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
}
.tag-add-btn:hover { transform: scale(1.05); }

.selected-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 0.3rem;
}
.selected-tag {
    background: #ff69b4;
    color: #0a0a0f;
    padding: 0.15rem 0.7rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.selected-tag .remove-tag {
    cursor: pointer;
    font-weight: 700;
    opacity: 0.7;
}
.selected-tag .remove-tag:hover { opacity: 1; }

/* ==========================================================
   8. ROOMS GRID
   ========================================================== */

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
    margin: 1.5rem 0 2.5rem;
}

/* Skeleton loading */
.skeleton-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.25rem; }
.skeleton-card {
    background: #101014;
    border-radius: 1.2rem;
    overflow: hidden;
    border: 1px solid #23232e;
}
.skeleton-img {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(90deg, #1a1a2a 25%, #2a2a3e 50%, #1a1a2a 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
.skeleton-info { padding: 0.8rem; }
.skeleton-line {
    height: 14px;
    background: linear-gradient(90deg, #1a1a2a 25%, #2a2a3e 50%, #1a1a2a 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
    margin-bottom: 8px;
}
.skeleton-line.short { width: 60%; }

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Card cameră */
.room-card {
    background: #101014;
    border-radius: 1.2rem;
    overflow: hidden;
    transition: transform 0.25s, border-color 0.25s;
    border: 1px solid #23232e;
    cursor: pointer;
}
.room-card:hover {
    transform: translateY(-6px);
    border-color: #ff69b4;
}
.thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.room-info { padding: 0.8rem; }
.username {
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffc0d0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.viewers {
    font-size: 0.7rem;
    color: #9e9eae;
    margin-top: 4px;
}
.gender-chip {
    display: inline-block;
    font-size: 0.6rem;
    background: #1e1e2a;
    padding: 2px 10px;
    border-radius: 20px;
    margin-top: 6px;
    color: #b0b0c0;
    border: 1px solid #2a2a36;
}

.no-results-placeholder {
    text-align: center;
    padding: 3rem;
    color: #aaa;
    grid-column: 1/-1;
}

/* ==========================================================
   9. PAGINARE
   ========================================================== */

.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 2rem;
}
.page-btn {
    background: #1a1a24;
    border: 1px solid #2a2a36;
    color: #ddd;
    padding: 0.3rem 0.9rem;
    border-radius: 2rem;
    cursor: pointer;
    font-size: 0.8rem;
}
.page-btn:hover {
    background: #2a2a3e;
    border-color: #ff69b4;
}
.page-btn.active-page {
    background: #ff69b4;
    color: #0a0a0f;
    border-color: #ff69b4;
    font-weight: 600;
}

/* ==========================================================
   10. FOOTER
   ========================================================== */

.main-footer {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #2a2a36;
}

.footer-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.footer-col {
    min-width: 140px;
    text-align: left;
}
.footer-col h4 {
    color: #ff9fbc;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
    font-weight: 600;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li { margin-bottom: 0.3rem; }

.footer-link {
    background: none;
    border: none;
    color: #b0b0c0;
    font-size: 0.75rem;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
}
.footer-link:hover {
    color: #ff69b4;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #1a1a24;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.footer-links a {
    color: #ff9fbc;
    text-decoration: none;
    font-size: 0.8rem;
}
.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}
.separator { color: #5a5a70; }
.cookie-notice {
    font-size: 0.7rem;
    color: #6a6a82;
    margin-bottom: 0.5rem;
}
.copyright {
    font-size: 0.7rem;
    color: #5a5a70;
}

/* ==========================================================
   11. LIGHTBOX
   ========================================================== */

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 8, 14, 0.96);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s, opacity 0.25s;
}
.lightbox-overlay.active {
    visibility: visible;
    opacity: 1;
}

.lightbox-container {
    width: 94%;
    max-width: 1400px;
    height: 90vh;
    background: #050508;
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.92);
    transition: transform 0.3s;
    position: relative;
}
.lightbox-overlay.active .lightbox-container { transform: scale(1); }

.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background: #0e0e16;
    border-bottom: 1px solid #2a2a36;
}
.model-title {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(120deg, #fff, #ffb7c5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.close-lightbox {
    background: #1f1f2b;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #ffb7c5;
    width: 40px;
    height: 40px;
    border-radius: 60px;
    transition: 0.2s;
}
.close-lightbox:hover {
    background: #ff3b6f;
    color: #fff;
    transform: rotate(90deg);
}

.lightbox-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 1rem 1rem;
    gap: 0.8rem;
}
.iframe-wrapper {
    flex: 1;
    background: #000;
    border-radius: 1.2rem;
    overflow: hidden;
}
.iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================
   12. AFFILIATE ACTIONS + NAVIGARE MOBIL
   ========================================================== */

.affiliate-actions {
    background: #111116;
    border-radius: 1.2rem;
    padding: 0.8rem 1.2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border: 1px solid #2c2c3a;
}
.room-stats-mini {
    font-size: 0.75rem;
    color: #b0b0c0;
    width: 100%;
    text-align: center;
}

/* Rândul 1: Register + Login */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}
.action-buttons .register-btn,
.action-buttons .login-btn {
    flex: 0 1 auto;
}

.register-btn {
    background: linear-gradient(95deg, #ff3b6f, #ff8c42);
    padding: 0.6rem 1.6rem;
    font-weight: 700;
    border-radius: 3rem;
    color: #fff;
    text-decoration: none;
}
.login-btn {
    background: #262632;
    border: 1px solid #ff69b4;
    padding: 0.6rem 1.6rem;
    font-weight: 600;
    border-radius: 3rem;
    color: #ffb7c5;
    text-decoration: none;
}

/* Rândul 2: Săgeți de navigare mobil (Prev / Next) */
.nav-buttons-mobile {
    display: none; /* ascuns pe desktop */
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    padding: 0.2rem 0;
}

.nav-arrow {
    background: rgba(255, 105, 180, 0.15);
    border: 1px solid rgba(255, 105, 180, 0.3);
    color: #ffb7c5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    padding: 0;
    line-height: 1;
}
.nav-arrow:hover {
    background: rgba(255, 105, 180, 0.3);
    border-color: #ff69b4;
    color: #fff;
}
.nav-arrow:active {
    transform: scale(0.9);
}

/* ==========================================================
   13. NAVIGARE LIGHTBOX – butoane laterale (doar desktop)
   ========================================================== */

.nav-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 140px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 105, 180, 0.3);
    color: rgba(255, 255, 255, 0.7);
    font-size: 4rem;
    font-weight: 300;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    backdrop-filter: blur(4px);
    user-select: none;
    opacity: 0;
    pointer-events: none;
    border-radius: 12px;
}
.lightbox-overlay.active .nav-btn {
    opacity: 1;
    pointer-events: auto;
}
.nav-prev {
    left: calc(3% + 10px);
}
.nav-next {
    right: calc(3% + 10px);
}
.nav-btn:hover {
    background: rgba(255, 105, 180, 0.4);
    color: #fff;
    border-color: #ff69b4;
}
.nav-btn:active {
    transform: translateY(-50%) scale(0.92);
}
.nav-btn.hidden-btn {
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Pe mobil/tabletă, butoanele laterale dispar complet */
@media (max-width: 1024px) {
    .nav-btn {
        display: none !important;
    }
}

/* Pe desktop, ajustări fine */
@media (min-width: 1025px) {
    .nav-btn {
        width: 65px;
        height: 150px;
        font-size: 4.5rem;
        background: rgba(0, 0, 0, 0.4);
        border: 2px solid rgba(255, 105, 180, 0.2);
        color: rgba(255, 255, 255, 0.5);
    }
    .nav-prev {
        left: calc(3% + 15px);
    }
    .nav-next {
        right: calc(3% + 15px);
    }
    .nav-btn:hover {
        background: rgba(255, 105, 180, 0.4);
        border-color: #ff69b4;
        color: #fff;
    }
}

/* ==========================================================
   14. TOAST
   ========================================================== */

.signup-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 320px;
    background: #12121a;
    border: 1px solid #ff69b4;
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    gap: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: opacity 0.5s, transform 0.5s, visibility 0.5s;
}
.signup-toast.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.toast-close {
    position: absolute;
    top: 6px;
    right: 10px;
    background: none;
    border: none;
    color: #aaa;
    font-size: 16px;
    cursor: pointer;
}
.toast-close:hover { color: #ff69b4; }
.toast-icon { font-size: 28px; flex-shrink: 0; }
.toast-content h4 {
    color: #ff69b4;
    margin-bottom: 3px;
    font-size: 0.95rem;
}
.toast-content p {
    font-size: 0.75rem;
    color: #ccc;
    margin-bottom: 8px;
}
.toast-btn {
    display: inline-block;
    background: linear-gradient(95deg, #ff3b6f, #ff8c42);
    padding: 6px 16px;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
}
.toast-btn:hover { transform: scale(1.02); }

/* ==========================================================
   15. RESPONSIVE
   ========================================================== */

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

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

@media (max-width: 768px) {
    .site-title {
        font-size: 2.2rem;
    }
    .dot-cf {
        font-size: 1.5rem;
    }

    .controls-row {
        flex-direction: column;
        align-items: stretch;
    }
    .filter-tabs {
        justify-content: center;
        order: 2;
    }
    .search-section {
        flex: 1 1 auto;
        order: 1;
    }
    .filter-tab {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }

    .sidebar-drawer {
        width: 300px;
        right: -320px;
    }

    .footer-grid {
        gap: 2rem;
    }
    .footer-col {
        min-width: 100px;
    }

    .lightbox-container {
        width: 100%;
        height: 100%;
        border-radius: 0;
        transform: scale(1);
    }
    .lightbox-body {
        padding: 0 0.5rem 0.5rem;
        gap: 0.5rem;
    }
    .iframe-wrapper {
        border-radius: 0.8rem;
    }

    /* Afișăm butoanele de navigare mobil */
    .nav-buttons-mobile {
        display: flex;
    }
    .action-buttons .register-btn,
    .action-buttons .login-btn {
        flex: 1;
        min-width: 80px;
        text-align: center;
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    .nav-arrow {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    .affiliate-actions {
        gap: 0.5rem;
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .rooms-grid,
    .skeleton-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    .site-title {
        font-size: 1.8rem;
    }
    .filter-tab {
        font-size: 0.6rem;
        padding: 0.2rem 0.6rem;
    }
    .header-stats {
        font-size: 0.75rem;
    }

    .footer-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .footer-col {
        text-align: center;
    }
    .footer-col ul li {
        text-align: center;
    }
    .footer-link {
        text-align: center;
    }
}

/* ==========================================================
   16. STATS.CSS (inclus pentru pagina stats.html)
   ========================================================== */

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