/* Main Design System CSS - Reusable Components for Dating App */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700&display=swap');

/* =================
   CSS CUSTOM PROPERTIES (CSS Variables)
   ================= */
:root {
    /* Primary Colors */
    --lw-primary: #33196b;
    --lw-secondary: #645290;
    --lw-primary-light: #7c3aed;
    --lw-primary-dark: #1e1b4b;
    
    /* Gradient Colors */
    --lw-gradient-start: #5B3E96;
    --lw-gradient-end: #5B3E96;
    --lw-gradient-light: linear-gradient(135deg, rgba(197, 62, 141, 0.1), rgba(139, 92, 246, 0.1));
    --lw-gradient-main: linear-gradient(135deg, var(--lw-gradient-start), var(--lw-gradient-end));
    
    /* Neutral Colors */
    --lw-white: #ffffff;
    --lw-light-gray: #f8f9fc;
    --lw-gray-50: #f9fafb;
    --lw-gray-100: #f3f4f6;
    --lw-gray-200: #e5e7eb;
    --lw-gray-300: #d1d5db;
    --lw-gray-400: #9ca3af;
    --lw-gray-500: #6b7280;
    --lw-gray-600: #4b5563;
    --lw-gray-700: #374151;
    --lw-gray-800: #1f2937;
    --lw-gray-900: #111827;
    
    /* Social Colors */
    --lw-facebook: #4267B2;
    --lw-google: #db4437;
    --lw-facebook-hover: #365899;
    --lw-google-hover: #c23321;
    
    /* Status Colors */
    --lw-success: #10b981;
    --lw-warning: #f59e0b;
    --lw-danger: #ef4444;
    --lw-info: #3b82f6;
    
    /* Border and Shadow */
    --lw-border: #e0e0e0;
    --lw-shadow: rgba(0, 0, 0, 0.1);
    --lw-shadow-light: rgba(0, 0, 0, 0.05);
    --lw-shadow-medium: rgba(0, 0, 0, 0.15);
    --lw-shadow-heavy: rgba(0, 0, 0, 0.25);
    
    /* Typography */
    --lw-font-family: 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --lw-font-size-xs: 12px;
    --lw-font-size-sm: 14px;
    --lw-font-size-base: 16px;
    --lw-font-size-lg: 18px;
    --lw-font-size-xl: 20px;
    --lw-font-size-2xl: 24px;
    --lw-font-size-3xl: 30px;
    --lw-font-size-4xl: 36px;
    
    /* Spacing */
    --lw-space-xs: 4px;
    --lw-space-sm: 8px;
    --lw-space-md: 16px;
    --lw-space-lg: 24px;
    --lw-space-xl: 32px;
    --lw-space-2xl: 48px;
    --lw-space-3xl: 64px;
    
    /* Border Radius */
    --lw-radius-sm: 8px;
    --lw-radius-md: 12px;
    --lw-radius-lg: 16px;
    --lw-radius-xl: 20px;
    --lw-radius-full: 9999px;
    
    /* Transitions */
    --lw-transition: all 0.3s ease;
    --lw-transition-fast: all 0.15s ease;
    --lw-transition-slow: all 0.5s ease;
    
    /* Z-index */
    --lw-z-behind: -1;
    --lw-z-default: 1;
    --lw-z-tooltip: 10;
    --lw-z-dropdown: 20;
    --lw-z-sticky: 30;
    --lw-z-modal: 40;
    --lw-z-popover: 50;
}

/* =================
   UTILITY CLASSES
   ================= */

/* Font Family */
.lw-font {
    font-family: var(--lw-font-family) !important;
}

/* Text Colors */
.lw-text-primary { color: var(--lw-primary) !important; }
.lw-text-secondary { color: var(--lw-secondary) !important; }
.lw-text-white { color: var(--lw-white) !important; }
.lw-text-gray-50 { color: var(--lw-gray-50) !important; }
.lw-text-gray-100 { color: var(--lw-gray-100) !important; }
.lw-text-gray-200 { color: var(--lw-gray-200) !important; }
.lw-text-gray-300 { color: var(--lw-gray-300) !important; }
.lw-text-gray-400 { color: var(--lw-gray-400) !important; }
.lw-text-gray-500 { color: var(--lw-gray-500) !important; }
.lw-text-gray-600 { color: var(--lw-gray-600) !important; }
.lw-text-gray-700 { color: var(--lw-gray-700) !important; }
.lw-text-gray-800 { color: var(--lw-gray-800) !important; }
.lw-text-gray-900 { color: var(--lw-gray-900) !important; }

/* Background Colors */
.lw-bg-primary { background-color: var(--lw-primary) !important; }
.lw-bg-secondary { background-color: var(--lw-secondary) !important; }
.lw-bg-white { background-color: var(--lw-white) !important; }
.lw-bg-light { background-color: var(--lw-light-gray) !important; }
.lw-bg-gradient { background: var(--lw-gradient-main) !important; }
.lw-bg-gradient-light { background: var(--lw-gradient-light) !important; }

