/* ============================================
   CAMMY - MAIN STYLES
   Cam & Dating Platform Stylesheet
   Premium Design System v2.0
   ============================================ */

/* ============ DESIGN TOKENS ============ */
:root {
    /* Cammy Brand Colors - Soft Pink, Light Blue & Purple Theme */
    --primary: #e91e63;
    --primary-light: #ff6090;
    --primary-dark: #b0003a;
    --primary-2: #7c4dff;
    --gradient-primary: linear-gradient(135deg, #e91e63 0%, #ff6090 50%, #7c4dff 100%);
    --gradient-secondary: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    --gradient-premium: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    --gradient-soft: linear-gradient(135deg, #fce4ec 0%, #e3f2fd 50%, #ede7f6 100%);
    
    /* Background System - Colorful & Soft */
    --bg-main: linear-gradient(135deg, #fce4ec 0%, #e3f2fd 50%, #ede7f6 100%);
    --bg-main-solid: #faf5f7;
    --bg-panel: #ffffff;
    --bg-panel-2: #fef9fa;
    --bg-card: #ffffff;
    --bg-card-hover: #fff0f3;
    --bg-navbar: linear-gradient(90deg, #ffffff 0%, #fff5f7 50%, #f3f0ff 100%);
    --bg-elevated: #ffffff;
    --bg-soft-pink: #fce4ec;
    --bg-soft-blue: #e3f2fd;
    --bg-soft-purple: #ede7f6;
    --bg-soft-gradient: linear-gradient(135deg, #fce4ec 0%, #e3f2fd 100%);
    
    /* Text Colors - Dark & Readable */
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a6a;
    --text-muted: #7a7a9a;
    --text-accent: #e91e63;
    --text-dark: #0d0d1a;
    --text-on-gradient: #ffffff;
    
    /* Semantic Colors */
    --success: #4caf50;
    --success-light: #c8e6c9;
    --danger: #e91e63;
    --danger-light: #f8bbd9;
    --warning: #ff9800;
    --warning-light: #ffe0b2;
    --info: #2196f3;
    
    /* Border & Shadow - Colorful */
    --border-color: #f0e0e8;
    --border-light: #fce4ec;
    --border-focus: var(--primary);
    --shadow-sm: 0 2px 8px rgba(233, 30, 99, 0.08);
    --shadow-md: 0 8px 24px rgba(233, 30, 99, 0.12);
    --shadow-lg: 0 16px 48px rgba(124, 77, 255, 0.15);
    --shadow-glow: 0 0 30px rgba(233, 30, 99, 0.2);
    --shadow-pink: 0 4px 20px rgba(233, 30, 99, 0.15);
    --shadow-blue: 0 4px 20px rgba(33, 150, 243, 0.15);
    --shadow-purple: 0 4px 20px rgba(124, 77, 255, 0.15);
    
    /* Online Status */
    --online-green: #4caf50;
    
    /* Radius Scale */
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 24px;
    --r-full: 9999px;
    
    /* Spacing Scale */
    --s-1: 4px;
    --s-2: 8px;
    --s-3: 12px;
    --s-4: 16px;
    --s-5: 24px;
    --s-6: 32px;
    --s-7: 48px;
    --s-8: 64px;
    
    /* Typography */
    --font-base: 14px;
    --font-sm: 12px;
    --font-md: 16px;
    --font-lg: 18px;
    --font-xl: 24px;
    --font-2xl: 32px;
    --font-3xl: 40px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.4s ease;
}

/* ============ RESET & BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-main);
    color: var(--text-primary);
    min-height: 100vh;
}

/* Custom Scrollbar - Colorful */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-soft-pink);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #e91e63, #7c4dff);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff6090, #9c7cff);
}

/* ============ TOP NAVBAR ============ */
.top-navbar {
    background: var(--bg-navbar);
    height: 64px;
    border-bottom: 2px solid var(--bg-soft-pink);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

/* Logo */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-primary);
}

.navbar-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.navbar-logo i {
    color: var(--primary);
    font-size: 1.5rem;
}

.navbar-logo:hover {
    color: var(--text-primary);
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(124, 77, 255, 0.1));
}

.nav-links a.active {
    color: var(--primary);
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.15), rgba(124, 77, 255, 0.15));
    font-weight: 600;
}

