.album-page-container {
    min-height: 100vh;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.album-cover {
    width: 300px;
    height: 300px;
    object-fit: cover;
    margin-bottom: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.album-header {
    text-align: center;
    margin-bottom: 3rem;
}

.album-header h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.album-header p {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.7;
}

.tracklist {
    width: 100%;
}

.track-item {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.track-number {
    font-size: 0.9rem;
    opacity: 0.5;
    min-width: 30px;
    font-weight: 300;
}

.track-title {
    font-size: 1.1rem;
    font-weight: 400;
    flex: 1;
}

.track-duration {
    font-size: 0.9rem;
    opacity: 0.5;
    font-weight: 300;
}

@media (max-width: 768px) {
    .album-page-container {
        padding: 2rem 1rem;
    }
    
    .album-cover {
        width: 250px;
        height: 250px;
    }
    
    .album-header h1 {
        font-size: 2rem;
    }
    
    .track-item {
        padding: 1rem;
    }
    
    .track-title {
        font-size: 1rem;
    }
    
    .track-duration {
        font-size: 0.85rem;
    }
}