/* =================
   LAYOUT COMPONENTS
   ================= */

/* Full Page Container */
.lw-page-container {
    min-height: 100vh;
    background-color: var(--lw-white);
    font-family: var(--lw-font-family);
    color: var(--lw-primary);
    overflow-x: hidden;
}

/* Gradient Backgrounds for Auth Pages */
.lw-gradient-bg-bottom {
    position: fixed;
    bottom: -200px;
    left: -250px;
    width: 591px;
    height: 591px;
    background: linear-gradient(135deg, rgba(197, 62, 141, 0.3), rgba(139, 92, 246, 0.3));
    border-radius: 50%;
    transform: rotate(75deg);
    z-index: var(--lw-z-behind);
    pointer-events: none;
}

.lw-gradient-bg-top {
    position: fixed;
    top: -300px;
    right: -200px;
    width: 591px;
    height: 591px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(197, 62, 141, 0.2));
    border-radius: 50%;
    transform: rotate(75deg);
    z-index: var(--lw-z-behind);
    pointer-events: none;
}

/* Card Components */
.lw-card {
    background: var(--lw-white);
    border-radius: var(--lw-radius-xl);
    box-shadow: 0 20px 40px var(--lw-shadow);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lw-card-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--lw-radius-xl);
    box-shadow: 0 20px 40px var(--lw-shadow);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Section Containers */
.lw-section {
    padding: var(--lw-space-2xl) var(--lw-space-md);
}

.lw-section-lg {
    padding: var(--lw-space-3xl) var(--lw-space-lg);
}

/* =================
   TYPOGRAPHY COMPONENTS
   ================= */

.lw-title {
    font-family: var(--lw-font-family);
    font-weight: 600;
    font-size: var(--lw-font-size-4xl);
    color: var(--lw-primary);
    margin-bottom: var(--lw-space-md);
    text-align: center;
}

.lw-title-sm {
    font-size: var(--lw-font-size-2xl);
}

.lw-title-lg {
    font-size: 48px;
}

.lw-subtitle {
    font-family: var(--lw-font-family);
    font-weight: 500;
    font-size: var(--lw-font-size-base);
    color: var(--lw-secondary);
    line-height: 1.4;
    text-align: center;
    margin-bottom: 0;
    letter-spacing: 0.16px;
}

.lw-heading-1 {
    font-family: var(--lw-font-family);
    font-weight: 700;
    font-size: var(--lw-font-size-3xl);
    color: var(--lw-primary);
}

.lw-heading-2 {
    font-family: var(--lw-font-family);
    font-weight: 600;
    font-size: var(--lw-font-size-2xl);
    color: var(--lw-primary);
}

.lw-heading-3 {
    font-family: var(--lw-font-family);
    font-weight: 600;
    font-size: var(--lw-font-size-xl);
    color: var(--lw-primary);
}

.lw-body-text {
    font-family: var(--lw-font-family);
    font-weight: 400;
    font-size: var(--lw-font-size-base);
    color: var(--lw-gray-600);
    line-height: 1.6;
}

.lw-small-text {
    font-family: var(--lw-font-family);
    font-weight: 400;
    font-size: var(--lw-font-size-sm);
    color: var(--lw-gray-500);
}

/* =================
   FORM COMPONENTS
   ================= */

.lw-form-group {
    margin-bottom: var(--lw-space-lg);
}

.lw-form-label {
    display: block;
    font-family: var(--lw-font-family);
    font-weight: 600;
    font-size: var(--lw-font-size-sm);
    color: var(--lw-gray-700);
    margin-bottom: var(--lw-space-sm);
}

/* Input Container */
.lw-input-container {
    position: relative;
}

.lw-input-with-icon {
    position: relative;
}

.lw-input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lw-secondary);
    font-weight: 600;
    z-index: var(--lw-z-default);
    font-size: var(--lw-font-size-lg);
}

/* Form Inputs */
.lw-form-input {
    width: 100%;
    height: 60px;
    background-color: var(--lw-white);
    border: 2px solid var(--lw-gradient-start);
    border-radius: var(--lw-radius-full);
    padding: 0 20px;
    font-family: var(--lw-font-family);
    font-weight: 500;
    font-size: var(--lw-font-size-lg);
    color: var(--lw-primary);
    transition: var(--lw-transition);
    outline: none;
}

.lw-form-input::placeholder {
    color: var(--lw-secondary);
    opacity: 0.9;
}

.lw-form-input:focus {
    border-color: var(--lw-gradient-end);
    box-shadow: 0 0 0 3px rgba(197, 62, 141, 0.1);
}

.lw-form-input-with-icon {
    padding-left: 50px;
}

/* Textarea */
.lw-form-textarea {
    width: 100%;
    min-height: 120px;
    background-color: var(--lw-white);
    border: 2px solid var(--lw-gradient-start);
    border-radius: var(--lw-radius-lg);
    padding: var(--lw-space-md) 20px;
    font-family: var(--lw-font-family);
    font-weight: 500;
    font-size: var(--lw-font-size-base);
    color: var(--lw-primary);
    transition: var(--lw-transition);
    outline: none;
    resize: vertical;
}