.nav-links a i {
    font-size: 1rem;
    color: inherit;
}

/* Right Section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-soft-blue);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.language-btn:hover {
    border-color: var(--primary);
    color: var(--text-primary);
    background: var(--bg-soft-pink);
}

.language-btn i {
    font-size: 0.9rem;
}

.language-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    min-width: 200px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    z-index: 1001;
}

.language-selector:hover .language-menu,
.language-selector.active .language-menu {
    display: block;
}

.language-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.language-menu a:hover {
    background: var(--bg-soft-pink);
    color: var(--text-primary);
}

.language-menu a.active {
    background: var(--bg-soft-pink);
    color: var(--primary);
}

/* Notification Icon */
.nav-icon-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text-secondary);
    background: transparent;
    border-radius: 10px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.nav-icon-btn:hover {
    background: var(--bg-soft-pink);
    color: var(--primary);
}

.nav-icon-btn i {
    font-size: 1.1rem;
}

.nav-icon-btn .badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--primary);
    color: white;
    font-size: 0.65rem;
    padding: 2px 5px;
    border-radius: 10px;
    font-weight: 600;
}

/* Premium Button */
.btn-premium {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4);
    color: white;
}

.btn-premium i {
    font-size: 0.9rem;
}

/* ============ USER DROPDOWN ============ */
.user-dropdown {
    position: relative;
}

.user-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 25px;
    transition: background 0.2s ease;
}

.user-dropdown-toggle:hover {
    background: var(--bg-soft-pink);
}

.user-dropdown-toggle img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.user-dropdown-toggle span {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.placeholder-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--bg-soft-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.user-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    min-width: 260px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    z-index: 1000;
}

.user-dropdown.show .user-dropdown-menu {
    display: block;
    animation: dropdownFadeIn 0.2s ease;
}

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

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--bg-soft-pink);
    border-bottom: 1px solid var(--border-color);
}

.dropdown-header img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.dropdown-header-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.dropdown-header-info small {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.user-dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.user-dropdown-menu .dropdown-item:hover {
    background: var(--bg-soft-blue);
    color: var(--text-primary);
}

.user-dropdown-menu .dropdown-item i {
    width: 20px;
    text-align: center;
    font-size: 0.95rem;
}

.user-dropdown-menu .dropdown-item.logout:hover {
    background: var(--bg-soft-pink);
    color: var(--primary);
}

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

/* ============ PROFILE GRID ============ */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    box-shadow: var(--shadow-sm);
}

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

.profile-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.profile-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.profile-card:hover .profile-card-image img {
    transform: scale(1.1);
}

.profile-card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.badge-new {
    background: var(--gradient-primary);
    color: white;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
}

.badge-online {
    width: 12px;
    height: 12px;
    background: var(--online-green);
    border-radius: 50%;
    border: 2px solid var(--bg-card);
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    animation: pulse-online 2s infinite;
}

