<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Search page styles */
/* User Gallery Grid */
.user-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 items per row on mobile */
    width: 100%;
}

/* Media query for tablet and larger devices */
@media (min-width: 769px) {
    .user-gallery {
        grid-template-columns: repeat(4, 1fr); /* 4 items per row on larger screens */
        gap: 10px; /* Add gap between items on desktop */
    }
    
    .user-card {
        border-radius: 8px; /* Add border-radius on desktop */
        overflow: hidden;
    }
}

/* User card styling */
.user-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4; /* Maintain 3:4 aspect ratio for images */
}

.user-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

/* Specific styles for image loading states */
.user-card img.lazy-load {
    opacity: 0.1; /* Very dim for placeholder */
}

.user-card img.loaded {
    opacity: 1; /* Full opacity for loaded images */
}

/* Info overlay at the bottom of each card */
.user-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    color: white;
    padding: 1.5rem 0.5rem 0.2rem;
}

.user-info-line {
    display: flex;
    align-items: center;
}

.user-info-line:last-child {
    margin-bottom: 0;
}
/* Status indicator dot */
.status-indicator {
    width: 12px; /* Larger status indicator */
    height: 12px;
    border-radius: 50%;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.status-online {
    background-color: #2ecc71; /* Green for online */
}

.status-away {
    background-color: #f39c12; /* Orange for away */
}

.status-offline {
    display: none; /* Hide status dot for offline users */
}

/* Username styling */
.username {
    font-weight: bold;
    font-size: 1rem; /* Larger font for username */
    margin-right: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Gender icon styling */
.gender-icon {
    width: 14px;
    height: 14px;
    margin-right: 0.3rem;
    flex-shrink: 0;
    vertical-align: middle;
}

.gender-male {
    fill: #339af0; /* Blue for male */
}

.gender-female {
    fill: #f06595; /* Pink for female */
}

.gender-ladyboy {
    fill: #845ef7; /* Purple for ladyboy */
}

/* Age and location info */
.user-age,
.user-location {
    margin-right: 0.2rem;
    font-size: 0.75rem; /* Even smaller font for age and location */
}

.user-location {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Loading indicator */
.loading-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    grid-column: 1 / -1; /* Make it span across all columns */
    margin-top: 3rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s infinite linear;
    margin-bottom: 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Error message */
.error-message {
    grid-column: 1 / -1;
    padding: 2rem;
    text-align: center;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    margin: 1rem 0;
}

.error-message p {
    margin-bottom: 1rem;
    color: var(--color-danger);
}

/* No results message */
.no-results {
    grid-column: 1 / -1;
    padding: 3rem;
    text-align: center;
    color: var(--text-secondary);
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 5rem;
    right: 1rem;
    background-color: var(--color-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* New user badge style */
.new-user-badge {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #e9192e;
    color: #fff;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 0.2rem 0.4rem;
    text-transform: uppercase;
    z-index: 5;
}</pre></body></html>