.lw-form-textarea:focus {
    border-color: var(--lw-gradient-end);
    box-shadow: 0 0 0 3px rgba(197, 62, 141, 0.1);
}

/* Select Dropdown */
.lw-form-select {
    width: 100%;
    height: 60px;
    background-color: var(--lw-white);
    border: 2px solid var(--lw-gradient-start);
    border-radius: var(--lw-radius-full);
    padding: 0 20px;
    font-family: var(--lw-font-family);
    font-weight: 500;
    font-size: var(--lw-font-size-lg);
    color: var(--lw-primary);
    outline: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23645290" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 20px;
    transition: var(--lw-transition);
    cursor: pointer;
}

.lw-form-select:focus {
    border-color: var(--lw-gradient-end);
    box-shadow: 0 0 0 3px rgba(197, 62, 141, 0.1);
}

.lw-form-select option {
    color: var(--lw-primary);
    background-color: var(--lw-white);
    padding: var(--lw-space-sm);
}

/* Country Code Select */
.lw-country-select {
    width: 85px;
    height: 60px;
    background-color: var(--lw-white);
    border: 2px solid var(--lw-gradient-start);
    border-radius: var(--lw-radius-full);
    padding: 0 12px;
    font-family: var(--lw-font-family);
    font-weight: 500;
    font-size: var(--lw-font-size-sm);
    color: var(--lw-primary);
    outline: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23645290" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    transition: var(--lw-transition);
}

/* Mobile Input Group */
.lw-mobile-input-group {
    display: flex;
    gap: var(--lw-space-sm);
}

.lw-mobile-input {
    flex: 1;
}

/* Date Input */
.lw-date-input {
    color-scheme: light;
}

.lw-date-input::-webkit-calendar-picker-indicator {
    color-scheme: light;
    cursor: pointer;
}

/* File Upload */
.lw-file-input {
    width: 100%;
    height: 60px;
    background-color: var(--lw-white);
    border: 2px dashed var(--lw-gradient-start);
    border-radius: var(--lw-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--lw-transition);
    position: relative;
    overflow: hidden;
}

.lw-file-input:hover {
    border-color: var(--lw-gradient-end);
    background-color: rgba(197, 62, 141, 0.05);
}

.lw-file-input input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* =================
   BUTTON COMPONENTS
   ================= */

/* Primary Button */
.lw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lw-font-family);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--lw-transition);
    text-align: center;
    outline: none;
    position: relative;
    overflow: hidden;
}

.lw-btn-primary {
    background: var(--lw-gradient-main);
    color: var(--lw-white);
    border-radius: var(--lw-radius-full);
    padding: var(--lw-space-md) var(--lw-space-xl);
    font-size: var(--lw-font-size-base);
    letter-spacing: 0.16px;
}

.lw-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(197, 62, 141, 0.3);
    color: var(--lw-white);
    text-decoration: none;
}

.lw-btn-primary:active {
    transform: translateY(0);
}

/* Large Primary Button */
.lw-btn-primary-lg {
    height: 65px;
    padding: 0 var(--lw-space-2xl);
    font-size: var(--lw-font-size-lg);
    letter-spacing: 0.18px;
    border-radius: 80px;
}

/* Full Width Button */
.lw-btn-full {
    width: 100%;
}

/* Secondary Button */
.lw-btn-secondary {
    background-color: transparent;
    color: var(--lw-primary);
    border: 2px solid var(--lw-primary);
    border-radius: var(--lw-radius-full);
    padding: var(--lw-space-md) var(--lw-space-xl);
    font-size: var(--lw-font-size-base);
}

.lw-btn-secondary:hover {
    background-color: var(--lw-primary);
    color: var(--lw-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(51, 25, 107, 0.3);
    text-decoration: none;
}

/* Link Button */
.lw-btn-link {
    background: none;
    border: none;
    color: var(--lw-secondary);
    font-family: var(--lw-font-family);
    font-weight: 500;
    font-size: var(--lw-font-size-sm);
    text-decoration: none;
    cursor: pointer;
    transition: var(--lw-transition);
}

.lw-btn-link:hover {
    color: var(--lw-primary);
    text-decoration: underline;
}

/* Social Buttons */
.lw-social-btn {
    width: 63px;
    height: 63px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--lw-transition);
    color: white;
    font-size: 24px;
    border: none;
    cursor: pointer;
}

.lw-social-facebook {
    background-color: var(--lw-facebook);
}

.lw-social-facebook:hover {
    background-color: var(--lw-facebook-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 103, 178, 0.4);
    color: white;
    text-decoration: none;
}

.lw-social-google {
    background-color: var(--lw-google);
}