@keyframes pulse-online {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.profile-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 12px 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.profile-card-name {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.profile-card-name .verified {
    color: #2196f3;
    font-size: 0.9rem;
}

.profile-card-location {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    margin-top: 3px;
}

.profile-card-actions {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.profile-card:hover .profile-card-actions {
    opacity: 1;
    bottom: 70px;
}

.action-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-btn.like {
    background: var(--primary);
    color: white;
}

.action-btn.message {
    background: #4caf50;
    color: white;
}

.action-btn.superlike {
    background: #ff9800;
    color: white;
}

.action-btn:hover {
    transform: scale(1.15);
}

/* ============ SIDEBAR ============ */
.sidebar {
    background: var(--bg-card);
    border-right: 1px solid var(--border-color);
    padding: 20px;
    width: 280px;
    min-height: calc(100vh - 60px);
    box-shadow: var(--shadow-sm);
}

.sidebar-section {
    margin-bottom: 25px;
}

.sidebar-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.sidebar-filter {
    margin-bottom: 15px;
}

.sidebar-filter label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.sidebar-filter select,
.sidebar-filter input {
    width: 100%;
    background: var(--bg-panel-2);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 12px;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.sidebar-filter select:focus,
.sidebar-filter input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

/* Range Slider */
.range-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.range-input {
    width: 60px;
    text-align: center;
}

/* Checkbox Style */
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    cursor: pointer;
}

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

/* ============ BUTTONS ============ */
/* Base Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-2);
    padding: var(--s-3) var(--s-5);
    font-weight: 600;
    font-size: var(--font-base);
    border-radius: var(--r-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    line-height: 1.4;
}

/* Primary Button - Cammy Gradient */
.btn-primary-custom,
.btn-cammy {
    background: linear-gradient(135deg, #e91e63 0%, #ff6b9d 50%, #e91e63 100%);
    background-size: 200% 200%;
    border: none;
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom:hover,
.btn-cammy:hover {
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5);
    color: white !important;
    text-decoration: none !important;
}

.btn-primary-custom:active,
.btn-cammy:active {
    transform: translateY(-1px);
}

.btn-primary-custom:focus,
.btn-cammy:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.3);
}

/* Ghost Button */
.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: none;
    padding: 10px 20px;
    text-decoration: none !important;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
    text-decoration: none !important;
}

/* Outline Button */
.btn-outline-custom,
.btn-outline {
    background: transparent;
    border: 2px solid #e91e63;
    color: #e91e63 !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-outline-custom:hover,
.btn-outline:hover {
    background: linear-gradient(135deg, #e91e63, #ff6b9d);
    color: white !important;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
    text-decoration: none !important;
}

.btn-outline-custom:focus,
.btn-outline:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.2);
}

/* Danger Button */
.btn-danger {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: white;
    border: none;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(244, 67, 54, 0.4);
}

/* Success Button */
.btn-success-custom {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: var(--r-full);
    font-weight: 600;
    transition: all var(--transition-normal);
}

.btn-success-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
    color: white;
}

/* Message Button - Special */
.btn-message {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: var(--r-full);
    font-weight: 600;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
}

.btn-message:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.5);
    color: white;
}

/* Video Call Button */
.btn-video {
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: var(--r-full);
    font-weight: 600;
    transition: all var(--transition-normal);
}

.btn-video:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 188, 212, 0.4);
    color: white;
}

/* Premium Button */
.btn-premium {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-premium);
    color: #1a1a1a;
    padding: 10px 20px;
    border-radius: var(--r-full);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-premium:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    color: #1a1a1a;
}

.btn-premium i {
    font-size: 0.9rem;
}

/* Button Sizes */
.btn-sm {
    padding: 8px 16px;
    font-size: var(--font-sm);
}

.btn-lg {
    padding: 16px 36px;
    font-size: var(--font-md);
}

/* Icon Button */
.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============ PAGINATION ============ */
.pagination-container {
    display: flex;
    justify-content: center;
    padding: 30px 20px;
}

.pagination {
    display: flex;
    gap: 5px;
}

