/**
 * Cuori Online - Stile Principale
 * Design futuristico con colori scuri e neon
 */

/* ============================================
   VARIABILI CSS
   ============================================ */
:root {
    /* Colori Primari */
    --primary: #6C63FF;
    --primary-light: #8B85FF;
    --primary-dark: #4A42D9;
    
    /* Colori Accenti */
    --accent-pink: #FF4757;
    --accent-cyan: #00D9FF;
    --accent-purple: #A855F7;
    --accent-green: #10B981;
    --accent-orange: #F59E0B;
    
    /* Colori Sfondo */
    --bg-dark: #0a0a0f;
    --bg-dark-secondary: #12121a;
    --bg-card: #1a1a24;
    --bg-card-hover: #22222e;
    --bg-input: #0d0d12;
    
    /* Colori Testo */
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #606070;
    
    /* Colori Bordi */
    --border-color: #2a2a3a;
    --border-glow: rgba(108, 99, 255, 0.3);
    
    /* Colori Neon */
    --neon-pink: #ff4757;
    --neon-purple: #a855f7;
    --neon-cyan: #00d9ff;
    --neon-blue: #3b82f6;
    
    /* Ombre */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(108, 99, 255, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50%;
    
    /* Transizioni */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   RESET E BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(108, 99, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 71, 87, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

/* ============================================
   CANVAS PARTICELLE
   ============================================ */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   UTILITÀ
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================
   BOTTONI
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--primary-light);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-red {
    background: linear-gradient(135deg, var(--accent-pink), #ff6b81);
    color: white;
}

.btn-green {
    background: linear-gradient(135deg, var(--accent-green), #34d399);
    color: white;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

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

.btn-block {
    width: 100%;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-icon:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    border-color: var(--primary);
}

.btn-icon.btn-red:hover {
    background: rgba(255, 71, 87, 0.2);
    color: var(--accent-pink);
    border-color: var(--accent-pink);
}

.btn-icon.btn-green:hover {
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-green);
    border-color: var(--accent-green);
}

/* ============================================
   FORM
   ============================================ */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.form-group label i {
    margin-right: 8px;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-primary);
    background: var(--bg-input);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.age-range {
    display: flex;
    align-items: center;
    gap: 10px;
}

.age-range input {
    flex: 1;
    text-align: center;
}

.age-range span {
    color: var(--text-muted);
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

/* ============================================
   ALERT
   ============================================ */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
}

.alert-error {
    background: rgba(255, 71, 87, 0.15);
    border: 1px solid var(--accent-pink);
    color: var(--accent-pink);
}

.alert i {
    font-size: 18px;
}

/* ============================================
   CARD
   ============================================ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition-normal);
}

.card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   NAVIGAZIONE
   ============================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-logo i {
    color: var(--accent-pink);
    font-size: 24px;
    animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: var(--text-secondary);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(108, 99, 255, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.nav-link .badge {
    background: var(--accent-pink);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 4px;
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white !important;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
}

/* Profile Dropdown */
.nav-profile {
    position: relative;
    margin-left: 10px;
}

.profile-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.profile-btn:hover {
    border-color: var(--primary);
}

.profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.profile-btn span {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
}

.profile-btn i {
    font-size: 12px;
    color: var(--text-muted);
}

.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    min-width: 200px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-fast);
    overflow: hidden;
}

.profile-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.profile-dropdown a:hover {
    background: rgba(108, 99, 255, 0.1);
    color: var(--text-primary);
}

.profile-dropdown a i {
    width: 20px;
    text-align: center;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 4px 0;
}

.admin-link {
    color: var(--accent-purple) !important;
}

/* Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
    padding-top: 70px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

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

.hero-visual {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-hearts {
    position: absolute;
    width: 100%;
    height: 100%;
}

.heart {
    position: absolute;
    color: var(--accent-pink);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.heart-1 { top: 20%; left: 10%; font-size: 30px; animation-delay: 0s; }
.heart-2 { top: 60%; right: 15%; font-size: 40px; animation-delay: 1s; }
.heart-3 { top: 30%; right: 25%; font-size: 25px; animation-delay: 2s; }
.heart-4 { bottom: 20%; left: 20%; font-size: 35px; animation-delay: 1.5s; }

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

/* ============================================
   FEATURES
   ============================================ */
.features {
    padding: 80px 20px;
    background: var(--bg-dark-secondary);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent-purple));
    border-radius: 50%;
    font-size: 28px;
    color: white;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ============================================
   STATS
   ============================================ */
.stats {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(168, 85, 247, 0.1));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 80px 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--transition-normal);
}

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

