* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: radial-gradient(circle at 0% 0%, #0f0f1a 0%, #1a1a2f 50%, #0d0d1a 100%);
    color: #e2e8ff;
    line-height: 1.6;
    min-height: 100vh;
}

/* ===== NAVBAR - EXTREMELY SHORT HEIGHT ===== */
.navbar {
    background: linear-gradient(95deg, #0b0b1a 0%, #1a1a3a 50%, #2a1a2a 100%);
    color: white;
    padding: 0.15rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(138, 75, 255, 0.2);
    border-bottom: 1px solid rgba(138, 75, 255, 0.3);
    min-height: 35px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 35px;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand h1 {
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #c0a0ff, #ff9f9f, #a8d8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(192, 160, 255, 0.5);
    margin: 0;
    line-height: 1;
    white-space: nowrap;
}

.nav-brand i {
    color: #b380ff;
    margin-right: 4px;
    -webkit-text-fill-color: #b380ff;
    filter: drop-shadow(0 0 8px #8a4bff);
    font-size: 0.9rem;
}

/* Admin link styling */
#adminLink {
    margin-left: 10px;
    background: rgba(220, 53, 69, 0.2);
    border-radius: 4px;
    font-size: 0.75rem;
    padding: 0.1rem 0.4rem;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: nowrap;
}

.nav-link {
    color: #cbd5ff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 0.15rem 0.4rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.75rem;
    position: relative;
    overflow: hidden;
    line-height: 1;
    white-space: nowrap;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

/* Profile Dropdown - Adjusted for shorter navbar */
.nav-profile-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-profile-btn {
    background: linear-gradient(135deg, #1a1a3a, #0d0d1a);
    border: 1px solid rgba(138, 75, 255, 0.3);
    border-radius: 50px;
    padding: 1px 6px 1px 1px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    color: #cbd5ff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    line-height: 1;
    height: 24px;
}

.nav-profile-btn:hover {
    background: linear-gradient(135deg, #2a1a4a, #1a1a3a);
    border-color: rgba(138, 75, 255, 0.8);
    transform: translateY(-1px);
    color: white;
    box-shadow: 0 8px 25px rgba(138, 75, 255, 0.4);
}

.profile-menu-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #c0a0ff;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(192, 160, 255, 0.6);
}

.profile-name {
    font-weight: 600;
    font-size: 11px;
    background: linear-gradient(135deg, #fff, #c0a0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Notification Bell */
.nav-notification-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-notification-bell {
    background: none;
    border: none;
    color: #cbd5ff;
    font-size: 0.9rem;
    cursor: pointer;
    position: relative;
    padding: 3px;
    transition: all 0.3s ease;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.nav-notification-bell:hover {
    color: white;
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px #8a4bff);
}

.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: linear-gradient(135deg, #ff4d4d, #b30000);
    color: white;
    font-size: 8px;
    font-weight: 600;
    min-width: 14px;
    height: 14px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #1a1a2f;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

/* Token Balance */
.token-balance {
    background: linear-gradient(135deg, #4a2a1a, #2a1a0f);
    padding: 0.15rem 0.4rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 3px;
    color: #ffd966;
    font-weight: 600;
    font-size: 0.75rem;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2), inset 0 0 10px rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    line-height: 1;
    height: 22px;
    white-space: nowrap;
}

.token-balance i {
    color: #ffd966;
    filter: drop-shadow(0 0 5px #ffaa00);
    font-size: 0.75rem;
}

.token-balance span {
    max-width: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-outline {
    background: rgba(138, 75, 255, 0.2);
    border: 1px solid rgba(138, 75, 255, 0.5);
    padding: 1px 4px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 600;
    cursor: pointer;
    color: #cbd5ff;
    transition: all 0.2s ease;
    line-height: 1;
    height: 20px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #8a4bff, #b84aff);
    border-color: white;
    color: white;
    box-shadow: 0 0 20px rgba(138, 75, 255, 0.6);
    transform: translateY(-1px);
}

.btn-logout {
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.5);
    color: #ffb3b3;
    padding: 0.15rem 0.4rem;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 3px;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    line-height: 1;
    height: 22px;
    white-space: nowrap;
}

.btn-logout:hover {
    background: linear-gradient(135deg, #b30000, #8b0000);
    border-color: #ff9f9f;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

/* Profile Dropdown Menu */
.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 260px;
    background: linear-gradient(135deg, #1a1a2f, #0f0f1f);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(138, 75, 255, 0.3);
    margin-top: 3px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid rgba(138, 75, 255, 0.2);
}

.profile-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-dropdown-header {
    padding: 10px;
    background: linear-gradient(135deg, #2a1a4a 0%, #4a1a2a 100%);
    border-radius: 12px 12px 0 0;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.profile-dropdown-user {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.dropdown-user-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #c0a0ff;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(192, 160, 255, 0.6);
}

.dropdown-user-info h4 {
    margin: 0 0 2px 0;
    font-size: 13px;
    color: white;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.dropdown-user-info p {
    margin: 0;
    font-size: 11px;
    opacity: 0.9;
    color: #cbd5ff;
}

.dropdown-token-balance {
    background: rgba(0,0,0,0.3);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    color: #ffd966;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.profile-dropdown-menu {
    padding: 5px;
    background: linear-gradient(135deg, #0f0f1f, #1a1a2f);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    color: #cbd5ff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 12px;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(138, 75, 255, 0.3), rgba(220, 38, 38, 0.3));
    color: white;
    transform: translateX(3px);
    box-shadow: 0 0 20px rgba(138, 75, 255, 0.3);
}

.dropdown-item i {
    width: 16px;
    color: #b380ff;
    filter: drop-shadow(0 0 5px #8a4bff);
    font-size: 12px;
}

.dropdown-item:hover i {
    color: white;
}

.dropdown-item.text-danger i {
    color: #ff9f9f;
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(138, 75, 255, 0.3), transparent);
    margin: 4px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: rgba(138, 75, 255, 0.2);
    transform: translateY(-1px);
    color: white;
    box-shadow: 0 0 20px rgba(138, 75, 255, 0.4);
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(138, 75, 255, 0.3), rgba(220, 38, 38, 0.3));
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: 0 0 20px rgba(138, 75, 255, 0.3);
}

/* Mobile First - Default styles for small screens */
@media (max-width: 768px) {
    .navbar {
        padding: 0.1rem 0;
        min-height: 32px;
    }
    
    .nav-container {
        padding: 0 0.5rem;
        height: 32px;
    }
    
    .nav-brand h1 {
        font-size: 0.85rem;
    }
    
    .nav-brand i {
        font-size: 0.75rem;
    }
    
    .nav-menu {
        gap: 0.15rem;
    }
    
    .nav-link {
        padding: 0.1rem 0.2rem;
        font-size: 0.6rem;
        gap: 2px;
    }
    
    .nav-link i {
        font-size: 0.55rem;
    }
    
    .profile-name {
        display: none;
    }
    
    .profile-menu-avatar {
        width: 16px;
        height: 16px;
        border-width: 1.5px;
    }
    
    .nav-profile-btn {
        padding: 1px 3px 1px 1px;
        gap: 2px;
        border-width: 1px;
        height: 22px;
    }
    
    .nav-right {
        gap: 0.2rem;
    }
    
    .token-balance {
        padding: 0.1rem 0.25rem;
        font-size: 0.6rem;
        height: 20px;
    }
    
    .token-balance span {
        display: none;
    }
    
    .token-balance i {
        font-size: 0.6rem;
    }
    
    .btn-outline {
        padding: 1px 3px;
        font-size: 8px;
        height: 18px;
    }
    
    .btn-logout {
        padding: 0.1rem 0.25rem;
        font-size: 0.6rem;
        gap: 2px;
        height: 20px;
    }
    
    .btn-logout span {
        display: none;
    }
    
    .nav-notification-bell {
        font-size: 0.75rem;
        padding: 2px;
        width: 22px;
        height: 22px;
    }
    
    .notification-badge {
        min-width: 12px;
        height: 12px;
        font-size: 7px;
        top: -3px;
        right: -3px;
        border-width: 1px;
    }
    
    #adminLink {
        font-size: 0.6rem;
        padding: 0.1rem 0.2rem;
        margin-left: 5px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .navbar {
        min-height: 28px;
    }
    
    .nav-container {
        height: 28px;
        padding: 0 0.3rem;
    }
    
    .nav-brand h1 {
        font-size: 0.75rem;
    }
    
    .nav-link {
        padding: 0.1rem 0.15rem;
        font-size: 0.55rem;
    }
    
    .nav-menu {
        gap: 0.1rem;
    }
    
    .nav-right {
        gap: 0.15rem;
    }
    
    .token-balance {
        padding: 0.1rem 0.2rem;
        font-size: 0.55rem;
    }
    
    .btn-logout {
        padding: 0.1rem 0.2rem;
        font-size: 0.55rem;
    }
    
    .nav-notification-bell {
        font-size: 0.7rem;
        width: 20px;
        height: 20px;
    }
}

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .navbar {
        min-height: 38px;
    }
    
    .nav-container {
        height: 38px;
    }
    
    .nav-brand h1 {
        font-size: 1.1rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.15rem 0.5rem;
    }
    
    .nav-right {
        gap: 0.4rem;
    }
    
    .token-balance {
        font-size: 0.8rem;
        height: 24px;
    }
    
    .btn-logout {
        font-size: 0.8rem;
        height: 24px;
    }
    
    .profile-menu-avatar {
        width: 22px;
        height: 22px;
    }
}

/* Desktop styles */
@media (min-width: 1025px) {
    .navbar {
        min-height: 40px;
    }
    
    .nav-container {
        height: 40px;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.2rem 0.6rem;
    }
    
    .nav-right {
        gap: 0.6rem;
    }
    
    .token-balance {
        font-size: 0.85rem;
        padding: 0.2rem 0.6rem;
        height: 26px;
    }
    
    .btn-logout {
        font-size: 0.85rem;
        padding: 0.2rem 0.6rem;
        height: 26px;
    }
    
    .profile-menu-avatar {
        width: 24px;
        height: 24px;
    }
    
    .nav-profile-btn {
        height: 26px;
    }
}

/* ===== MAIN CONTENT ===== */
.main-content {
    max-width: 1400px;
    margin: 1rem auto;
    padding: 0 1rem;
}

.container {
    margin-bottom: 1.5rem;
}

/* Rest of your existing CSS below remains exactly the same */
/* User Profile Card */
.user-profile-card {
    background: linear-gradient(135deg, #1a1a2f, #0f0f1f);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(138, 75, 255, 0.2);
    border: 1px solid rgba(138, 75, 255, 0.2);
    backdrop-filter: blur(10px);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.profile-img-container {
    position: relative;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid transparent;
    padding: 3px;
    background: linear-gradient(135deg, #8a4bff, #ff4d4d);
    box-shadow: 0 0 40px rgba(138, 75, 255, 0.6);
}

.online-indicator {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #1a1a2f;
}

.online-indicator.online {
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3), 0 0 20px #10b981;
}

.online-indicator.offline {
    background: #6b7280;
}

.profile-info h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #b380ff, #ff9f9f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.location {
    color: #9ca3af;
    margin-bottom: 0.8rem;
}

.location i {
    color: #b380ff;
    filter: drop-shadow(0 0 5px #8a4bff);
}

.profile-stats {
    display: flex;
    gap: 1.5rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #cbd5ff;
    font-size: 0.9rem;
}

.stat i {
    color: #b380ff;
}

/* Profile Details */
.profile-details {
    border-top: 1px solid rgba(138, 75, 255, 0.2);
    padding-top: 1.2rem;
}

.detail-section {
    margin-bottom: 1.2rem;
}

.detail-section h3 {
    color: #ffd966;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 0 10px rgba(255, 217, 0, 0.3);
}

.detail-section h3 i {
    color: #b380ff;
}

.detail-section p {
    color: #cbd5ff;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.detail-section strong {
    color: #ff9f9f;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
}

.tag.pref {
    background: rgba(138, 75, 255, 0.2);
    color: #c0a0ff;
    border: 1px solid rgba(138, 75, 255, 0.5);
}

.tag.turnoff {
    background: rgba(220, 38, 38, 0.2);
    color: #ffb3b3;
    border: 1px solid rgba(220, 38, 38, 0.5);
}

.whatsapp-note {
    color: #9ca3af;
    font-size: 12px;
    margin-top: 4px;
}

.whatsapp-note i {
    color: #25D366;
    filter: drop-shadow(0 0 5px #25D366);
}

/* Filter Section */
.filter-section {
    background: linear-gradient(135deg, #1a1a2f, #0f0f1f);
    padding: 1.2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(138, 75, 255, 0.2);
    border: 1px solid rgba(138, 75, 255, 0.2);
    backdrop-filter: blur(10px);
}

.filter-controls {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    position: relative;
    min-width: 200px;
}

.search-box i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #8a4bff;
    filter: drop-shadow(0 0 5px #8a4bff);
    font-size: 0.9rem;
}

.search-box input {
    width: 100%;
    padding: 8px 8px 8px 32px;
    border: 2px solid rgba(138, 75, 255, 0.2);
    border-radius: 10px;
    font-size: 13px;
    background: rgba(10, 10, 20, 0.6);
    color: #e2e8ff;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.search-box input:focus {
    outline: none;
    border-color: #8a4bff;
    background: rgba(15, 15, 25, 0.8);
    box-shadow: 0 0 30px rgba(138, 75, 255, 0.3);
}

.search-box input::placeholder {
    color: #6b7280;
}

.filter-options {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.filter-options select {
    padding: 8px 28px 8px 10px;
    border: 2px solid rgba(138, 75, 255, 0.2);
    border-radius: 10px;
    font-size: 13px;
    background: rgba(10, 10, 20, 0.6);
    color: #cbd5ff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238a4bff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}

.filter-options select:focus {
    outline: none;
    border-color: #8a4bff;
    box-shadow: 0 0 30px rgba(138, 75, 255, 0.3);
}

.filter-options select option {
    background: #0f0f1f;
    color: #cbd5ff;
}

.stats-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

.btn-small {
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(138, 75, 255, 0.3), rgba(20, 20, 40, 0.8));
    color: #cbd5ff;
    border: 1px solid rgba(138, 75, 255, 0.3);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-size: 12px;
}

.btn-small:hover {
    background: linear-gradient(135deg, #8a4bff, #b84aff);
    border-color: white;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(138, 75, 255, 0.5);
}

/* Section Title */
.section-title {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffd966;
    text-shadow: 0 0 15px rgba(255, 217, 0, 0.3);
}

.section-title i {
    color: #b380ff;
    filter: drop-shadow(0 0 10px #8a4bff);
}

.badge {
    background: linear-gradient(135deg, #8a4bff, #ff4d4d);
    color: white;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 12px;
    margin-left: 8px;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 0 20px rgba(138, 75, 255, 0.5);
}

/* Users Grid */
.users-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

/* ===== USER CARDS - DARK THEME ===== */
.user-card {
    background: linear-gradient(135deg, #1a1a2f, #0f0f1f);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(138, 75, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(138, 75, 255, 0.2);
    backdrop-filter: blur(5px);
}

.user-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9), 0 0 0 2px rgba(138, 75, 255, 0.4);
    border-color: rgba(138, 75, 255, 0.4);
}

/* Card Header/Slideshow */
.user-card-header {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: radial-gradient(circle at 30% 30%, #2a1a4a, #1a1a2f);
}

.user-card-slideshow {
    width: 100%;
    height: 100%;
    position: relative;
}

.user-card-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.user-card-slideshow img.active {
    opacity: 1;
}

/* Slideshow Controls */
.slideshow-controls {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 5;
}

.slideshow-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(15, 15, 31, 0.8);
    border: 1px solid rgba(138, 75, 255, 0.5);
    color: #cbd5ff;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.slideshow-btn:hover {
    background: linear-gradient(135deg, #8a4bff, #ff4d4d);
    border-color: white;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(138, 75, 255, 0.6);
}

/* Online Status Badge */
.user-online-status {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 3px 8px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    z-index: 6;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}

.user-online-status.online {
    background: rgba(16, 185, 129, 0.3);
    color: #d1fae5;
    border-color: #10b981;
    box-shadow: 0 0 15px #10b981;
}

.user-online-status.offline {
    background: rgba(55, 65, 81, 0.3);
    color: #d1d5db;
    border-color: #6b7280;
}

/* Card Content */
.user-card-content {
    padding: 16px;
    background: linear-gradient(135deg, #1a1a2f, #0f0f1f);
}

.user-card-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.user-card-name span:first-child {
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #b380ff, #ff9f9f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.user-card-age {
    background: rgba(138, 75, 255, 0.2);
    padding: 3px 8px;
    border-radius: 50px;
    font-size: 12px;
    color: #cbd5ff;
    border: 1px solid rgba(138, 75, 255, 0.3);
}

/* Info Items */
.user-card-info {
    background: rgba(20, 20, 40, 0.6);
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid rgba(138, 75, 255, 0.2);
    backdrop-filter: blur(5px);
}

.user-card-info div {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #cbd5ff;
    margin-bottom: 5px;
}

.user-card-info div:last-child {
    margin-bottom: 0;
}

.user-card-info i {
    width: 14px;
    color: #b380ff;
    filter: drop-shadow(0 0 5px #8a4bff);
    font-size: 11px;
}

/* Bio */
.user-card-bio {
    background: rgba(30, 20, 40, 0.6);
    padding: 10px;
    border-radius: 12px;
    margin: 10px 0;
    font-size: 12px;
    line-height: 1.4;
    color: #cbd5ff;
    border-left: 3px solid #ff4d4d;
    border: 1px solid rgba(220, 38, 38, 0.3);
    backdrop-filter: blur(5px);
}

.user-card-bio i {
    color: #ff9f9f;
    margin-right: 4px;
    font-size: 10px;
}

/* Languages */
.user-card-languages {
    margin: 6px 0;
    font-size: 11px;
    color: #9ca3af;
}

.user-card-languages i {
    color: #b380ff;
    width: 16px;
    font-size: 10px;
}

/* Preferences */
.user-card-preferences {
    margin: 10px 0;
}

.user-card-preferences strong {
    display: block;
    margin-bottom: 5px;
    font-size: 11px;
    color: #ffd966;
    text-shadow: 0 0 5px rgba(255, 217, 0, 0.3);
}

.pref-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.tag {
    padding: 2px 6px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 500;
}

.tag.pref {
    background: rgba(138, 75, 255, 0.2);
    color: #c0a0ff;
    border: 1px solid rgba(138, 75, 255, 0.5);
}

.tag.turnoff {
    background: rgba(220, 38, 38, 0.2);
    color: #ffb3b3;
    border: 1px solid rgba(220, 38, 38, 0.5);
}

/* Love Bed & Dealbreakers */
.user-card-love-bed,
.user-card-dealbreakers,
.user-card-interests {
    margin: 10px 0;
    padding: 8px;
    background: rgba(40, 20, 30, 0.6);
    border-radius: 10px;
    border-left: 3px solid #ff4d4d;
    border: 1px solid rgba(220, 38, 38, 0.3);
    backdrop-filter: blur(5px);
}

.user-card-love-bed strong,
.user-card-dealbreakers strong,
.user-card-interests strong {
    display: block;
    margin-bottom: 3px;
    font-size: 11px;
    color: #ffd966;
}

.user-card-love-bed p,
.user-card-dealbreakers p,
.user-card-interests p {
    margin: 0;
    font-size: 11px;
    color: #cbd5ff;
}

/* Stats */
.user-card-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 0;
    padding: 8px 0;
    border-top: 1px solid rgba(138, 75, 255, 0.2);
    border-bottom: 1px solid rgba(138, 75, 255, 0.2);
    font-size: 11px;
}

.user-card-likes,
.user-card-tokens {
    color: #9ca3af;
}

.user-card-likes i {
    color: #ff9f9f;
    margin-right: 3px;
    filter: drop-shadow(0 0 3px #ff4d4d);
    font-size: 10px;
}

.user-card-tokens i {
    color: #ffd966;
    margin-right: 3px;
    filter: drop-shadow(0 0 3px #ffaa00);
    font-size: 10px;
}

/* ACTION BUTTONS */
.user-card-actions {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.btn-action {
    flex: 1;
    padding: 5px 6px;
    border: none;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    backdrop-filter: blur(5px);
}

.btn-action i {
    font-size: 9px;
}

.btn-like {
    background: rgba(76, 29, 29, 0.6);
    color: #fecaca;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.btn-like:hover {
    background: linear-gradient(135deg, #b30000, #8b0000);
    color: white;
    border-color: #ff9f9f;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.btn-like.liked {
    background: linear-gradient(135deg, #b30000, #8b0000);
    color: white;
    border-color: #ff9f9f;
}

.btn-chat {
    background: rgba(30, 58, 138, 0.6);
    color: #bfdbfe;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.btn-chat:hover {
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
    color: white;
    border-color: #60a5fa;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

.btn-whatsapp {
    background: rgba(6, 95, 70, 0.6);
    color: #d1fae5;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-color: #34d399;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.btn-whatsapp.revealed {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-color: #34d399;
}

.btn-view {
    background: rgba(45, 45, 45, 0.6);
    color: #d1d5db;
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.btn-view:hover {
    background: linear-gradient(135deg, #8a4bff, #ff4d4d);
    color: white;
    border-color: #c0a0ff;
    box-shadow: 0 0 20px rgba(138, 75, 255, 0.4);
}

/* ===== LOADING STATES ===== */
.loading-spinner {
    text-align: center;
    padding: 30px;
    color: #b380ff;
}

.loading-spinner i {
    font-size: 30px;
    margin-bottom: 8px;
    animation: spin 1s linear infinite;
    filter: drop-shadow(0 0 20px #8a4bff);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loading-spinner p {
    color: #9ca3af;
    font-size: 13px;
}

/* No Users */
.no-users {
    text-align: center;
    padding: 40px 15px;
    background: linear-gradient(135deg, #1a1a2f, #0f0f1f);
    border-radius: 20px;
    grid-column: 1 / -1;
    border: 1px solid rgba(138, 75, 255, 0.2);
    backdrop-filter: blur(10px);
}

.no-users i {
    font-size: 40px;
    color: #4b5563;
    margin-bottom: 15px;
}

.no-users h3 {
    color: #e2e8ff;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.no-users p {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Load More */
.load-more {
    text-align: center;
    margin: 25px 0;
}

.btn-load-more {
    background: linear-gradient(135deg, rgba(138, 75, 255, 0.3), rgba(20, 20, 40, 0.8));
    color: #cbd5ff;
    border: 1px solid rgba(138, 75, 255, 0.3);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-load-more:hover {
    background: linear-gradient(135deg, #8a4bff, #b84aff);
    border-color: white;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(138, 75, 255, 0.5);
}

/* ===== MESSAGE NOTIFICATION ===== */
.message {
    position: fixed;
    top: 45px;
    right: 15px;
    padding: 12px 20px;
    border-radius: 12px;
    color: white;
    font-weight: 500;
    z-index: 9999;
    display: none;
    animation: slideIn 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    font-size: 13px;
}

.message.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(5, 150, 105, 0.9));
    border-left: 4px solid #34d399;
    box-shadow: 0 0 30px #10b981;
}

.message.error {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(127, 29, 29, 0.9));
    border-left: 4px solid #f87171;
    box-shadow: 0 0 30px #ff4d4d;
}

.message.info {
    background: linear-gradient(135deg, rgba(138, 75, 255, 0.9), rgba(30, 58, 138, 0.9));
    border-left: 4px solid #b380ff;
    box-shadow: 0 0 30px #8a4bff;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(135deg, #0f0f1f, #1a1a2f);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #8a4bff, #ff4d4d);
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,0.1);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #b380ff, #ff9f9f);
}

/* Models Section Styles */
.model-card {
    border: 2px solid transparent;
    background: linear-gradient(#1a1a2f, #0f0f1f) padding-box,
                linear-gradient(135deg, #ffd966, #ff4d4d) border-box;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 217, 0, 0.1);
}

.featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ffd966, #f59e0b);
    color: #1e293b;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 20px #ffd966;
    border: 1px solid rgba(255,255,255,0.3);
}

.featured-badge i {
    margin-right: 4px;
    color: #1e293b;
    font-size: 10px;
}

.model-since {
    font-size: 11px;
    color: #ffd966;
}

.model-since i {
    margin-right: 4px;
}

/* No Models Message */
.no-models {
    text-align: center;
    padding: 60px 15px;
    background: linear-gradient(135deg, #1a1a2f, #0f0f1f);
    border-radius: 20px;
    grid-column: 1 / -1;
    border: 1px solid rgba(138, 75, 255, 0.2);
}

.no-models i {
    font-size: 60px;
    color: #ffd966;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 30px #ffaa00);
}

.no-models h3 {
    font-size: 1.5rem;
    color: #e2e8ff;
    margin-bottom: 8px;
}

.no-models p {
    color: #9ca3af;
    margin-bottom: 15px;
    font-size: 1rem;
}

.model-status {
    color: #34d399 !important;
    font-weight: 600;
    text-shadow: 0 0 10px #10b981;
}

.btn-large {
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 50px;
}

#backToDiscoverBtn {
    margin-top: 15px;
}

/* Models link active state */
#modelsLink.active {
    background: linear-gradient(135deg, #ffd966, #f59e0b);
    color: #1e293b;
}

#modelsLink.active i {
    color: #1e293b;
}

/* Model Images Gallery */
.model-images-modal .modal-content {
    max-width: 800px;
    width: 90%;
    background: linear-gradient(135deg, #1a1a2f, #0f0f1f);
    border: 1px solid rgba(138, 75, 255, 0.3);
    border-radius: 20px;
    padding: 15px;
}

.model-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    margin: 15px 0;
}

.model-image-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(138, 75, 255, 0.2);
    transition: all 0.3s ease;
}

.model-image-card:hover {
    transform: translateY(-3px);
    border-color: #ffd966;
    box-shadow: 0 0 30px rgba(255, 217, 0, 0.3);
}

.model-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.model-image-card.locked {
    filter: blur(3px);
    opacity: 0.7;
    position: relative;
}

.image-lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    backdrop-filter: blur(3px);
}

.image-lock-overlay i {
    font-size: 24px;
    color: #ffd966;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 10px #ffaa00);
}

.image-lock-overlay p {
    color: white;
    font-size: 12px;
    text-align: center;
    padding: 0 5px;
}

.image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 8px;
    font-size: 11px;
    text-align: center;
}

.free-trial-badge {
    background: linear-gradient(135deg, #ffd966, #f59e0b);
    color: #1e293b;
    padding: 8px 12px;
    border-radius: 10px;
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 30px #ffd966;
    font-size: 13px;
}

.payment-prompt {
    background: rgba(138, 75, 255, 0.2);
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    margin-top: 15px;
    border: 1px solid rgba(138, 75, 255, 0.3);
    backdrop-filter: blur(5px);
    font-size: 13px;
}

.payment-prompt p {
    margin-bottom: 8px;
    color: #cbd5ff;
}

.payment-prompt i {
    color: #ffd966;
}

/* Image Expand Modal */
.image-expand-modal .modal-content {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    background: transparent;
    box-shadow: none;
}

.image-expand-modal img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    border: 3px solid white;
    box-shadow: 0 0 60px rgba(0,0,0,0.8);
}

/* Gallery Button */
.btn-gallery {
    background: linear-gradient(135deg, #7e5bef, #6b4bc5);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 12px;
    padding: 6px 12px;
}

.btn-gallery:hover {
    background: linear-gradient(135deg, #8a4bff, #7e5bef);
    box-shadow: 0 0 30px #8a4bff;
}

/* Register hint text */
.register-hint {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 8px;
    opacity: 0.8;
}

.register-hint i {
    color: var(--primary-blue);
    margin-right: 4px;
}

/* Style for the register button */
.register-model-btn {
    background: linear-gradient(135deg, #ffd966, #f59e0b) !important;
    color: #1e293b !important;
    font-weight: 700 !important;
    padding: 12px 25px !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
}

.register-model-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5) !important;
}

.register-model-btn i {
    color: #1e293b !important;
}

/* Style for the upload button when already a model */
.model-status + a.btn-primary {
    margin: 12px 0;
    background: linear-gradient(135deg, #8a4bff, #ff4d4d);
    color: white;
    text-decoration: none;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 8px;
}

.model-status + a.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(138, 75, 255, 0.5);
}

/* Model Card Enhancements */
.model-card {
    border: 2px solid transparent;
    background: linear-gradient(#1a1a2f, #0f0f1f) padding-box,
                linear-gradient(135deg, #ffd966, #ff4d4d) border-box;
}

.featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ffd966, #f59e0b);
    color: #1e293b;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 20px #ffd966;
    border: 1px solid rgba(255,255,255,0.3);
}

.featured-badge i {
    margin-right: 4px;
    color: #1e293b;
    font-size: 10px;
}

.model-since {
    font-size: 11px;
    color: #ffd966;
}

.model-since i {
    margin-right: 4px;
}

.model-visibility-badge {
    background: rgba(0,0,0,0.3);
    padding: 6px 10px;
    border-radius: 6px;
    margin: 8px 0;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px dashed #ffd966;
    backdrop-filter: blur(5px);
}

.model-visibility-badge i {
    color: #ffd966;
    font-size: 11px;
}

.model-visibility-badge .pay-hint {
    color: #34d399;
    font-weight: 600;
    text-shadow: 0 0 10px #10b981;
}

/* Follow Button Styles */
.btn-follow {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    width: 100%;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-follow:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.5);
}

.btn-follow.following {
    background: linear-gradient(135deg, #10b981, #059669);
}

.btn-follow.following:hover {
    background: linear-gradient(135deg, #059669, #047857);
}

.btn-follow i {
    font-size: 12px;
}

.btn-follow:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Followers Section */
.followers-section {
    margin: 12px 0;
    padding: 8px;
    background: rgba(31, 41, 55, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(138, 75, 255, 0.2);
    backdrop-filter: blur(5px);
}

.follower-avatars {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 4px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.follower-avatars:hover {
    background: rgba(138, 75, 255, 0.1);
}

.follower-avatars img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #8a4bff;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(138, 75, 255, 0.5);
}

.follower-avatars .more-count {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(55, 65, 81, 0.6);
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    border: 2px solid #4b5563;
    backdrop-filter: blur(5px);
}

.follower-count {
    margin-left: auto;
    font-size: 11px;
    color: #9ca3af;
    font-weight: 500;
}

.follower-avatars.empty {
    cursor: default;
    justify-content: center;
}

.follower-avatars.empty:hover {
    background: transparent;
}

/* Followers Modal */
.followers-modal .modal-content {
    max-width: 400px;
    background: linear-gradient(135deg, #1a1a2f, #0f0f1f);
    border: 1px solid rgba(138, 75, 255, 0.3);
    border-radius: 20px;
    padding: 15px;
}

.followers-stats {
    padding: 12px;
    background: rgba(31, 41, 55, 0.6);
    border-radius: 10px;
    margin-bottom: 15px;
    text-align: center;
    border: 1px solid rgba(138, 75, 255, 0.2);
}

.total-followers {
    font-size: 16px;
    font-weight: 600;
    color: #ffd966;
    text-shadow: 0 0 10px #ffaa00;
}

.followers-list {
    max-height: 350px;
    overflow-y: auto;
}

.follower-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-bottom: 1px solid rgba(138, 75, 255, 0.2);
    transition: all 0.2s ease;
}

.follower-item:hover {
    background: rgba(138, 75, 255, 0.1);
}

.follower-item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #8a4bff;
    box-shadow: 0 0 15px rgba(138, 75, 255, 0.5);
}

.follower-info {
    flex: 1;
}

.follower-info h4 {
    margin: 0 0 3px 0;
    color: #e2e8ff;
    font-size: 14px;
}

.follower-info p {
    margin: 0;
    color: #9ca3af;
    font-size: 11px;
}

.follower-info .followed-date {
    color: #6b7280;
    font-size: 10px;
    margin-top: 3px;
}

.no-followers {
    text-align: center;
    padding: 30px;
    color: #9ca3af;
    font-style: italic;
    font-size: 13px;
}

/* Update model card actions */
.model-card .user-card-actions {
    margin-top: 12px;
}

/* Optimized card styles */
.user-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    cursor: pointer;
}

.user-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.card-slideshow {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s;
}

.card-img.active {
    opacity: 1;
    z-index: 1;
}

.card-slideshow-controls {
    position: absolute;
    bottom: 8px;
    right: 8px;
    display: flex;
    gap: 4px;
    z-index: 2;
}

.slide-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-status {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

.card-status.online {
    background: #28a745;
    color: white;
}

.card-status.offline {
    background: #6c757d;
    color: white;
}

.card-content {
    padding: 12px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.card-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.card-age {
    color: #666;
    font-size: 14px;
}

.card-location, .card-university {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-stats {
    margin: 10px 0;
    font-size: 13px;
}

.card-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-top: 8px;
}

.action-btn {
    padding: 6px 0;
    border: none;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.2s;
}

/* Model Ratings */
.model-ratings {
    margin: 8px 0;
    padding: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 6px;
    color: white;
}

.rating-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 6px;
    font-weight: bold;
    font-size: 12px;
}

.rating-label {
    font-size: 12px;
    opacity: 0.9;
}

.rating-value {
    font-size: 14px;
    color: #ffd700;
}

.rating-star {
    color: #ffd700;
    font-size: 12px;
}

.rating-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-bottom: 4px;
}

.rating-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 10px;
}

.rating-category {
    opacity: 0.9;
}

.rating-score {
    font-weight: bold;
    color: #ffd700;
}

.rating-total {
    text-align: center;
    font-size: 9px;
    opacity: 0.8;
    margin-top: 4px;
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Model Upload Section */
.upload-prompt-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    border: 2px solid var(--dark-red);
}

.upload-prompt-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.upload-prompt-header i {
    font-size: 28px;
    color: #ffd700;
}

.upload-prompt-header h2 {
    color: var(--dark-red);
    margin: 0;
    font-size: 1.2rem;
}

.upload-categories-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 20px 0;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.category-item i {
    font-size: 20px;
    color: #667eea;
}

.category-item span {
    font-size: 12px;
}

.status-badge {
    padding: 3px 6px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
}

.status-badge.uploaded {
    background: #d4edda;
    color: #155724;
}

.status-badge.not-uploaded {
    background: #f8d7da;
    color: #721c24;
}

/* Rating Upload Modal */
.rating-upload-modal {
    max-width: 700px !important;
}

.upload-grid-modal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.upload-card-modal {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}

.upload-card-modal h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
    color: var(--dark-red);
    font-size: 14px;
}

.upload-card-modal h4 i {
    color: #ffd700;
    font-size: 14px;
}

.image-preview-modal {
    width: 100%;
    height: 120px;
    background: white;
    border: 2px dashed #ddd;
    border-radius: 8px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-preview-modal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-preview-modal .placeholder {
    color: #999;
    font-size: 11px;
}

.upload-actions-modal {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 15px;
}

.upload-actions-modal button {
    min-width: 150px;
    padding: 8px 16px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .upload-categories-preview {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .upload-grid-modal {
        grid-template-columns: 1fr;
    }
    
    .upload-actions-modal {
        flex-direction: column;
    }
    
    .upload-actions-modal button {
        width: 100%;
    }
}
/* Update Notification */
.update-notification {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
    opacity: 0;
}

.update-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.update-notification i {
    font-size: 20px;
}

.update-notification button {
    background: white;
    color: #667eea;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.update-notification button:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .update-notification {
        bottom: 70px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .update-notification button {
        padding: 6px 15px;
    }
    /* WhatsApp button states */
.action-btn.whatsapp.disabled {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

.action-btn.whatsapp.disabled:hover {
    transform: none;
    box-shadow: none;
}

.action-btn.whatsapp.revealed {
    background: #25D366;
}

.action-btn.whatsapp.revealed i {
    color: white;
}

/* No WhatsApp badge */
.no-whatsapp-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    z-index: 10;
}

.no-whatsapp-badge i {
    margin-right: 4px;
    font-size: 10px;
}

/* Tooltip for disabled button */
.action-btn.whatsapp.disabled[title] {
    position: relative;
}

.action-btn.whatsapp.disabled[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    margin-bottom: 5px;
    z-index: 1000;
}

/* Token balance warning */
.whatsapp-warning {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 14px;
}

.whatsapp-warning i {
    color: #ffc107;
    margin-right: 8px;
}
}
.action-btn.like { background: #ff6b6b; color: white; }
.action-btn.like.liked { background: #dc3545; }
.action-btn.chat { background: #4dabf7; color: white; }
.action-btn.whatsapp { background: #25D366; color: white; }
.action-btn.whatsapp.revealed { background: #128C7E; }