.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--explore-border);
    background: var(--explore-surface);
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    background: transparent;
    border: 1px solid var(--explore-border);
    color: var(--explore-text-muted);
    font-family: inherit;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--explore-radius);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: var(--explore-accent);
    color: var(--explore-accent);
}

.filter-btn.active {
    background: var(--explore-accent);
    border-color: var(--explore-accent);
    color: #000;
}

.gallery-section {
    padding: 2rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-section h2 {
    text-align: center;
    color: var(--explore-text);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--explore-radius);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    font-size: 0.9rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-note {
    text-align: center;
    color: var(--explore-text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-filters {
        padding: 1rem;
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Skeleton Loading States */
.gallery-item.skeleton {
    height: 200px;
    background: linear-gradient(90deg, var(--explore-surface) 25%, rgba(255, 184, 0, 0.05) 50%, var(--explore-surface) 75%) !important;
    background-size: 200% 100% !important;
    animation: skeleton-loading 1.5s infinite !important;
    display: block;
    border-radius: var(--explore-radius);
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}