.explore-section {
    margin-bottom: 3rem;
}

.explore-section h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.user-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.user-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.user-card h3 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.user-card p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.followers {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.explore-post {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.explore-post img,
.explore-post video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.explore-post:hover img,
.explore-post:hover video {
    transform: scale(1.05);
}
