/* Following Apple Design Guidelines */
body {
    background-color: #000;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

.albums-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.albums-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
    flex-direction: column;
    gap: 15px;
}

.albums-header .back-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.albums-header .back-link:hover {
    color: #fff;
}

.albums-header h1 {
    color: #fff;
    font-size: 34px;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

.album-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    min-height: 44px;
}

.album-item:hover {
    transform: translateY(-5px);
}

.album-cover {
    position: relative;
    aspect-ratio: 1;
    width: 100%;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-info {
    padding: 16px;
    color: #fff;
    text-align: center;
}

.album-info h3 {
    margin: 0 0 8px 0;
    font-size: 17px;
    font-weight: 600;
}

.album-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.album-links {
    display: flex;
    gap: 15px;
    margin-top: 12px;
    justify-content: center;
}

.album-link {
    width: 44px;
    height: 44px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.album-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Back button */
.back-button {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .albums-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 20px;
        padding: 15px;
    }

    .albums-header h1 {
        font-size: 28px;
    }

    .album-info h3 {
        font-size: 15px;
    }

    .album-info p {
        font-size: 13px;
    }
} 