.testimonial-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.testimonial-author {
    color: var(--primary-light);
    font-weight: 600;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: 80px 20px;
    text-align: center;
    background: var(--bg-dark-secondary);
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--bg-dark-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 20px 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: var(--primary-light);
}

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

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

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* ============================================
   AUTH PAGES
   ============================================ */
.auth-container {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-card {
    width: 100%;
    max-width: 500px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    animation: fadeInUp 0.5s ease;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h1 {
    font-size: 28px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.auth-header h1 i {
    color: var(--accent-pink);
}

.auth-header p {
    color: var(--text-secondary);
}

.auth-form {
    margin-bottom: 20px;
}

.auth-footer {
    text-align: center;
    color: var(--text-secondary);
}

.forgot-link {
    margin-left: auto;
    font-size: 13px;
}

/* ============================================
   DASHBOARD
   ============================================ */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.welcome-banner {
    background: linear-gradient(135deg, var(--primary), var(--accent-purple));
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.welcome-content h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

.welcome-content p {
    opacity: 0.9;
}

.welcome-stats {
    display: flex;
    gap: 20px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 15px 25px;
    text-align: center;
}

.stat-box i {
    font-size: 20px;
    opacity: 0.8;
}

.stat-box .stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}

.stat-box .stat-label {
    font-size: 12px;
    opacity: 0.8;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.action-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 25px;
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
}

.action-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.action-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary), var(--accent-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.action-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.action-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Dashboard Section */
.dashboard-section {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header h2 i {
    color: var(--accent-pink);
}

.view-all {
    font-size: 14px;
    color: var(--primary-light);
}

.view-all:hover {
    color: var(--accent-cyan);
}

/* Users Grid */
.users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.user-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

.user-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

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

.user-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.user-card:hover .user-card-image img {
    transform: scale(1.05);
}

.online-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-green);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.online-badge i {
    font-size: 8px;
    animation: pulse 2s infinite;
}

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

.match-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    animation: heartbeat 1s infinite;
}

.user-card-content {
    padding: 15px;
}

.user-card-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.user-location {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.user-age {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 10px;
}

.liked-time {
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.user-card-actions {
    display: flex;
    gap: 10px;
}

.user-card-actions button,
.user-card-actions a {
    flex: 1;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-like:hover,
.btn-like.liked {
    background: rgba(255, 71, 87, 0.2);
    border-color: var(--accent-pink);
    color: var(--accent-pink);
}

.btn-view:hover {
    background: rgba(108, 99, 255, 0.2);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-message:hover {
    background: rgba(0, 217, 255, 0.2);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

/* Online Users List */
.online-users-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.online-user-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.online-user-item:hover {
    border-color: var(--primary);
    background: var(--bg-card-hover);
}

.online-user-item img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.online-user-info {
    flex: 1;
}

.online-user-info .username {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
}

.online-user-info .location {
    font-size: 13px;
    color: var(--text-muted);
}

.online-indicator {
    color: var(--accent-green);
    font-size: 12px;
    animation: pulse 2s infinite;
}

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state p {
    margin-bottom: 20px;
}

/* ============================================
   PROFILE PAGE
   ============================================ */
.profile-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
}

.profile-header {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 30px;
}

.profile-cover {
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--accent-purple));
    position: relative;
}

.profile-avatar-large {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--bg-card);
    background: var(--bg-card);
}

.profile-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.online-status-large {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--accent-green);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.profile-info {
    padding: 80px 30px 30px;
    text-align: center;
}

.profile-info h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

.profile-username {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.match-banner {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    animation: heartbeat 1s infinite;
}

.profile-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

.detail-item i {
    color: var(--primary);
}

.profile-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.profile-content {
    display: grid;
    gap: 20px;
}

.profile-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 25px;
}

.profile-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-section h3 i {
    color: var(--primary);
}

.profile-section p {
    color: var(--text-secondary);
}

/* Edit Profile */
.edit-profile-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px 20px;
}

.edit-profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.edit-profile-card h1 {
    font-size: 24px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h3 {
    margin-bottom: 20px;
    color: var(--primary-light);
}

.current-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
}

.photo-upload {
    text-align: center;
}

.file-upload-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-dark);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
}