.lw-social-google:hover {
    background-color: var(--lw-google-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(219, 68, 55, 0.4);
    color: white;
    text-decoration: none;
}

/* Button Loading State */
.lw-btn-loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

/* =================
   DIVIDER COMPONENTS
   ================= */

.lw-divider {
    position: relative;
    margin: var(--lw-space-xl) 0;
    text-align: center;
}

.lw-divider-line {
    height: 1px;
    background-color: var(--lw-border);
    margin: 0 auto;
}

.lw-divider-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background-color: var(--lw-white);
    border: 1px solid var(--lw-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lw-divider-text {
    font-family: var(--lw-font-family);
    font-weight: 500;
    font-size: var(--lw-font-size-base);
    color: var(--lw-primary);
    letter-spacing: 0.16px;
}

/* =================
   LOGO COMPONENTS
   ================= */

.lw-logo {
    height: 60px;
    object-fit: contain;
}

.lw-logo-sm {
    height: 40px;
}

.lw-logo-lg {
    height: 80px;
}

.lw-logo-white {
    filter: brightness(0) invert(1);
}

/* =================
   ALERT COMPONENTS
   ================= */

.lw-alert {
    border-radius: var(--lw-radius-md);
    padding: var(--lw-space-md);
    margin-bottom: var(--lw-space-md);
    font-family: var(--lw-font-family);
    font-weight: 500;
    border: none;
}

.lw-alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #065f46;
    border-left: 4px solid var(--lw-success);
}

.lw-alert-warning {
    background-color: rgba(245, 158, 11, 0.1);
    color: #92400e;
    border-left: 4px solid var(--lw-warning);
}

.lw-alert-danger {
    background-color: rgba(239, 68, 68, 0.1);
    color: #991b1b;
    border-left: 4px solid var(--lw-danger);
}

.lw-alert-info {
    background-color: rgba(59, 130, 246, 0.1);
    color: #1e40af;
    border-left: 4px solid var(--lw-info);
}

/* =================
   CHECKBOX & RADIO COMPONENTS
   ================= */

/* Custom Checkbox */
.lw-checkbox-container {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: var(--lw-space-sm);
    cursor: pointer;
}

.lw-checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--lw-border);
    border-radius: var(--lw-radius-sm);
    background-color: var(--lw-white);
    cursor: pointer;
    position: relative;
    transition: var(--lw-transition);
}

.lw-checkbox:checked {
    background-color: var(--lw-gradient-start);
    border-color: var(--lw-gradient-start);
}

.lw-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--lw-white);
    font-size: 12px;
    font-weight: bold;
}

.lw-checkbox-label {
    font-family: var(--lw-font-family);
    font-weight: 400;
    font-size: var(--lw-font-size-sm);
    color: var(--lw-secondary);
    line-height: 1.4;
    cursor: pointer;
}

.lw-checkbox-label a {
    color: var(--lw-primary);
    text-decoration: none;
    font-weight: 500;
}

.lw-checkbox-label a:hover {
    text-decoration: underline;
}

/* =================
   RESPONSIVE UTILITIES
   ================= */

/* Mobile-first responsive breakpoints */
@media (max-width: 480px) {
    .lw-hide-mobile { display: none !important; }
    .lw-title { font-size: var(--lw-font-size-2xl); }
    .lw-form-input { height: 48px; font-size: var(--lw-font-size-base); }
    .lw-btn-primary-lg { height: 48px; font-size: var(--lw-font-size-base); }
    .lw-social-btn { width: 45px; height: 45px; font-size: 16px; }
    .lw-mobile-input-group { flex-direction: column; gap: var(--lw-space-md); }
    .lw-country-select { width: 100%; height: 48px; }
}

@media (max-width: 768px) {
    .lw-hide-tablet { display: none !important; }
    .lw-gradient-bg-bottom, .lw-gradient-bg-top { display: none; }
    .lw-section { padding: var(--lw-space-xl) var(--lw-space-md); }
}

@media (min-width: 769px) {
    .lw-hide-desktop { display: none !important; }
}

/* Progressive Web App specific styles */
@media (max-width: 768px) {
    .lw-pwa-container {
        -webkit-user-select: none;
        -webkit-touch-callout: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    .lw-form-input {
        -webkit-appearance: none;
        -webkit-border-radius: var(--lw-radius-full);
    }
    
    .lw-btn-primary {
        -webkit-appearance: none;
        -webkit-border-radius: 80px;
    }
    
    /* Subtle animation for mobile interactions */
    .lw-form-input:focus,
    .lw-btn-primary:active,
    .lw-social-btn:active {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
    }
}

#accordionSidebar {
    background: #5B3E96 !important;
    box-shadow: 4px 0 15px rgba(0,0,0,0.2);
    border-bottom-left-radius: 40px;
}

#accordionSidebar .nav-link:hover {
    background: rgba(255,255,255,0.1) !important;
    color: white !important;
    transform: translateX(4px);
}

#accordionSidebar .nav-link:hover i {
    color: #e91e63 !important;
}

