.album-grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: flex-start;
    width: 90vw;
    max-width: 1200px;
    margin: 60px auto 0 auto;
    z-index: 1001;
    background: rgba(0,0,0,0.1);
    padding: 32px 0 32px 0;
    border-radius: 16px;
    min-height: 60vh;
}

.album-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 16px 8px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.album-grid-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    transform: translateY(-4px) scale(1.04);
}

.album-grid-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
    background: #222;
}

.album-grid-title {
    color: #fff;
    font-size: 1.1em;
    text-align: center;
    margin-top: 4px;
    font-weight: 500;
    word-break: break-word;
}