.file-upload-label:hover {
    border-color: var(--primary);
    color: var(--primary-light);
}

.file-upload-label i {
    color: var(--primary);
}

#foto_profilo {
    display: none;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* ============================================
   SEARCH PAGE
   ============================================ */
.search-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
}

.search-filters {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 25px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.search-filters h2 {
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filters-form .form-group {
    margin-bottom: 15px;
}

.filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.filter-actions .btn {
    flex: 1;
}

.search-results .results-header {
    margin-bottom: 20px;
}

.search-results .results-header h2 {
    font-size: 20px;
}

/* ============================================
   MESSAGES
   ============================================ */
.messages-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    height: calc(100vh - 70px);
    background: var(--bg-dark);
}

.conversations-list {
    background: var(--bg-card);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.conversations-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.conversations-header h2 {
    font-size: 18px;
}

.conversations {
    flex: 1;
    overflow-y: auto;
}

.conversation-item {
    display: flex;
    gap: 12px;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.conversation-item:hover,
.conversation-item.active {
    background: rgba(108, 99, 255, 0.1);
}

.conv-avatar {
    position: relative;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.conv-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.online-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: var(--accent-green);
    border: 2px solid var(--bg-card);
    border-radius: 50%;
}

.conv-content {
    flex: 1;
    min-width: 0;
}

.conv-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.conv-username {
    font-weight: 600;
    color: var(--text-primary);
}

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

.conv-preview {
    display: flex;
    align-items: center;
    gap: 8px;
}

.unread-badge {
    background: var(--accent-pink);
    color: white;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
    flex-shrink: 0;
}

.last-message {
    font-size: 13px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.empty-conversations {
    padding: 40px 20px;
    text-align: center;
    color: var(--text-muted);
}

.empty-conversations i {
    font-size: 40px;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* Chat Area */
.chat-area {
    display: flex;
    flex-direction: column;
    background: var(--bg-dark);
}

.chat-header {
    padding: 15px 20px;
    background: var(--bg-dark-secondary);
    border-bottom: 1px solid var(--border-color);
}

.chat-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-user img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.chat-username {
    font-weight: 600;
    color: var(--text-primary);
}

.chat-status {
    font-size: 13px;
}

.chat-status.online {
    color: var(--accent-green);
}

.chat-status.offline {
    color: var(--text-muted);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    max-width: 70%;
    animation: fadeInUp 0.3s ease;
}

.message.sent {
    align-self: flex-end;
}

.message.received {
    align-self: flex-start;
}

.message-content {
    padding: 12px 16px;
    border-radius: 18px;
    word-wrap: break-word;
}

.message.sent .message-content {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-bottom-right-radius: 4px;
}

.message.received .message-content {
    background: var(--bg-card);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.message-time {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

.message.sent .message-time {
    text-align: right;
}

.no-messages {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.no-messages i {
    font-size: 50px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.chat-input {
    padding: 15px 20px;
    background: var(--bg-dark-secondary);
    border-top: 1px solid var(--border-color);
}

#message-form {
    display: flex;
    gap: 10px;
}

#message-input {
    flex: 1;
    padding: 14px 20px;
    background: var(--bg-input);
    border: 2px solid var(--border-color);
    border-radius: 30px;
    color: var(--text-primary);
    font-size: 14px;
}

#message-input:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-send {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    color: white;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-send:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.no-chat-selected {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.no-chat-selected i {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.no-chat-selected h3 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

/* ============================================
   LIKES PAGE
   ============================================ */
.likes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.likes-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 10px;
}

.likes-tabs .tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-fast);
}

.likes-tabs .tab:hover {
    color: var(--text-primary);
    background: var(--bg-card-hover);
}

.likes-tabs .tab.active {
    background: linear-gradient(135deg, var(--primary), var(--accent-purple));
    color: white;
}

.tab-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.likes-tabs .tab:not(.active) .tab-count {
    background: var(--bg-dark);
}

.online-count {
    color: var(--accent-green);
    font-size: 14px;
}

/* ============================================
   ADMIN PANEL
   ============================================ */
.admin-container {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: var(--bg-dark-secondary);
    border-right: 1px solid var(--border-color);
    padding: 20px 0;
    flex-shrink: 0;
}

.admin-brand {
    padding: 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.admin-brand i {
    color: var(--accent-pink);
}

.admin-nav {
    padding: 0 10px;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    margin-bottom: 5px;
    transition: var(--transition-fast);
}

.admin-nav a:hover,
.admin-nav a.active {
    background: rgba(108, 99, 255, 0.15);
    color: var(--text-primary);
}

.admin-nav a.active {
    border-left: 3px solid var(--primary);
}

.admin-nav .badge {
    margin-left: auto;
    background: var(--accent-pink);
    color: white;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
}

.nav-divider {
    height: 1px;
    background: var(--border-color);
    margin: 15px 0;
}

.admin-content {
    flex: 1;
    padding: 30px;
    background: var(--bg-dark);
    overflow-y: auto;
}

.admin-header {
    margin-bottom: 30px;
}

.admin-header h1 {
    font-size: 28px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-header p {
    color: var(--text-secondary);
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-fast);
}

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

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.stat-info .stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}

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

.admin-sections {
    display: grid;
    gap: 30px;
}

.admin-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 25px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
}

.table-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    vertical-align: middle;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-green {
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-green);
}

.badge-red {
    background: rgba(255, 71, 87, 0.2);
    color: var(--accent-pink);
}

.badge-gray {
    background: rgba(160, 160, 176, 0.2);
    color: var(--text-secondary);
}

.badge-purple {
    background: rgba(168, 85, 247, 0.2);
    color: var(--accent-purple);
}

.admin-filters {
    margin-bottom: 25px;
}

.admin-filters .filters-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.admin-filters input,
.admin-filters select {
    padding: 10px 15px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
}

.admin-filters input {
    min-width: 200px;
}

.admin-table-container {
    overflow-x: auto;
}

.admin-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    background: var(--bg-dark-secondary);
    padding: 5px;
    border-radius: var(--radius-md);
    width: fit-content;
}

.admin-tabs a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.admin-tabs a:hover {
    color: var(--text-primary);
}

.admin-tabs a.active {
    background: var(--primary);
    color: white;
}

.tab-badge {
    background: rgba(255, 255, 255, 0.3);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.admin-tabs a:not(.active) .tab-badge {
    background: var(--bg-card);
}

.reports-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.report-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.report-users {
    display: flex;
    align-items: center;
    gap: 15px;
}

.report-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.report-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.report-arrow {
    color: var(--text-muted);
}

.report-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.report-status.pending {
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent-orange);
}

.report-status.resolved {
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-green);
}

.report-body {
    margin-bottom: 15px;
}

.report-body h4 {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.report-body p {
    color: var(--text-secondary);
}

.report-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 13px;
}

.report-actions {
    display: flex;
    gap: 10px;
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

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

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.modal-content h2 {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-content h2 i {
    color: var(--accent-pink);
}

/* ============================================
   TOAST
   ============================================ */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 15px 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 3000;
    transform: translateX(calc(100% + 50px));
    transition: var(--transition-normal);
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-color: var(--accent-green);
}

.toast.error {
    border-color: var(--accent-pink);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .search-container {
        grid-template-columns: 1fr;
    }
    
    .search-filters {
        position: static;
    }
    
    .messages-container {
        grid-template-columns: 280px 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-dark-secondary);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
    }
    
    .nav-menu.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .messages-container {
        grid-template-columns: 1fr;
    }
    
    .conversations-list {
        display: none;
    }
    
    .messages-container.show-chat .conversations-list {
        display: flex;
    }
    
    .welcome-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .welcome-stats {
        justify-content: center;
    }
    
    .admin-sidebar {
        display: none;
    }
    
    .likes-tabs {
        flex-direction: column;
    }
}