#accordionSidebar .nav-link.active {
    background: rgba(255,255,255,0.15) !important;
    color: white !important;
}

#accordionSidebar .nav-link.active i {
    color: #e91e63 !important;
}

/* Default icon colors */
#accordionSidebar .nav-link i {
    color: white !important;
    transition: color 0.3s ease;
}

.lw-featured-users-block .btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3) !important;
}

.lw-featured-users a:hover img {
    border-color: #e91e63 !important;
    transform: scale(1.05);
}

.filepond--root .filepond--item-panel {
          background: #5B3E96 !important; /* Replace with your desired color code or name */
    }
.filepond--root .filepond--image-preview {
    background-color: #3498db; /* A shade of blue */
}
.filepond--panel-root {
    background: #5B3E96 !important;
}
.filepond--drop-label {
    color: black;
}

/* =================
   MODERN PRELOADER COMPONENTS
   ================= */

/* Main Preloader Container */
.lw-modern-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--lw-gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.lw-modern-preloader.lw-preloader-hidden {
    opacity: 0;
    visibility: hidden;
}

/* Background Decorative Elements */
.lw-preloader-bg-1,
.lw-preloader-bg-2 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: lw-float 6s ease-in-out infinite;
}

.lw-preloader-bg-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: -100px;
    animation-delay: 0s;
}

.lw-preloader-bg-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    animation-delay: 3s;
}

/* Main Content Container */
.lw-preloader-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: lw-fadeInUp 1s ease-out;
}

/* Heart Loader Animation */
.lw-heart-loader {
    position: relative;
    margin-bottom: var(--lw-space-xl);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lw-heart {
    position: absolute;
    width: 20px;
    height: 18px;
    background: var(--lw-white);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: lw-heartbeat 1.5s ease-in-out infinite;
}

.lw-heart:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 18px;
    background: var(--lw-white);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: translateX(-50%) rotate(-45deg);
    transform-origin: 0 100%;
}

.lw-heart:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 18px;
    background: var(--lw-white);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

.lw-heart-1 { animation-delay: 0s; }
.lw-heart-2 { animation-delay: 0.5s; opacity: 0.7; transform: scale(0.8); }
.lw-heart-3 { animation-delay: 1s; opacity: 0.4; transform: scale(0.6); }

/* Logo Styling */
.lw-preloader-logo {
    margin-bottom: var(--lw-space-lg);
    animation: lw-pulse 2s ease-in-out infinite;
}

.lw-preloader-logo .lw-logo {
    filter: brightness(0) invert(1);
    max-height: 60px;
    max-width: 200px;
}

/* Text Styling */
.lw-preloader-text {
    margin-bottom: var(--lw-space-xl);
}

.lw-preloader-text .lw-title {
    color: var(--lw-white);
    font-family: var(--lw-font-family);
    font-weight: 600;
    font-size: var(--lw-font-size-2xl);
    margin-bottom: var(--lw-space-md);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Loading Dots Animation */
.lw-loading-dots {
    display: flex;
    justify-content: center;
    gap: var(--lw-space-sm);
}

.lw-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--lw-white);
    animation: lw-bounce 1.4s ease-in-out infinite both;
}

.lw-dot-1 { animation-delay: 0s; }
.lw-dot-2 { animation-delay: 0.16s; }
.lw-dot-3 { animation-delay: 0.32s; }

/* Progress Bar */
.lw-progress-container {
    width: 200px;
    margin: 0 auto;
}

.lw-progress-bar {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: var(--lw-radius-full);
    overflow: hidden;
    position: relative;
}

.lw-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        var(--lw-white) 50%, 
        rgba(255, 255, 255, 0.8) 100%);
    border-radius: var(--lw-radius-full);
    animation: lw-progress 2s ease-in-out infinite;
}

/* Keyframe Animations */
@keyframes lw-heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

@keyframes lw-bounce {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.5; }
    40% { transform: translateY(-10px); opacity: 1; }
}

@keyframes lw-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

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

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .lw-preloader-text .lw-title {
        font-size: var(--lw-font-size-xl);
    }
    
    .lw-preloader-logo .lw-logo {
        max-height: 50px;
        max-width: 150px;
    }
    
    .lw-heart {
        width: 16px;
        height: 14px;
    }
    
    .lw-heart:before,
    .lw-heart:after {
        width: 16px;
        height: 14px;
    }
    
    .lw-progress-container {
        width: 150px;
    }
    
    .lw-preloader-bg-1,
    .lw-preloader-bg-2 {
        display: none;
    }
}

@media (max-width: 320px) {
    .lw-preloader-text .lw-title {
        font-size: var(--lw-font-size-lg);
    }
    
    .lw-progress-container {
        width: 120px;
    }
}

/* =================
   MODERN NAVBAR COMPONENTS
   ================= */

/* Main Navbar Container */
.lw-navbar {
    background-color: rgba(28, 28, 28, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--lw-font-family);
    min-height: 80px;
    transition: all 0.3s ease-in-out;
}

