/* GTA Outfit Gallery - Premium Styling */

.outfit-grid {
    display: grid;
    gap: 1.5rem;
}

/* Card Container */
.outfit-card {
    background: rgba(17, 17, 18, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.outfit-card:hover {
    border-color: rgba(0, 162, 255, 0.5);
    box-shadow: 0 10px 40px -15px rgba(0, 162, 255, 0.3);
}

/* Image Container - No more cropping or letterboxing */
.outfit-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.outfit-image {
    width: 100%;
    aspect-ratio: 2 / 4;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.5s ease;
}


.outfit-card:hover .outfit-image {
    transform: scale(1.05);
}

/* Badges - Now in flow */
.badge {
    padding: 0.2rem 0.5rem;
    border-radius: 0.4rem;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

.badge-gender-male { background: rgba(0, 162, 255, 0.15); color: #00a2ff; border: 1px solid rgba(0, 162, 255, 0.2); }
.badge-gender-female { background: rgba(255, 0, 153, 0.15); color: #ff0099; border: 1px solid rgba(255, 0, 153, 0.2); }
.badge-version { background: rgba(255, 255, 255, 0.05); color: rgba(255, 255, 255, 0.7); border: 1px solid rgba(255, 255, 255, 0.1); }

/* Download Button Placeholder */
.download-btn {
    width: 2rem;
    height: 2rem;
    border-radius: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.download-btn:hover {
    background: rgba(0, 162, 255, 0.2);
    border-color: #00a2ff;
    color: #00a2ff;
    transform: scale(1.1);
}

/* Content Info */
.outfit-info {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Footer Author */
.outfit-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.author-avatar {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.author-name {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.author-name strong {
    color: rgba(255, 255, 255, 0.7);
}

/* Filter Bar */
.filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.filter-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-divider {
    width: 1px;
    height: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
}

.filter-label {
    text-transform: uppercase;
    font-size: 0.6rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.12em;
}

.filter-pills {
    display: flex;
    gap: 0.35rem;
}

.filter-pill {
    padding: 0.35rem 0.85rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.filter-pill:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
}

.filter-pill.active {
    background: rgba(0, 162, 255, 0.12);
    border-color: rgba(0, 162, 255, 0.4);
    color: #00a2ff;
}


/* Glow Effect on Name Hook */
.outfit-card:hover .outfit-name {
    color: #00a2ff;
    text-shadow: 0 0 10px rgba(0, 162, 255, 0.3);
}
