.category-header {
    background: transparent;
    border-bottom: none;
}

.category-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0;
}

.category-description {
    max-width: 600px;
    margin: 0 auto;
}

.category-description p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    text-align: center;
}

.album-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.album-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.album-card {
    position: relative;
    height: 550px;
    overflow: hidden;
    background: #000;
}

.album-card:hover .album-img {
    transform: scale(1.08);
}

.album-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.album-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
    color: #999;
}

.album-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    transition: background 0.3s ease;
}

.album-card:hover .album-card-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.album-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-align: center;
    padding: 1rem;
}

.albums-container {
    max-width: 1000px;
}