.lw-navbar.lw-navbar-scrolled {
    background-color: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Navigation Links */
.lw-nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--lw-font-family);
    font-weight: 500;
    font-size: var(--lw-font-size-base);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: var(--lw-radius-md);
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.lw-nav-link:hover {
    color: var(--lw-white);
    background-color: rgba(197, 62, 141, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
}

.lw-nav-link:focus {
    outline: none;
    color: var(--lw-white);
    text-decoration: none;
}

.lw-nav-link.active {
    color: var(--lw-gradient-start);
    background-color: rgba(197, 62, 141, 0.15);
}

/* Dropdown Styling */
.lw-dropdown-toggle {
    cursor: pointer;
    background: none;
    border: none;
}

.lw-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    background: rgba(18, 17, 23, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--lw-radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 8px;
}

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

.lw-dropdown-header {
    padding: 12px 16px 8px;
    font-family: var(--lw-font-family);
    font-weight: 600;
    font-size: var(--lw-font-size-sm);
    color: var(--lw-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lw-dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

.lw-dropdown-item {
    display: block;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--lw-font-family);
    font-weight: 400;
    font-size: var(--lw-font-size-sm);
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 0;
}

.lw-dropdown-item:hover {
    background-color: var(--lw-gradient-start);
    color: var(--lw-white);
    text-decoration: none;
    transform: translateX(4px);
}

/* Mobile Menu Button */
.lw-mobile-menu-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px;
    border-radius: var(--lw-radius-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.lw-mobile-menu-btn:hover {
    background-color: rgba(197, 62, 141, 0.1);
    color: var(--lw-white);
}

.lw-mobile-menu-btn:focus {
    outline: none;
}

/* Hamburger Animation */
.lw-hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.lw-hamburger-line {
    width: 100%;
    height: 2px;
    background-color: currentColor;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.lw-hamburger.active .lw-hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.lw-hamburger.active .lw-hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.lw-hamburger.active .lw-hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.lw-mobile-menu {
    background: rgba(18, 17, 23, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.lw-mobile-menu.show {
    max-height: 100vh;
    padding-bottom: 20px;
}

.lw-mobile-nav-link {
    display: block;
    padding: 16px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--lw-font-family);
    font-weight: 500;
    font-size: var(--lw-font-size-lg);
    text-decoration: none;
    border-radius: var(--lw-radius-md);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.lw-mobile-nav-link:hover {
    background-color: rgba(197, 62, 141, 0.1);
    color: var(--lw-white);
    border-left-color: var(--lw-gradient-start);
    transform: translateX(8px);
    text-decoration: none;
}

.lw-mobile-nav-link:focus {
    outline: none;
    color: var(--lw-white);
    text-decoration: none;
}

/* Mobile Dropdown */
.lw-mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--lw-radius-md);
    margin-top: 8px;
}

.lw-mobile-dropdown-content.show {
    max-height: 300px;
    padding: 8px 0;
}

.lw-mobile-dropdown-item {
    display: block;
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--lw-font-family);
    font-weight: 400;
    font-size: var(--lw-font-size-base);
    text-decoration: none;
    transition: all 0.2s ease;
}

.lw-mobile-dropdown-item:hover {
    background-color: var(--lw-gradient-start);
    color: var(--lw-white);
    text-decoration: none;
    padding-left: 32px;
}

/* Chevron Animation */
.lw-dropdown-toggle .fa-chevron-down,
.lw-mobile-nav-link .fa-chevron-down {
    transition: transform 0.3s ease;
}

.lw-dropdown-toggle.active .fa-chevron-down,
.lw-mobile-nav-link.active .fa-chevron-down {
    transform: rotate(180deg);
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .lw-navbar {
        padding: 0 16px;
    }
}

@media (max-width: 768px) {
    .lw-navbar {
        min-height: 70px;
    }
    
    .lw-mobile-nav-link {
        font-size: var(--lw-font-size-base);
        padding: 14px 16px;
    }
    
    .lw-mobile-menu {
        margin: 0 -16px;
    }
}

@media (max-width: 480px) {
    .lw-navbar {
        min-height: 60px;
        padding: 0 12px;
    }
    
    .lw-mobile-nav-link {
        padding: 12px 16px;
        font-size: var(--lw-font-size-sm);
    }
}

/* =================
   USER CARD COMPONENTS FOR MATCHING/DISCOVERY
   ================= */

/* User Card Container */
.lw-user-card {
    position: relative;
    background: var(--lw-white);
    border-radius: var(--lw-radius-xl);
    overflow: hidden;
    transition: var(--lw-transition);
    box-shadow: 0 4px 12px var(--lw-shadow-light);
    border: 1px solid var(--lw-gray-100);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.lw-user-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px var(--lw-shadow-medium);
    border-color: var(--lw-gradient-start);
}

/* Premium Badge */
.lw-user-card.lw-has-premium-badge::before {
    content: '\2605';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lw-white);
    font-size: 18px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    font-weight: bold;
}

/* Online Status Indicator */
.lw-user-card-status {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.lw-status-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid var(--lw-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: lw-pulse-status 2s ease-in-out infinite;
}

.lw-status-online {
    background-color: var(--lw-success);
}

.lw-status-idle {
    background-color: var(--lw-warning);
}

.lw-status-offline {
    background-color: var(--lw-danger);
}

@keyframes lw-pulse-status {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.9; }
}

/* User Image Container */
.lw-user-card-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 125%; /* 4:5 aspect ratio */
    overflow: hidden;
    background: linear-gradient(135deg, var(--lw-gray-100), var(--lw-gray-200));
}

.lw-user-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--lw-transition);
}

