/* Desktop Dashboard Styles - RealKonnect */

:root {
    --primary: #ec4899;
    --primary-dark: #db2777;
    --primary-light: #fdf2f8;
    --secondary: #8b5cf6;
    --accent: #f59e0b;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-tertiary: #94a3b8;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-secondary);
    color: var(--text-primary);
    line-height: 1.5;
}

/* Desktop Container */
.desktop-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar - Modern Glass Effect */
.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    border-right: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 100;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.04);
}

.sidebar-header {
    padding: 28px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo img {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.logo span {
    font-size: 1.35rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sidebar-nav {
    flex: 1;
    padding: 20px 16px;
    overflow-y: auto;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 6px;
    font-weight: 500;
    position: relative;
}

.nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--primary);
    border-radius: 0 4px 4px 0;
    transition: var(--transition);
}

.nav-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.nav-item:hover::before {
    height: 24px;
}

.nav-item.active {
    background: linear-gradient(135deg, var(--primary-light) 0%, #fce7f3 100%);
    color: var(--primary-dark);
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.15);
}

.nav-item.active::before {
    height: 32px;
}

.nav-item i {
    width: 22px;
    text-align: center;
    font-size: 1.1rem;
}

.nav-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-color) 50%, transparent 100%);
    margin: 20px 16px;
}