.page-link {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.page-link:hover,
.page-link.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* ============ CARDS ============ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.card-header {
    background: var(--bg-soft-blue);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 20px;
}

/* ============ FORMS ============ */
.form-control, .form-select {
    background: var(--bg-panel-2);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    padding: 12px 16px;
}

.form-control:focus, .form-select:focus {
    background: var(--bg-panel);
    border-color: var(--primary);
    color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

/* ============ FOOTER ============ */
footer {
    background: var(--bg-navbar);
    border-top: 1px solid var(--border-color);
    padding: 40px 0 20px;
    color: var(--text-secondary);
}

footer a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* ============ MODAL ============ */
.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.modal-header, .modal-footer {
    border-color: var(--border-color);
}

.modal-header {
    background: var(--bg-soft-pink);
}

/* ============ DROPDOWN MENU ============ */
.dropdown-menu {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

/* ============ ALERTS ============ */
.alert {
    border-radius: 10px;
}

/* ============ TOAST NOTIFICATIONS ============ */
.toast-container {
    z-index: 9999;
}

/* ============ MOBILE MENU TOGGLE ============ */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-soft-pink);
    border: none;
    border-radius: 12px;
    color: var(--primary);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle:hover {
    background: var(--primary);
    color: white;
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

/* ============ MOBILE BOTTOM NAVIGATION ============ */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    min-width: 60px;
}

.mobile-nav-item i {
    font-size: 1.3rem;
    transition: transform 0.2s ease;
}

.mobile-nav-item span {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mobile-nav-item.active {
    color: var(--primary);
}

.mobile-nav-item.active i {
    transform: scale(1.1);
}

.mobile-nav-item:active {
    transform: scale(0.92);
}

.mobile-nav-item .mobile-badge {
    position: absolute;
    top: 2px;
    right: 8px;
    background: var(--primary);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
}

/* Mobile center action button */
.mobile-nav-item.center-action {
    margin-top: -25px;
}

.mobile-nav-item.center-action i {
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

.mobile-nav-item.center-action span {
    margin-top: 2px;
}

/* ============ MOBILE SLIDE MENU ============ */
.mobile-slide-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
}

.mobile-slide-menu.active {
    display: block;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-slide-menu.active .mobile-menu-overlay {
    opacity: 1;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 320px;
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-slide-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: var(--gradient-soft);
    border-bottom: 1px solid var(--border-color);
}

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

.mobile-menu-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.mobile-menu-user-info {
    display: flex;
    flex-direction: column;
}

.mobile-menu-user-info strong {
    font-size: 1rem;
    color: var(--text-primary);
}

.mobile-menu-user-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: none;
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.mobile-menu-links {
    padding: 15px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s ease;
    margin-bottom: 5px;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    background: var(--bg-soft-pink);
    color: var(--primary);
}

.mobile-menu-link i {
    width: 24px;
    font-size: 1.1rem;
    text-align: center;
}

.mobile-menu-link span {
    font-weight: 500;
    font-size: 0.95rem;
}

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

.mobile-menu-section-title {
    padding: 10px 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* ============ RESPONSIVE - TABLET ============ */
@media (max-width: 1200px) {
    .nav-links a span {
        display: none;
    }
    
    .nav-links a {
        padding: 10px 12px;
    }
    
    .navbar-container {
        padding: 0 15px;
    }
}

@media (max-width: 992px) {
    /* Hide desktop nav */
    .nav-links {
        display: none;
    }
    
    .sidebar {
        display: none;
    }
    
    /* Show mobile elements */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-bottom-nav {
        display: block;
    }
    
    /* Adjust main content for bottom nav */
    main {
        padding-bottom: 85px;
    }
    
    .profile-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    
    /* Hide premium text */
    .btn-premium span {
        display: none;
    }
    
    /* Navbar adjustments */
    .navbar-logo-img {
        height: 40px;
    }
    
    .nav-right {
        gap: 10px;
    }
    
    .user-dropdown-toggle span {
        display: none;
    }
    
    /* Chat sidebar hide on tablet */
    .chat-sidebar-container {
        display: none !important;
    }
}

/* ============ RESPONSIVE - MOBILE ============ */
@media (max-width: 768px) {
    /* Typography */
    :root {
        --font-base: 14px;
        --font-sm: 11px;
        --font-md: 15px;
        --font-lg: 17px;
        --font-xl: 22px;
        --font-2xl: 28px;
    }
    
    /* Navbar */
    .top-navbar {
        height: 56px;
    }
    
    .navbar-container {
        padding: 0 12px;
    }
    
    .navbar-logo-img {
        height: 36px;
    }
    
    /* Profile grid */
    .profile-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 12px;
    }
    
    /* Cards */
    .profile-card {
        border-radius: 12px;
    }
    
    .profile-card-image {
        height: 200px;
    }
    
    /* Buttons */
    .btn-premium {
        padding: 6px 10px;
        border-radius: 15px;
    }
    
    .nav-icon-btn {
        width: 36px;
        height: 36px;
    }
    
    /* User dropdown */
    .user-dropdown-toggle {
        padding: 4px 8px;
    }
    
    .user-dropdown-toggle img {
        width: 32px;
        height: 32px;
    }
    
    /* Footer hide on mobile */
    footer {
        display: none;
    }
    
    /* Cards and containers */
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    /* Modals */
    .modal-dialog {
        margin: 10px;
    }
    
    .modal-content {
        border-radius: 20px;
    }
}

@media (max-width: 576px) {
    .navbar-container {
        padding: 0 10px;
    }
    
    .profile-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 8px;
    }
    
    .profile-card-image {
        height: 180px;
    }
    
    .profile-card-overlay {
        padding: 10px;
    }
    
    .profile-card-name {
        font-size: 0.9rem;
    }
    
    .btn-premium span {
        display: none;
    }
    
    .language-btn span {
        display: none;
    }
    
    /* Hide notification icon text */
    .nav-icon-btn {
        width: 34px;
        height: 34px;
    }
    
    /* Mobile optimizations */
    .nav-right {
        gap: 6px;
    }
    
    /* Language selector mobile */
    .language-selector .language-btn {
        padding: 8px;
        min-width: 42px;
        justify-content: center;
    }
    
    .language-menu {
        right: -10px;
        min-width: 180px;
    }
    
    /* Profile card actions */
    .profile-card-actions {
        gap: 6px;
    }
    
    .profile-card-actions .btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

/* ============ RESPONSIVE - SMALL MOBILE ============ */
@media (max-width: 375px) {
    .profile-grid {
        gap: 6px;
        padding: 6px;
    }
    
    .profile-card-image {
        height: 160px;
    }
    
    .mobile-nav-item {
        min-width: 50px;
        padding: 6px 8px;
    }
    
    .mobile-nav-item span {
        font-size: 0.6rem;
    }
    
    .navbar-logo-img {
        height: 32px;
    }
}

/* ============ TOUCH OPTIMIZATIONS ============ */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .btn, button, a {
        min-height: 44px;
    }
    
    .nav-icon-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Remove hover effects on touch */
    .profile-card:hover {
        transform: none;
    }
    
    /* Active states instead */
    .profile-card:active {
        transform: scale(0.98);
    }
    
    .mobile-nav-item:active {
        background: var(--bg-soft-pink);
    }
    
    /* Disable text selection on buttons */
    .btn, button {
        -webkit-user-select: none;
        user-select: none;
    }
}

/* ============ SAFE AREA (iPhone X+) ============ */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .mobile-bottom-nav {
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
    }
    
    main {
        padding-bottom: calc(85px + env(safe-area-inset-bottom));
    }
}

/* ============ LANDSCAPE MOBILE ============ */
@media (max-height: 500px) and (orientation: landscape) {
    .mobile-bottom-nav {
        padding: 4px 0;
    }
    
    .mobile-nav-item {
        padding: 4px 10px;
    }
    
    .mobile-nav-item span {
        display: none;
    }
    
    .mobile-nav-item.center-action {
        margin-top: -15px;
    }
    
    .mobile-nav-item.center-action i {
        width: 44px;
        height: 44px;
    }
}

/* ============ DARK MODE SUPPORT ============ */
@media (prefers-color-scheme: dark) {
    /* Future dark mode implementation */
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============ UTILITY CLASSES ============ */
.text-primary-color {
    color: var(--primary) !important;
}

.bg-primary-gradient {
    background: var(--gradient-primary);
}

.border-primary-color {
    border-color: var(--primary) !important;
}

/* ============ PREMIUM CARDS ============ */
.premium-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.premium-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.premium-card:hover::before {
    opacity: 1;
}

/* ============ STAT CARDS ============ */
.stat-card-premium {
    background: var(--bg-panel-2);
    border: 1px solid var(--border-color);
    border-radius: var(--r-lg);
    padding: var(--s-5);
    text-align: center;
    transition: all var(--transition-normal);
    cursor: pointer;
}

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

.stat-card-premium .stat-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--s-3);
    font-size: 1.4rem;
}

.stat-card-premium .stat-value {
    font-size: var(--font-2xl);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card-premium .stat-label {
    color: var(--text-muted);
    font-size: var(--font-sm);
    margin-top: var(--s-1);
}

/* ============ PROFILE CARD ENHANCED ============ */
.profile-card-enhanced {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
}

.profile-card-enhanced:hover {
    border-color: var(--primary);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.25);
}

.profile-card-enhanced .card-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.profile-card-enhanced .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.profile-card-enhanced:hover .card-image img {
    transform: scale(1.12);
}

.profile-card-enhanced .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--s-7) var(--s-4) var(--s-4);
    background: linear-gradient(transparent, rgba(0,0,0,0.95));
}