.lw-user-card:hover .lw-user-card-image {
    transform: scale(1.08);
}

/* Gradient Overlay on Image */
.lw-user-card-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    pointer-events: none;
}

/* User Info Section */
.lw-user-card-info {
    padding: var(--lw-space-md);
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lw-user-card-name {
    font-family: var(--lw-font-family);
    font-weight: 600;
    font-size: var(--lw-font-size-lg);
    color: var(--lw-primary);
    margin-bottom: var(--lw-space-xs);
    text-decoration: none;
    display: block;
    transition: var(--lw-transition-fast);
}

.lw-user-card-name:hover {
    color: var(--lw-gradient-start);
    text-decoration: none;
}

.lw-user-card-details {
    font-family: var(--lw-font-family);
    font-weight: 400;
    font-size: var(--lw-font-size-sm);
    color: var(--lw-secondary);
    line-height: 1.5;
    margin-bottom: 0;
}

.lw-user-card-location {
    font-family: var(--lw-font-family);
    font-weight: 500;
    font-size: var(--lw-font-size-sm);
    color: var(--lw-gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: var(--lw-space-sm);
}

.lw-user-card-location i {
    color: var(--lw-gradient-start);
    font-size: 12px;
}

/* Match Result Header */
.lw-match-result-header {
    background: var(--lw-gradient-light);
    border: 1px solid rgba(197, 62, 141, 0.2);
    border-radius: var(--lw-radius-lg);
    padding: var(--lw-space-md) var(--lw-space-lg);
    margin-bottom: var(--lw-space-xl);
    text-align: center;
}

.lw-match-result-text {
    font-family: var(--lw-font-family);
    font-weight: 600;
    font-size: var(--lw-font-size-lg);
    color: var(--lw-primary);
    margin: 0;
}

.lw-match-result-text .lw-match-count {
    color: var(--lw-gradient-start);
    font-weight: 700;
}

/* Load More Button */
.lw-load-more-container {
    text-align: center;
    padding: var(--lw-space-xl) 0;
}

.lw-load-more-btn {
    background: var(--lw-gradient-main);
    color: var(--lw-white);
    border: none;
    border-radius: var(--lw-radius-full);
    padding: var(--lw-space-md) var(--lw-space-2xl);
    font-family: var(--lw-font-family);
    font-weight: 600;
    font-size: var(--lw-font-size-base);
    cursor: pointer;
    transition: var(--lw-transition);
    display: inline-block;
    text-decoration: none;
}

.lw-load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 62, 141, 0.3);
    color: var(--lw-white);
    text-decoration: none;
}

.lw-load-more-btn:active {
    transform: translateY(0);
}

/* End of Results Message */
.lw-end-message {
    background: var(--lw-gray-100);
    border-radius: var(--lw-radius-lg);
    padding: var(--lw-space-xl);
    text-align: center;
    margin-top: var(--lw-space-xl);
}

.lw-end-message-text {
    font-family: var(--lw-font-family);
    font-weight: 500;
    font-size: var(--lw-font-size-base);
    color: var(--lw-gray-600);
    margin: 0;
}

/* No Results Message */
.lw-no-results {
    background: var(--lw-info);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--lw-radius-lg);
    padding: var(--lw-space-2xl);
    text-align: center;
    margin: var(--lw-space-xl) 0;
}

.lw-no-results-icon {
    font-size: 48px;
    color: var(--lw-info);
    margin-bottom: var(--lw-space-md);
}

.lw-no-results-text {
    font-family: var(--lw-font-family);
    font-weight: 500;
    font-size: var(--lw-font-size-lg);
    color: var(--lw-primary);
    margin: 0;
}

/* Responsive Grid for User Cards */
@media (max-width: 480px) {
    .lw-user-card-name {
        font-size: var(--lw-font-size-base);
    }
    
    .lw-user-card-details,
    .lw-user-card-location {
        font-size: var(--lw-font-size-xs);
    }
    
    .lw-user-card-info {
        padding: var(--lw-space-sm);
    }
    
    .lw-match-result-header {
        padding: var(--lw-space-sm) var(--lw-space-md);
    }
    
    .lw-match-result-text {
        font-size: var(--lw-font-size-base);
    }
}