.sidebar-footer {
    padding: 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(248, 250, 252, 0.8) 100%);
    border-top: 1px solid var(--border-color);
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 18px;
    border: none;
    background: white;
    color: var(--error);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.logout-btn:hover {
    background: #fef2f2;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Main Area */
.main-area {
    flex: 1;
    margin-left: 280px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Top Header - Glass Morphism */
.top-header {
    height: 72px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    padding: 14px 22px;
    border-radius: var(--radius-full);
    width: 400px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.header-search:hover {
    border-color: #cbd5e1;
}

.header-search:focus-within {
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.1);
    border-color: var(--primary);
}

.header-search i {
    color: var(--text-tertiary);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.header-search:focus-within i {
    color: var(--primary);
}

.header-search input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 1rem;
    width: 100%;
    color: var(--text-primary);
}

.header-search input::placeholder {
    color: var(--text-tertiary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border: none;
    background: white;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.header-btn .badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--error) 0%, #dc2626 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 16px 6px 6px;
    background: white;
    border-radius: var(--radius-full);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.user-menu:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.user-menu img {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid var(--primary-light);
    background: #fff;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-menu span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.user-menu i {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* User Dropdown Menu */
.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    z-index: 1000;
    overflow: hidden;
    animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.dropdown-header img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.dropdown-user-info {
    display: flex;
    flex-direction: column;
}

.dropdown-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.dropdown-email {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 4px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-primary);
    text-decoration: none;
    transition: background 0.2s ease;
}

.dropdown-item:hover {
    background: var(--light-pink);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--text-tertiary);
}

.dropdown-item.logout {
    color: #ef4444;
}

.dropdown-item.logout i {
    color: #ef4444;
}

.dropdown-item.logout:hover {
    background: #fef2f2;
}

/* Header Actions - position relative for dropdown */
.header-actions {
    position: relative;
}

/* Content Container */
.content-container {
    flex: 1;
    padding: 5px;
    overflow-y: auto;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

/* Content Sections */
.content-section {
    display: none;
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Page Header - Modern Style */
.page-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Compact Stats Row */
.stats-row-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.stat-box {
    background: var(--bg-primary);
    padding: 16px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(226, 232, 240, 0.6);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.stat-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.stat-box-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.stat-box-icon.pink { 
    background: linear-gradient(135deg, var(--primary-light) 0%, #fce7f3 100%); 
    color: var(--primary); 
}
.stat-box-icon.blue { 
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%); 
    color: #2563eb; 
}
.stat-box-icon.green { 
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); 
    color: #059669; 
}
.stat-box-icon.purple { 
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%); 
    color: #7c3aed; 
}

.stat-box-info {
    display: flex;
    flex-direction: column;
}

.stat-box-value {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.stat-box-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Status Banner - Modern */
.status-banner {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-xl);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

/* Hide mobile-only elements on desktop */
.quick-action-buttons.mobile-only,
.welcome-header.mobile-only,
.mobile-profile-card,
.mobile-stats-grid,
.mobile-header {
    display: none !important;
}

/* Hide My Matches and Match Requests nav items */
/* NOTE: Matches and Requests sections are now enabled for all users */
/* The old CSS that hid these sections has been removed */

/* Show/hide sections based on active class only */
.content-section {
    display: none;
}

.content-section.active {
    display: block !important;
}

/* Requests Grid - Beautiful Layout */
.requests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

/* Request Card - Modern Design */
.request-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.request-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
    opacity: 0;
    transition: var(--transition);
}

.request-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(236, 72, 153, 0.2);
}

.request-card:hover::before {
    opacity: 1;
}

.request-image {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.3);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.request-card:hover .request-image {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.4);
}

.request-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.request-info {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-bottom: 15px;
}

.request-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.request-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.request-info p i {
    color: var(--primary);
    font-size: 0.8rem;
}

.request-actions {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.action-btn-small {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.action-btn-small.approve {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.action-btn-small.approve:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.action-btn-small.reject,
.action-btn-small.cancel {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.action-btn-small.reject:hover,
.action-btn-small.cancel:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.status-banner.approved {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

.status-banner.rejected {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-color: rgba(239, 68, 68, 0.3);
}

.status-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #f59e0b;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.status-banner.approved .status-icon {
    color: var(--success);
}

.status-banner.rejected .status-icon {
    color: var(--error);
}

.status-text {
    flex: 1;
}

.status-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.status-actions .points-display {
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
    color: white;
    padding: 10px 16px;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.status-actions .btn-boost-profile {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.status-actions .btn-view-profile {
    background: #f3f4f6;
    color: #374151;
    border: none;
    padding: 10px 18px;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.status-actions .btn-boost-profile:hover {
    opacity: 0.9;
}

.status-actions .btn-view-profile:hover {
    background: #e5e7eb;
}

.status-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.status-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.btn-view-profile {
    padding: 10px 20px;
    background: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-view-profile:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Welcome Header */
.welcome-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 0 4px;
}

.welcome-text h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.welcome-text h1 span {
    color: var(--primary);
}

.welcome-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.welcome-text p strong {
    color: var(--primary);
    font-weight: 600;
}

.welcome-date {
    background: white;
    padding: 10px 18px;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

/* Professional Dashboard Layout - 2 Columns */
.dashboard-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 28px;
    align-items: start;
}

@media (max-width: 1200px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
    }
}

/* Sidebar */
.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Main Content */
.dashboard-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

/* Dashboard Cards - Professional Style */
.dash-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: var(--transition);
}

.dash-card:hover {
    box-shadow: var(--shadow-lg);
}

.card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

/* Profile Card */
.profile-card .profile-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.profile-avatar-large {
    position: relative;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}

.profile-avatar-large img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.online-badge {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 14px;
    height: 14px;
    background: #10b981;
    border: 2px solid white;
    border-radius: var(--radius-full);
}

.verified-badge {
    position: absolute;
    bottom: 4px;
    left: 4px;
    width: 22px;
    height: 22px;
    background: #007AFF;
    border: 2px solid white;
    border-radius: var(--radius-full);
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
}

.verified-badge i {
    margin-left: -1px;
    margin-top: -1px;
}

.profile-header-centered {
    text-align: center;
}

.profile-header-centered .profile-name-centered {
    text-align: center;
    margin: 12px 0 4px 0;
}

.profile-header-centered .location-centered {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.profile-details h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.badge-free {
    display: inline-block;
    padding: 4px 10px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 6px;
}

.profile-details .location {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.profile-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Actions Card */
.actions-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-lg);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    width: 100%;
}

.action-item:hover {
    background: var(--bg-secondary);
}

.action-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.action-icon.blue { background: #dbeafe; color: #2563eb; }
.action-icon.pink { background: var(--primary-light); color: var(--primary); }
.action-icon.green { background: #d1fae5; color: #059669; }
.action-icon.orange { background: #fed7aa; color: #ea580c; }

.action-text {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.action-arrow {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* Progress Card */
.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.progress-percent {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
}

.progress-track {
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.btn-outline {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Upgrade Card */
.upgrade-card {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: white;
    text-align: center;
}

.upgrade-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.upgrade-card p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 16px;
}

.upgrade-badge {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 16px rgba(251, 191, 36, 0.3);
}

.btn-premium {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border: none;
    border-radius: var(--radius-lg);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(251, 191, 36, 0.3);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: var(--transition);
}

.stat-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.stat-visual {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stat-visual.pink { background: linear-gradient(135deg, var(--primary-light) 0%, #fce7f3 100%); color: var(--primary); }
.stat-visual.blue { background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%); color: #2563eb; }
.stat-visual.green { background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); color: #059669; }
.stat-visual.purple { background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%); color: #7c3aed; }
.stat-visual.orange { background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%); color: #ea580c; }

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Content Section Card */
.content-section-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.section-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header-bar h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header-bar h3 i {
    color: var(--primary);
}

.btn-link {
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--primary-dark);
}

.matches-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
}

.matches-scroll::-webkit-scrollbar {
    height: 6px;
}

.matches-scroll::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: var(--radius-full);
}

/* Promo Row - Profile Completion & Premium */
.promo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 900px) {
    .promo-row {
        grid-template-columns: 1fr;
    }
}

.promo-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.6);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.promo-content {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.promo-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.promo-icon.blue {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #2563eb;
}

.promo-icon.green {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #059669;
}

.promo-icon.boost {
    background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);
    color: #dc2626;
}

.promo-icon.gold {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;
}

.promo-info {
    flex: 1;
    min-width: 0;
}

.promo-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.promo-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.promo-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.promo-track {
    flex: 1;
    height: 6px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.promo-bar {
    height: 100%;
    background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
}

.promo-percent {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2563eb;
    flex-shrink: 0;
}

.btn-promo {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-promo:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.btn-promo.premium {
    border-color: #f59e0b;
    color: #d97706;
}

.btn-promo.premium:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    border-color: transparent;
}

.btn-promo.boost {
    border-color: #dc2626;
    color: #dc2626;
}

.btn-promo.boost:hover {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border-color: transparent;
}

/* Info Row */
.info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 700px) {
    .info-row {
        grid-template-columns: 1fr;
    }
}

.info-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.tip-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tip-icon-wrap {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d97706;
    font-size: 1.2rem;
}

.tip-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.tip-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.btn-small {
    align-self: flex-start;
    padding: 8px 16px;
    background: var(--primary);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-small:hover {
    background: var(--primary-dark);
}

.story-box {
    position: relative;
}

.story-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.story-header i {
    color: #f59e0b;
}

.story-header h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.story-quote {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 8px;
    line-height: 1.5;
}

.story-author {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.link-more {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.link-more:hover {
    text-decoration: underline;
}

/* Legacy Widget Cards (keep for compatibility) */
.widget-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: var(--transition);
}

.widget-card:hover {
    box-shadow: var(--shadow-lg);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.widget-header.compact {
    margin-bottom: 12px;
}

.widget-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-header h3 i {
    color: var(--primary);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.section-header.compact {
    margin-bottom: 12px;
}

.section-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header h3 i {
    color: var(--primary);
}

.btn-text {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-text:hover {
    background: var(--primary-light);
}

.badge-count {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.badge-pill {
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

/* Profile Summary Card */
.profile-summary {
    padding: 20px;
}

.profile-mini {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.profile-avatar {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 3px solid var(--primary-light);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.online-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background: var(--success);
    border: 2px solid white;
    border-radius: var(--radius-full);
}

.profile-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.profile-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

.profile-stats-mini {
    display: flex;
    justify-content: space-around;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.mini-stat {
    text-align: center;
}

.mini-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.mini-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Quick Navigation Grid */
.quick-nav h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.nav-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 8px;
    background: var(--bg-tertiary);
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
}

.nav-tile:hover {
    background: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.tile-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.tile-icon.blue { background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%); color: #2563eb; }
.tile-icon.pink { background: linear-gradient(135deg, var(--primary-light) 0%, #fce7f3 100%); color: var(--primary); }
.tile-icon.green { background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); color: #059669; }
.tile-icon.orange { background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%); color: #ea580c; }

.nav-tile span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Profile Completion Card */
.completion-card {
    padding: 20px;
}

.completion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.completion-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.completion-percent {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.progress-bar-large {
    height: 10px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill-large {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
}

.completion-hint {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.btn-complete {
    width: 100%;
    padding: 12px;
    background: var(--primary-light);
    border: none;
    border-radius: var(--radius-md);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-complete:hover {
    background: var(--primary);
    color: white;
}

/* Profile Completion Widget */
.completion-widget {
    display: flex;
    align-items: center;
    gap: 20px;
}

.completion-circle {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.completion-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.completion-circle circle {
    fill: none;
    stroke-width: 8;
}

.completion-circle .bg {
    stroke: var(--border-color);
}

.completion-circle .progress {
    stroke: url(#gradient);
    stroke-linecap: round;
    stroke-dasharray: 283;
    transition: stroke-dashoffset 0.5s ease;
}

.completion-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.completion-text .percentage {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.completion-text .label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.completion-tasks {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.task {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.task.done {
    color: var(--success);
}

.task.pending {
    color: var(--text-secondary);
}

.task i {
    font-size: 1rem;
}

/* Matches Section */
.matches-section {
    padding: 20px;
}

.matches-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
}

.matches-carousel::-webkit-scrollbar {
    height: 6px;
}

.matches-carousel::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: var(--radius-full);
}

.match-profile-card {
    flex-shrink: 0;
    width: 160px;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, white 100%);
    border-radius: var(--radius-lg);
    padding: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
}

.match-profile-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.match-photo {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 12px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.match-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.match-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: var(--radius-full);
    border: 2px solid white;
}

.match-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.match-profile-card:hover .match-overlay {
    opacity: 1;
}

.btn-quick-like {
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-quick-like:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.match-details h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.match-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.match-meta i {
    color: var(--primary);
    margin-right: 4px;
}

.match-tribe {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    background: var(--bg-tertiary);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    display: inline-block;
}

/* Activity Section */
.activity-section {
    padding: 20px;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    background: var(--bg-tertiary);
}

.activity-row:hover {
    background: var(--bg-secondary);
}

.activity-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    overflow: hidden;
    flex-shrink: 0;
}

.activity-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-content {
    flex: 1;
    min-width: 0;
}

.activity-content p {
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 4px;
}

.activity-content p strong {
    font-weight: 600;
}

.activity-time {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.activity-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.activity-icon.accepted { background: var(--primary-light); color: var(--primary); }
.activity-icon.viewed { background: #dbeafe; color: #2563eb; }
.activity-icon.sent { background: #d1fae5; color: #059669; }

/* Requests Card */
.requests-card {
    padding: 16px;
}

.requests-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.request-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.request-row:hover {
    background: var(--bg-secondary);
}

.request-row img {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    object-fit: cover;
    flex-shrink: 0;
}

.request-info {
    flex: 1;
    min-width: 0;
}

.request-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-primary);
}

.request-info p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.request-actions {
    display: flex;
    gap: 6px;
}

.btn-action {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.btn-action.accept {
    background: #d1fae5;
    color: #059669;
}

.btn-action.accept:hover {
    background: #059669;
    color: white;
}

.btn-action.decline {
    background: #fee2e2;
    color: #dc2626;
}

.btn-action.decline:hover {
    background: #dc2626;
    color: white;
}

.btn-see-all {
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    background: transparent;
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-see-all:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

/* Tip Widget */
.tip-widget {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: rgba(245, 158, 11, 0.3);
    padding: 16px;
}

.tip-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.tip-header i {
    font-size: 1.2rem;
    color: #f59e0b;
}

.tip-header span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tip-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.5;
}

.btn-tip-action {
    width: 100%;
    padding: 10px;
    background: white;
    border: none;
    border-radius: var(--radius-md);
    color: #d97706;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-tip-action:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Success Stories Preview */
.stories-preview {
    padding: 16px;
}

.story-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.story-couple {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--primary-light);
}

.story-couple img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 4px;
}

.story-text span {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

.link-stories {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.link-stories:hover {
    background: var(--primary-light);
}

/* Premium Card */
.premium-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 20px;
}

.premium-content {
    text-align: center;
}

.premium-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.5rem;
}

.premium-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.premium-features {
    list-style: none;
    margin-bottom: 16px;
    text-align: left;
}

.premium-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    margin-bottom: 8px;
    opacity: 0.95;
}

.premium-features li i {
    font-size: 0.8rem;
}

.btn-upgrade {
    width: 100%;
    padding: 12px;
    background: white;
    border: none;
    color: var(--primary);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-upgrade:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Action Grid - Improved */
.action-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, white 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
}

.action-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.action-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--transition);
}

.action-card:hover .action-icon {
    transform: scale(1.1);
}

.action-icon.blue { background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%); color: #2563eb; }
.action-icon.pink { background: linear-gradient(135deg, var(--primary-light) 0%, #fce7f3 100%); color: var(--primary); }
.action-icon.green { background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); color: #059669; }
.action-icon.orange { background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%); color: #ea580c; }

.action-card span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Compact Search Header - Mobile only */
.search-header-compact {
    display: none;
}

/* Desktop Search Controls */
.desktop-search-controls {
    display: block;
    margin-bottom: 20px;
}

/* Mobile-only elements should be hidden in desktop */
.mobile-only {
    display: none !important;
}

.search-header-compact h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-header-compact h2 i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Compact Search Controls - All on one line */
.search-controls {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.6);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .search-controls {
        flex-direction: column;
        align-items: stretch;
    }
}

.filter-compact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 100px;
    flex: 0 0 auto;
}

.filter-compact label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.filter-compact input,
.filter-compact select {
    padding: 8px 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition);
    background: var(--bg-secondary);
    min-width: 80px;
}

.filter-compact input:focus,
.filter-compact select:focus {
    border-color: var(--primary);
    background: var(--bg-primary);
}

.range-mini {
    display: flex;
    align-items: center;
    gap: 4px;
}

.range-mini input {
    width: 50px;
    text-align: center;
    padding: 8px 4px;
}

.range-mini span {
    color: var(--text-tertiary);
    font-size: 0.8rem;
}

/* Search Input Compact */
.search-input-compact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 150px;
}

.search-input-compact label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-field {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    transition: var(--transition);
}

.search-field:hover {
    border-color: #cbd5e1;
}

.search-field:focus-within {
    border-color: var(--primary);
    background: var(--bg-primary);
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.search-field i {
    color: var(--text-tertiary);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.search-field:focus-within i {
    color: var(--primary);
}

.search-field input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.95rem;
    width: 100%;
    padding: 0;
}

/* Compact Apply Button */
.btn-search-apply {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-search-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(236, 72, 153, 0.35);
}

/* Legacy Styles (keep for compatibility) */
.filters-bar {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.6);
    margin-bottom: 24px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .filters-bar {
        flex-direction: column;
        align-items: stretch;
    }
}

.filter-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 140px;
    flex: 1;
}

.filter-item label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.filter-item input,
.filter-item select {
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    background: var(--bg-secondary);
}

.filter-item input:focus,
.filter-item select:focus {
    border-color: var(--primary);
    background: var(--bg-primary);
}

.filter-item .range-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-item .range-inputs input {
    flex: 1;
    min-width: 60px;
}

.filter-item .range-inputs span {
    color: var(--text-tertiary);
    font-weight: 500;
}

.btn-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: var(--radius-lg);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(236, 72, 153, 0.3);
}

.search-results-full {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Legacy Search Layout (keep for compatibility) */
.search-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
}

.filters-sidebar {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: fit-content;
    position: sticky;
    top: 88px;
}

.filters-sidebar h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.filter-group {
    margin-bottom: 16px;
}

.filter-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-secondary);
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.filter-group input:focus,
.filter-group select:focus {
    border-color: var(--primary);
}

.range-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.range-inputs input {
    flex: 1;
}

.range-inputs span {
    color: var(--text-tertiary);
}

.search-results-area {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-primary);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.search-bar i {
    color: var(--text-tertiary);
}

.search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.95rem;
}

/* Matches Grid - Responsive */
.matches-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 0;
    margin: 0;
    width: 100%;
}

@media (max-width: 1400px) {
    .matches-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1100px) {
    .matches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Match Card - Beautiful Modern Design */
.match-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 10px 8px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
    opacity: 0;
    transition: var(--transition);
}

.match-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(236, 72, 153, 0.2);
}

.match-card:hover::before {
    opacity: 1;
}

.match-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.3);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.match-card:hover .match-image {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.4);
}

.match-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.match-info {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 4px;
}

.match-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.match-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.match-info p i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* Username styling */
.match-username {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-bottom: 8px;
    font-style: italic;
}

/* Match details row - horizontal layout */
.match-details-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.match-details-row span {
    font-size: 0.7rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.match-details-row span i {
    color: var(--primary);
    font-size: 0.75rem;
}

.match-action-btn {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: var(--radius-full);
    color: white;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

.match-action-btn:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.5);
}

.match-action-btn:active {
    transform: scale(0.95);
}

/* Tab Navigation */
.tab-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    background: var(--bg-primary);
    padding: 6px;
    border-radius: var(--radius-md);
    width: fit-content;
    border: 1px solid var(--border-color);
}

.tab-btn {
    padding: 10px 20px;
    border: none;
    background: transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    background: var(--primary);
    color: white;
}

/* Profile Page - Modern Design */
.profile-header-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.6);
    margin-bottom: 24px;
    overflow: hidden;
}

.profile-cover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    height: 120px;
    position: relative;
}

.profile-avatar-main {
    position: absolute;
    bottom: -50px;
    left: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.profile-avatar-main img {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 4px solid white;
    box-shadow: var(--shadow-lg);
    background: white;
}

.profile-status-badge {
    margin-top: 8px;
    padding: 6px 14px;
    background: #f59e0b;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-status-badge.approved {
    background: #10b981;
}

.profile-header-info {
    padding: 60px 32px 24px;
}

.profile-header-info h1 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.profile-username {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.profile-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.profile-meta i {
    color: var(--primary);
}

.btn-edit-profile {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary);
    border: none;
    border-radius: var(--radius-lg);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-edit-profile:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Profile Details Grid */
.profile-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .profile-details-grid {
        grid-template-columns: 1fr;
    }
}

.profile-info-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.profile-info-card.full-width {
    grid-column: 1 / -1;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.card-header i {
    width: 36px;
    height: 36px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.card-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--bg-tertiary);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.info-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: right;
}

.about-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

/* Legacy Profile Layout */
.profile-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 24px;
}

.profile-sidebar {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-align: center;
    height: fit-content;
}

.profile-avatar-large {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 16px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 4px solid var(--primary);
}

.profile-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.change-photo-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    background: var(--primary);
    border: none;
    border-radius: var(--radius-full);
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.change-photo-btn:hover {
    background: var(--primary-dark);
}

.profile-sidebar h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.profile-sidebar p {
    color: var(--text-secondary);
}

.profile-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.profile-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.info-item label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-item p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Settings Grid */
.settings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.settings-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.settings-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.settings-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.settings-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.settings-item:hover {
    background: var(--bg-tertiary);
}

.settings-item i:first-child {
    width: 20px;
    color: var(--primary);
}

.settings-item span {
    flex: 1;
}

.settings-item i:last-child {
    color: var(--text-tertiary);
    font-size: 0.8rem;
}

/* Boost Cards */
.boost-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.boost-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-align: center;
}

.boost-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: white;
}

.boost-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.boost-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 48px;
    color: var(--text-secondary);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--text-tertiary);
}

.empty-state h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    overflow-y: auto;
    padding: 40px 20px;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 32px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: var(--transition);
    margin: auto;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-content.modal-large {
    max-width: 600px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.modal-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.close-modal {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    background: var(--border-color);
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Edit Profile Form */
.edit-profile-form {
    text-align: left;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    background: var(--bg-secondary);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--bg-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

/* Form Sections */
.form-section {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-section-title i {
    color: var(--primary);
}

.form-group input.disabled,
.form-group select.disabled,
.form-group textarea.disabled {
    background: var(--bg-tertiary);
    color: var(--text-tertiary);
    cursor: not-allowed;
    border-color: var(--border-color);
}

/* Checkbox Styles - Normal Size */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    margin: 0;
}

.checkbox-group input[type="checkbox"],
input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    cursor: pointer;
    accent-color: var(--primary);
    margin: 0;
}

.checkbox-group input[type="checkbox"]:focus,
input[type="checkbox"]:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.edit-hint {
    color: var(--primary);
    font-size: 0.8rem;
}

.edit-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    background: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #92400e;
}

.edit-notice i {
    color: #f59e0b;
    margin-top: 2px;
}

.btn-secondary {
    padding: 10px 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--border-color);
}

/* Utility Classes - Hide elements for pending profiles */
body.profile-pending .hide-pending {
    display: none !important;
}

/* Utility Classes - Hide elements for users without successful match */
body.no-successful-match .hide-no-match {
    display: none !important;
}

/* Utility Classes - Hide elements for users WITH successful match */
body.has-successful-match .hide-with-match {
    display: none !important;
}

/* Responsive Adjustments for Smaller Desktop Screens */
@media (max-width: 1200px) {
    .stats-row-compact {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-columns {
        grid-template-columns: 1fr;
    }
    
    .dashboard-column.column-wide {
        order: -1;
    }
    
    .search-layout {
        grid-template-columns: 1fr;
    }
    
    .filters-sidebar {
        position: static;
    }
    
    .profile-layout {
        grid-template-columns: 1fr;
    }
    
    .settings-grid {
        grid-template-columns: 1fr;
    }
    
    .boost-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .main-area {
        margin-left: 0;
    }
    
    .welcome-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .welcome-text h1 {
        font-size: 1.4rem;
    }
    
    .stats-row-compact {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .matches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Privacy Settings Modal Styles */
.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-item h4 {
    margin: 0 0 5px 0;
    color: #1f2937;
    font-size: 1rem;
}

.setting-item p {
    margin: 0;
    color: #6b7280;
    font-size: 0.875rem;
}

.setting-select {
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    font-size: 0.875rem;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.setting-select:focus {
    outline: none;
    border-color: #667eea;
}

/* Toggle Switch Styles */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: 0.3s;
    border-radius: 26px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #667eea;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding: 20px;
    border-top: 1px solid #e5e7eb;
}

.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: #f3f4f6;
    color: #6b7280;
}

.btn-secondary:hover {
    background: #e5e7eb;
}

/* Support Section - Side by Side Layout */
.settings-card .settings-list[style*="grid-template-columns"] .settings-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 20px 10px;
}

.settings-card .settings-list[style*="grid-template-columns"] .settings-item i.fas:first-child {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.settings-card .settings-list[style*="grid-template-columns"] .settings-item span {
    font-size: 0.9rem;
}

.settings-card .settings-list[style*="grid-template-columns"] .settings-item i.fa-chevron-right {
    display: none;
}

/* Responsive: Keep side by side on all screens */
@media (max-width: 640px) {
    .settings-card .settings-list[style*="grid-template-columns"] {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }
    
    .settings-card .settings-list[style*="grid-template-columns"] .settings-item {
        font-size: 0.85rem;
    }
    
    .settings-card .settings-list[style*="grid-template-columns"] .settings-item i.fas:first-child {
        font-size: 1.2rem;
    }
    
    .settings-card .settings-list[style*="grid-template-columns"] .settings-item span {
        font-size: 0.8rem;
    }
    
    /* Modal fixes for mobile */
    .modal {
        padding: 20px 15px !important;
        align-items: center !important;
    }
    
    .modal-content {
        width: 100% !important;
        max-width: 95% !important;
        padding: 20px 16px !important;
        margin: 0 !important;
        max-height: 85vh !important;
        overflow-y: auto !important;
    }
    
    .modal-header {
        margin-bottom: 16px !important;
    }
    
    .modal-header h3 {
        font-size: 1.1rem !important;
    }
    
    #passwordForm {
        padding: 16px 0 !important;
    }
    
    #passwordForm .form-group {
        margin-bottom: 16px !important;
    }
    
    #passwordForm input {
        padding: 10px !important;
        font-size: 0.95rem !important;
    }
    
    #passwordForm button {
        padding: 10px 16px !important;
        font-size: 0.9rem !important;
    }
}


/* Gender-Specific Red Flags Tab Visibility */
/* Hide "For Women" tab from Male users */
body.user-gender-male .gender-specific-tab.for-women {
    display: none !important;
}

/* Hide "For Men" tab from Female users */
body.user-gender-female .gender-specific-tab.for-men {
    display: none !important;
}

/* Auto-select appropriate tab based on gender */
body.user-gender-male .gender-specific-tab.for-men {
    /* This will be the first visible gender-specific tab for men */
}

body.user-gender-female .gender-specific-tab.for-women {
    /* This will be the first visible gender-specific tab for women */
}


/* ===================================
   MODERN SEARCH RESULTS CARDS - OVERLAY DESIGN (DESKTOP)
   ================================ */

#searchResults {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 20px;
}

/* Tablet - 2 columns */
@media (max-width: 1200px) {
    #searchResults {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 16px;
    }
}

/* Small Mobile - 1 column */
@media (max-width: 640px) {
    #searchResults {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 16px;
        max-width: 100%;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    #searchResults {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 16px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .modern-match-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
}

.modern-match-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    height: 480px;
    background: #e5e7eb;
}

.modern-match-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(236, 72, 153, 0.25);
}

.modern-match-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.modern-match-card:hover .modern-match-bg {
    transform: scale(1.1);
}

.modern-match-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 30%,
        rgba(0, 0, 0, 0.4) 60%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

.modern-match-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modern-match-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.modern-match-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.modern-match-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    white-space: nowrap;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.modern-match-verified {
    color: #60a5fa;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    flex-shrink: 0;
}

.modern-match-occupation {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    flex: 1;
    text-align: right;
}

.modern-match-stats {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.modern-match-stats::-webkit-scrollbar {
    display: none;
}

.modern-match-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: white;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 7px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.modern-match-stat span {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.modern-match-stat i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.modern-connect-btn {
    background: white;
    color: #ec4899;
    border: none;
    padding: 14px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-connect-btn:hover {
    background: #ec4899;
    color: white;
    transform: scale(1.03);
    box-shadow: 0 6px 25px rgba(236, 72, 153, 0.5);
}

.modern-connect-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.modern-connect-btn:hover i {
    transform: rotate(90deg);
}


/* ===================================
   IMAGE LIGHTBOX MODAL - DESKTOP
   ================================ */

.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    cursor: pointer;
    z-index: 99999998;
}

.lightbox-content {
    position: relative;
    z-index: 99999999;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lightboxZoomIn 0.3s ease;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10002;
}

.lightbox-close:hover {
    background: rgba(236, 72, 153, 0.9);
    border-color: #ec4899;
    transform: rotate(90deg);
}

.lightbox-close i {
    pointer-events: none;
}

/* Add cursor pointer to images */
.modern-match-bg {
    cursor: pointer;
}

/* Mobile - Remove extra padding from search section */
@media (max-width: 640px) {
    #searchSection {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    #searchSection .section-content {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .search-container {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Ensure main content area has no padding on mobile */
    .main-content {
        padding: 0 !important;
    }
    
    .section.active {
        padding: 0 !important;
    }
}

/* Profile Header - Horizontal Layout */
.profile-header-content-horizontal {
    padding: 0 16px 16px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
}

.profile-left-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.profile-left-section .profile-avatar-large {
    width: 100px;
    height: 100px;
    margin-top: -50px;
    position: relative;
}

.profile-left-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin: 0;
}

.profile-right-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
}

.profile-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.profile-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--text-primary);
}