.profile-card-enhanced .card-actions {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--s-3);
    opacity: 0;
    transition: all var(--transition-normal);
}

.profile-card-enhanced:hover .card-actions {
    opacity: 1;
    bottom: 90px;
}

.profile-card-enhanced .action-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
}

.profile-card-enhanced .action-btn.like {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

.profile-card-enhanced .action-btn.message {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.4);
}

.profile-card-enhanced .action-btn:hover {
    transform: scale(1.15);
}

/* ============ BADGES ============ */
.badge-online-dot {
    width: 12px;
    height: 12px;
    background: var(--online-green);
    border-radius: 50%;
    border: 2px solid var(--bg-card);
    animation: pulse-online 2s infinite;
}

.badge-premium {
    background: var(--gradient-premium);
    color: #1a1a1a;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: var(--r-full);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-new {
    background: var(--gradient-primary);
    color: white;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: var(--r-full);
    font-weight: 600;
}

.badge-verified {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    color: white;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: var(--r-full);
    font-weight: 600;
}

/* ============ PILLS & CHIPS ============ */
.pill {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    padding: var(--s-2) var(--s-4);
    background: var(--bg-panel-2);
    border: 1px solid var(--border-color);
    border-radius: var(--r-full);
    font-size: var(--font-sm);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

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

.pill.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    padding: var(--s-1) var(--s-3);
    background: rgba(233, 30, 99, 0.1);
    border-radius: var(--r-md);
    font-size: var(--font-sm);
    color: var(--primary);
}

