﻿/* =========================================================
   PENDING ALBUMS PAGE
   ========================================================= */
.pending-page-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 3rem 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top left, rgba(29, 185, 84, 0.14), transparent 20%),
                radial-gradient(circle at 80% 22%, rgba(45, 105, 255, 0.12), transparent 18%),
                linear-gradient(180deg, #060606 0%, #0a0a0a 55%, #131313 100%);
    overflow: hidden;
    box-sizing: border-box;
}

.pending-bg-animated {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.pending-bg-floaters {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.pending-bg-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle at top right, rgba(29, 185, 84, 0.11), transparent 18%),
                radial-gradient(circle at bottom left, rgba(84, 111, 255, 0.09), transparent 20%);
    pointer-events: none;
}

.floating-cover {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.28);
    animation: floatCover 18s ease-in-out infinite;
    opacity: 0.16;
}

@keyframes floatCover {
    0%, 100% {
        transform: translate3d(var(--float-x), var(--float-y), 0) scale(var(--float-scale)) rotate(0deg);
    }
    50% {
        transform: translate3d(calc(var(--float-x) + 12px), calc(var(--float-y) - 14px), 0) scale(calc(var(--float-scale) * 1.04)) rotate(5deg);
    }
}

.filmstrip-row {
    position: relative;
    width: 100%;
    min-height: 320px;
    overflow: hidden;
    margin: 1.25rem 0;
}

.filmstrip-track {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    min-width: max-content;
    animation: scroll-left 60s linear infinite;
}

.row-2 .filmstrip-track {
    animation: scroll-right 72s linear infinite;
}

.filmstrip-item {
    flex: 0 0 300px;
    height: 300px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 26px 64px rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
}

.filmstrip-item .cover-media,
.floating-cover .cover-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: blur(8px) brightness(0.78);
    transform: translateZ(0);
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes scroll-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.pending-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.4));
    pointer-events: none;
}

.pending-content-wrapper {
    position: relative;
    z-index: 3;
    width: min(860px, 100%);
    display: grid;
    gap: 1.1rem;
    padding: 1.6rem;
    border-radius: 24px;
    background: rgba(10, 10, 10, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px);
}

.pending-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.pending-main-title {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: 0.04em;
    color: #ffffff;
}

.pending-subtitle {
    margin: 0;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 1.1vw, 1.15rem);
    line-height: 1.8;
}

.pending-user-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.pending-user-card {
    position: relative;
    overflow: hidden;
    padding: 1.4rem 1.4rem 1.3rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.035);
    border: none;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.pending-user-card:hover {
    transform: translateY(-8px);
    border-color: rgba(29, 185, 84, 0.45);
    box-shadow: 0 32px 100px rgba(0, 0, 0, 0.36);
}

.pending-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.pending-user-card p {
    display: none;
}

.pending-card-header h2 {
    margin: 0;
    font-size: clamp(1.45rem, 2vw, 1.75rem);
    color: #ffffff;
}

.pending-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3.4rem;
    padding: 0.65rem 0.9rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 999px;
    background: rgba(29, 185, 84, 0.18);
}

.pending-user-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 0.8rem;
}

.action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 1.5rem;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    text-decoration: none;
}

.action-button.primary {
    background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
    box-shadow: 0 20px 60px rgba(29, 185, 84, 0.22);
}

.action-button.secondary {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    color: #f4f4f4;
}

.action-button:hover {
    transform: translateY(-2px);
}

.action-button.primary:hover {
    box-shadow: 0 24px 75px rgba(29, 185, 84, 0.28);
}

.action-button.secondary:hover {
    border-color: #1db954;
    background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1024px) {
    .pending-user-cards-wrapper {
        grid-template-columns: 1fr;
    }
    .filmstrip-item {
        flex: 0 0 180px;
        height: 180px;
    }
    .floating-cover {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .pending-page-wrapper {
        padding: 2rem 1rem 2rem;
    }
    .pending-content-wrapper {
        padding: 1.8rem;
    }
    .pending-main-title {
        font-size: 2.2rem;
    }
    .action-buttons {
        grid-template-columns: 1fr;
    }
    .filmstrip-row {
        min-height: 140px;
    }
    .filmstrip-item {
        flex: 0 0 140px;
        height: 140px;
    }
    .floating-cover {
        width: 100px;
        height: 100px;
    }
}