.profile-detail-item i {
    color: var(--primary);
    font-size: 0.875rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.profile-detail-item span {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Verification Badge on Avatar */
.profile-verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: var(--success);
    border: 3px solid var(--bg-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.profile-verified-badge i {
    color: white;
    font-size: 0.75rem;
}

.change-avatar-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: var(--primary);
    border: 3px solid var(--bg-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.change-avatar-btn:hover {
    background: var(--primary-dark);
}

.change-avatar-btn i {
    color: white;
    font-size: 0.75rem;
}

/* Responsive - Mobile View */
@media (max-width: 640px) {
    .profile-header-content-horizontal {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
    
    .profile-left-section {
        width: 100%;
    }
    
    .profile-right-section {
        width: 100%;
        padding-top: 0;
    }
    
    .profile-details-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive - Tablet View */
@media (min-width: 641px) and (max-width: 1024px) {
    .profile-header-content-horizontal {
        gap: 20px;
    }
    
    .profile-details-grid {
        grid-template-columns: 1fr;
    }
}


/* Request Match Cards - Full Profile Style */
.request-match-card {
    position: relative;
}

.request-match-card .status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.request-match-card .status-badge.approved {
    background: #10b981;
    color: white;
}

.request-match-card .status-badge.successful {
    background: #8b5cf6;
    color: white;
}

.request-actions-modern {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.request-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.request-btn.accept-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.request-btn.accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.request-btn.reject-btn,
.request-btn.cancel-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.request-btn.reject-btn:hover,
.request-btn.cancel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
}

.status-info-modern {
    margin-top: 12px;
    padding: 10px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    text-align: center;
}

.status-info-modern .status-text {
    color: #10b981;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .request-actions-modern {
        flex-direction: column;
    }
    
    .request-btn {
        width: 100%;
    }
}
