/* assets/css/releases.css */

.releases-page { 
    padding-top: 120px; 
    text-align: center;
}

/* --- Release Grid --- */
.release-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); 
    gap: 30px; 
}

.release-card {
    background: rgba(255, 255, 255, 0.03); 
    border-radius: 12px; 
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05); 
    transition: 0.3s; 
    text-align: left;
    cursor: pointer;
}

.release-card:hover {
    background: rgba(255, 255, 255, 0.08); 
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.cover-art {
    width: 100%; 
    aspect-ratio: 1/1; 
    border-radius: 8px; 
    overflow: hidden; 
    position: relative; 
    margin-bottom: 15px;
}

.cover-art img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: 0.5s; 
}
.release-card:hover img { transform: scale(1.1) rotate(2deg); }

.cover-art .overlay {
    position: absolute; 
    inset: 0; 
    background: rgba(0,0,0,0.4); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    opacity: 0; 
    transition: 0.3s; 
    font-size: 2rem; 
    color: white;
}
.release-card:hover .overlay { opacity: 1; }

.legacy-tag {
    position: absolute; 
    top: 10px; 
    right: 10px; 
    background: rgba(0,0,0,0.7);
    color: gold; 
    border: 1px solid gold; 
    padding: 2px 8px; 
    font-size: 0.7rem;
    border-radius: 4px; 
    text-transform: uppercase; 
    font-weight: bold;
}

.info h3 { 
    font-size: 1.1rem; 
    margin: 0 0 5px; 
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    color: white;
}

.info .artist { 
    color: #ccc; 
    font-size: 0.9rem; 
    margin-bottom: 5px; 
}

.info .meta { 
    color: #666; 
    font-size: 0.8rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}