/* ── Albums Module ── */
.alb-section {
    background: #07070e;
    font-family: 'Inter', sans-serif;
    position: relative; overflow: hidden;
}
.alb-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
}
.alb-wrap { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

.alb-heading { text-align: center; margin-bottom: 56px; }
.alb-label {
    display: inline-block; font-size: 10px; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: #c9a84c; margin-bottom: 10px;
}
.alb-title {
    font-size: clamp(1.3rem, 2.2vw, 1.9rem);
    font-weight: 600; color: #fff;
    letter-spacing: -0.01em; margin: 0;
}

.alb-outer { overflow: hidden; cursor: grab; }
.alb-outer:active { cursor: grabbing; }
.alb-track {
    display: flex;
    transition: transform 0.65s cubic-bezier(0.76, 0, 0.24, 1);
    will-change: transform;
}
.alb-slide {
    flex-shrink: 0; width: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(16px, 2.5vw, 36px);
    align-items: center;
    padding: 12px 0;
}

.alb-left {
    position: relative;
    flex-shrink: 0;
    width: clamp(320px, 38vw, 520px);
    aspect-ratio: 1.3 / 1;
}
.alb-cover-wrap {
    position: absolute;
    top: 50%; left: 0;
    transform: translateY(-50%);
    width: clamp(220px, 26vw, 360px);
    aspect-ratio: 1;
    z-index: 2;
}
.alb-cover-img {
    width: 100%; height: 100%; object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.07);
    display: block;
}
.alb-cover-empty {
    width: 100%; height: 100%; border-radius: 14px;
    background: #1a1a2e;
    display: flex; align-items: center; justify-content: center;
    color: #333;
}
.alb-cover-empty svg { width: 48px; height: 48px; }

.alb-vinyl-wrap {
    position: absolute;
    top: 50%; right: 0;
    transform: translateY(-50%);
    width: clamp(200px, 24vw, 330px);
    aspect-ratio: 1;
    z-index: 1;
}
.alb-vinyl {
    width: 100%; height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 16px 60px rgba(0,0,0,0.8);
    animation: alb-spin 12s linear infinite;
    position: relative;
    overflow: hidden;
}
.alb-vinyl-cover {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 50%;
    object-fit: cover; display: block; z-index: 1;
}
.alb-vinyl-cover-empty {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%,
        #c9a84c 0%, #c9a84c 8%,
        #1c1c1c 8%, #1c1c1c 12%,
        #2a2a2a 12%, #2a2a2a 14%,
        #1c1c1c 14%, #1c1c1c 100%);
    z-index: 1;
}
.alb-vinyl-label {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 22%; aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, #e8c96a 0%, #c9a84c 60%, #a8893a 100%);
    box-shadow: 0 0 0 2px rgba(255,255,255,0.2), 0 2px 8px rgba(0,0,0,0.7);
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
}
.alb-vinyl-dot {
    width: 28%; aspect-ratio: 1; border-radius: 50%;
    background: #07070e;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.2);
}
@keyframes alb-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.alb-right { min-width: 0; }
.alb-top-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.alb-badge-new {
    font-size: 9px; font-weight: 800; letter-spacing: 0.14em;
    text-transform: uppercase; color: #07070e;
    background: #c9a84c; padding: 4px 12px; border-radius: 4px;
}
.alb-year {
    font-size: 12px; font-weight: 500;
    color: rgba(255,255,255,0.25); letter-spacing: 0.06em;
}
.alb-name {
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 800; color: #fff;
    letter-spacing: -0.04em; line-height: 1;
    margin: 0 0 16px;
}
.alb-artist-row { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.alb-artist-avatar {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.alb-artist-avatar svg { width: 16px; height: 16px; color: rgba(255,255,255,0.5); }
.alb-artist-name {
    font-size: 0.95rem; font-weight: 500;
    color: rgba(255,255,255,0.5); letter-spacing: 0.01em;
}
.alb-sep { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.alb-sep-line { flex: 1; height: 1px; background: rgba(255,255,255,0.07); }
.alb-sep-icon { width: 14px; height: 14px; color: rgba(201,168,76,0.5); flex-shrink: 0; }
.alb-stream-label {
    font-size: 9px; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: rgba(255,255,255,0.25);
    margin: 0 0 12px;
}
.alb-platforms { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.alb-plat {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 9px 16px; border-radius: 8px;
    font-size: 12px; font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}
.alb-plat svg { width: 16px; height: 16px; flex-shrink: 0; }
.alb-plat:hover { transform: translateY(-2px); }
.alb-plat--spotify { background: #1DB954; color: #fff; box-shadow: 0 4px 14px rgba(29,185,84,0.35); }
.alb-plat--apple   { background: linear-gradient(135deg,#fc5c7d,#6a3093); color: #fff; box-shadow: 0 4px 14px rgba(106,48,147,0.35); }
.alb-plat--yt      { background: #FF0000; color: #fff; box-shadow: 0 4px 14px rgba(255,0,0,0.35); }
.alb-plat--deezer  { background: #A238FF; color: #fff; box-shadow: 0 4px 14px rgba(162,56,255,0.3); }
.alb-plat--tidal   { background: #00FFFF; color: #000; box-shadow: 0 4px 14px rgba(0,255,255,0.2); }
.alb-detail-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 22px; border-radius: 8px;
    border: 1px solid rgba(201,168,76,0.3);
    color: #c9a84c; font-size: 12px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.alb-detail-btn svg { width: 14px; height: 14px; }
.alb-detail-btn:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.6); }

.alb-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 44px; }
.alb-nav-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.alb-nav-btn svg { width: 15px; height: 15px; }
.alb-nav-btn:hover { background: rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.35); color: #c9a84c; }
.alb-dots { display: flex; gap: 5px; align-items: center; }
.alb-dot {
    height: 2px; width: 20px; border-radius: 2px;
    background: rgba(255,255,255,0.12);
    border: none; cursor: pointer; padding: 0;
    transition: width 0.35s, background 0.35s;
}
.alb-dot.active { width: 36px; background: #c9a84c; }

@media (max-width: 768px) {
    .alb-wrap { padding: 0 20px; }
    .alb-slide { grid-template-columns: 1fr; gap: 28px; }
    .alb-left { width: 100%; max-width: 320px; margin: 0 auto; aspect-ratio: 1.3/1; }
    .alb-cover-wrap { width: 65%; }
    .alb-vinyl-wrap { width: 55%; }
    .alb-name { font-size: 1.8rem; }
}