@media (max-width: 768px) {
    .lw-user-card {
        margin-bottom: var(--lw-space-md);
    }
    
    .lw-load-more-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* =================
   ENCOUNTER/DISCOVERY CARD COMPONENTS
   ================= */

/* Encounter Card Container */
.lw-encounter-card {
    position: relative;
    background: var(--lw-white);
    border-radius: var(--lw-radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 24px var(--lw-shadow-medium);
    max-width: 500px;
    margin: 0 auto;
    transition: var(--lw-transition);
}

.lw-encounter-card:hover {
    box-shadow: 0 12px 40px var(--lw-shadow-heavy);
}

/* Premium Badge for Encounter */
.lw-encounter-premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.5);
    animation: lw-pulse-premium 2s ease-in-out infinite;
}

.lw-encounter-premium-badge i {
    color: var(--lw-white);
    font-size: 20px;
}

@keyframes lw-pulse-premium {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Encounter Status */
.lw-encounter-status {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
}

/* Encounter Image Container */
.lw-encounter-image-container {
    position: relative;
    width: 100%;
}

/* Cover Image */
.lw-encounter-cover-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--lw-gray-100), var(--lw-gray-200));
}

.lw-encounter-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Profile Image Overlay */
.lw-encounter-profile-wrapper {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 6px solid var(--lw-white);
    overflow: hidden;
    background: var(--lw-white);
    box-shadow: 0 8px 24px var(--lw-shadow-medium);
    z-index: 2;
}

.lw-encounter-profile {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Encounter Info Section */
.lw-encounter-info {
    padding: 80px var(--lw-space-xl) var(--lw-space-xl);
    text-align: center;
}

.lw-encounter-name {
    font-family: var(--lw-font-family);
    font-weight: 700;
    font-size: var(--lw-font-size-2xl);
    color: var(--lw-primary);
    text-decoration: none;
    display: block;
    margin-bottom: var(--lw-space-sm);
    transition: var(--lw-transition-fast);
}

.lw-encounter-name:hover {
    color: var(--lw-gradient-start);
    text-decoration: none;
}

.lw-encounter-meta {
    font-family: var(--lw-font-family);
    font-weight: 400;
    font-size: var(--lw-font-size-base);
    color: var(--lw-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--lw-space-xs);
    flex-wrap: wrap;
}

.lw-encounter-separator {
    color: var(--lw-gray-300);
}

.lw-encounter-icon {
    color: var(--lw-gradient-start);
    font-size: 14px;
}

/* Encounter Action Buttons */
.lw-encounter-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--lw-space-lg);
    padding: 0 var(--lw-space-xl) var(--lw-space-2xl);
}

.lw-encounter-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: var(--lw-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 16px var(--lw-shadow-medium);
    position: relative;
    overflow: hidden;
}

.lw-encounter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.lw-encounter-btn:hover::before {
    width: 100%;
    height: 100%;
}

.lw-encounter-btn i {
    position: relative;
    z-index: 1;
}

/* Dislike Button */
.lw-encounter-btn-dislike {
    background: var(--lw-gray-100);
    color: var(--lw-danger);
}

.lw-encounter-btn-dislike:hover {
    background: var(--lw-danger);
    color: var(--lw-white);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.4);
}

/* Skip Button */
.lw-encounter-btn-skip {
    background: var(--lw-gray-100);
    color: var(--lw-secondary);
    width: 60px;
    height: 60px;
    font-size: 20px;
}

.lw-encounter-btn-skip:hover {
    background: var(--lw-secondary);
    color: var(--lw-white);
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(100, 82, 144, 0.3);
}

/* Like Button */
.lw-encounter-btn-like {
    background: var(--lw-gradient-main);
    color: var(--lw-white);
}

.lw-encounter-btn-like:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 24px rgba(197, 62, 141, 0.5);
}

.lw-encounter-btn:active {
    transform: scale(0.95);
}

/* Responsive Encounter Card */
@media (max-width: 480px) {
    .lw-encounter-cover-wrapper {
        height: 200px;
    }
    
    .lw-encounter-profile-wrapper {
        width: 110px;
        height: 110px;
        bottom: -50px;
        border-width: 5px;
    }
    
    .lw-encounter-info {
        padding: 70px var(--lw-space-md) var(--lw-space-md);
    }
    
    .lw-encounter-name {
        font-size: var(--lw-font-size-xl);
    }
    
    .lw-encounter-meta {
        font-size: var(--lw-font-size-sm);
    }
    
    .lw-encounter-actions {
        gap: var(--lw-space-md);
        padding: 0 var(--lw-space-md) var(--lw-space-xl);
    }
    
    .lw-encounter-btn {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
    
    .lw-encounter-btn-skip {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .lw-encounter-premium-badge {
        width: 36px;
        height: 36px;
        top: 15px;
        right: 15px;
    }
    
    .lw-encounter-premium-badge i {
        font-size: 16px;
    }
}

/* =================
   FILTER COMPONENTS
   ================= */