/* ============ EMPTY STATES ============ */
.empty-state-premium {
    text-align: center;
    padding: var(--s-8) var(--s-5);
    background: var(--bg-panel);
    border: 1px dashed var(--border-color);
    border-radius: var(--r-lg);
}

.empty-state-premium .empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--s-5);
    background: var(--bg-panel-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-state-premium .empty-icon i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.empty-state-premium h4 {
    color: var(--text-primary);
    margin-bottom: var(--s-2);
}

.empty-state-premium p {
    color: var(--text-muted);
    margin-bottom: var(--s-5);
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* ============ INPUT FIELDS ENHANCED ============ */
.input-premium {
    width: 100%;
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: var(--r-md);
    padding: var(--s-3) var(--s-4);
    color: var(--text-primary);
    font-size: var(--font-base);
    transition: all var(--transition-fast);
}

.input-premium:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.15);
}

.input-premium::placeholder {
    color: var(--text-muted);
}

/* ============ TOGGLE SWITCH ============ */
.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-panel-2);
    border: 1px solid var(--border-color);
    border-radius: var(--r-full);
    transition: all var(--transition-fast);
}

.toggle-slider::before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background: var(--text-secondary);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--gradient-primary);
    border-color: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(24px);
    background: white;
}

/* ============ PROGRESS BAR ============ */
.progress-premium {
    height: 8px;
    background: var(--bg-panel-2);
    border-radius: var(--r-full);
    overflow: hidden;
}

.progress-premium .progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--r-full);
    transition: width var(--transition-slow);
}

/* ============ TOAST/ALERT ENHANCED ============ */
.toast-premium {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--r-md);
    padding: var(--s-4);
    display: flex;
    align-items: center;
    gap: var(--s-3);
    box-shadow: var(--shadow-lg);
}

.toast-premium.success {
    border-left: 4px solid var(--success);
}

.toast-premium.error {
    border-left: 4px solid var(--danger);
}

.toast-premium.warning {
    border-left: 4px solid var(--warning);
}

/* ============ FILTER NAVBAR ENHANCED ============ */
.filter-navbar {
    background: var(--bg-panel);
    border-bottom: 1px solid var(--border-color);
    padding: var(--s-4) 0;
    position: sticky;
    top: 60px;
    z-index: 100;
}

.filter-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--s-5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--s-4);
}

.filter-select {
    background: var(--bg-panel-2);
    border: 1px solid var(--border-color);
    border-radius: var(--r-md);
    padding: var(--s-2) var(--s-4);
    color: var(--text-primary);
    font-size: var(--font-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-select:hover,
.filter-select:focus {
    border-color: var(--primary);
    outline: none;
}

.filter-label {
    color: var(--text-muted);
    font-size: var(--font-sm);
}

.result-count {
    color: var(--text-secondary);
    font-size: var(--font-sm);
}

.result-count strong {
    color: var(--primary);
}

/* ============ WHO LIKED ME BLUR ============ */
.blur-card {
    position: relative;
}

.blur-card .blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-lg);
    z-index: 10;
}

.blur-card .blur-overlay i {
    font-size: 2rem;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--s-3);
}

.blur-card .blur-overlay span {
    color: var(--text-secondary);
    font-size: var(--font-sm);
    margin-bottom: var(--s-3);
}

/* ============ QUICK ACTIONS GRID ============ */
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-3);
}

.quick-action-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: var(--r-lg);
    padding: var(--s-5);
    text-align: center;
    text-decoration: none;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--s-3);
}

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

.quick-action-card .action-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
}

.quick-action-card span {
    color: var(--text-primary);
    font-weight: 500;
    font-size: var(--font-sm);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.4s ease forwards;
}

.skeleton {
    background: linear-gradient(90deg, var(--bg-panel) 25%, var(--bg-panel-2) 50%, var(--bg-panel) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* ============ TEXT GRADIENT ============ */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-gold {
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============ GLOW EFFECTS ============ */
.glow-primary {
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.3);
}

.glow-success {
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
}

.glow-premium {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* ============ GLOBAL DARK TEXT OVERRIDES ============ */
/* Ensure all text is readable on light backgrounds */
body {
    color: var(--text-primary);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
}

p, span, div, label, li {
    color: inherit;
}

.card-body,
.card-title,
.card-text {
    color: var(--text-primary) !important;
}

.card-body p,
.card-body span,
.card-body h5,
.card-body h6 {
    color: var(--text-primary) !important;
}

/* Bootstrap text utilities override */
.text-white {
    color: var(--text-primary) !important;
}

.text-light {
    color: var(--text-secondary) !important;
}

/* Exception: Keep white text on gradient/dark backgrounds */
.btn-primary,
.btn-danger,
.btn-success,
.btn-sexy,
.badge,
.badge-online,
.badge-new,
.interest-tag,
.btn-like,
.btn-message-match,
.btn-video-match,
.action-btn,
.verified-badge,
.online-badge,
.online-indicator,
.match-badge,
.profile-card-overlay .profile-card-name,
.profile-card-overlay .profile-card-location,
.member-overlay,
.member-overlay .member-name,
.member-overlay .member-age {
    color: #ffffff !important;
}

/* Ensure form elements have dark text */
input, select, textarea {
    color: var(--text-primary) !important;
}

input::placeholder {
    color: var(--text-muted) !important;
}

/* Container backgrounds */
.container,
.container-fluid {
    color: var(--text-primary);
}

/* Card backgrounds */
.card {
    background: #ffffff;
    color: var(--text-primary);
}

/* ============ NAVBAR AUTH BUTTONS ============ */
/* Remove underline from all button-like links */
a.btn-primary-custom,
a.btn-outline-custom,
a.btn-cammy,
a.btn-outline,
a.btn-ghost,
.nav-right a {
    text-decoration: none !important;
}

a.btn-primary-custom:hover,
a.btn-outline-custom:hover,
a.btn-cammy:hover,
a.btn-outline:hover,
a.btn-ghost:hover,
.nav-right a:hover {
    text-decoration: none !important;
}

/* Navbar auth button improvements */
.nav-right .btn-outline-custom {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid #e91e63;
}

.nav-right .btn-primary-custom {
    background: linear-gradient(135deg, #e91e63 0%, #ff6b9d 100%);
}