* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.header {
    background: linear-gradient(135deg, #c97a5e 0%, #d68a6f 50%, #8b5a4a 100%);
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header h1 {
    color: white;
    font-size: 48px;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-top: 10px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.album-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.album-cover-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
}

.album-cover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-cover-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.album-title-on-cover {
    font-size: 32px;
    font-weight: bold;
    color: #f5a623;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
}

.artist-on-cover {
    color: white;
    font-size: 16px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    text-align: right;
}

.album-info {
    padding: 20px;
}

.album-title {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 8px;
    color: #333;
}

.album-artist {
    font-size: 16px;
    color: #666;
    font-style: italic;
    margin-bottom: 12px;
}

.album-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #999;
}

.track-count {
    display: flex;
    align-items: center;
    gap: 5px;
}

.track-count:before {
    content: '♪';
    font-size: 16px;
}

/* Gradient backgrounds for different albums */
.gradient-1 {
    background: linear-gradient(180deg, rgba(26, 42, 58, 0.3) 0%, rgba(139, 90, 74, 0.5) 50%, rgba(255, 140, 80, 0.6) 100%);
}

.gradient-2 {
    background: linear-gradient(180deg, rgba(58, 26, 42, 0.3) 0%, rgba(139, 74, 120, 0.5) 50%, rgba(200, 80, 150, 0.6) 100%);
}

.gradient-3 {
    background: linear-gradient(180deg, rgba(26, 58, 42, 0.3) 0%, rgba(74, 139, 90, 0.5) 50%, rgba(80, 200, 140, 0.6) 100%);
}

.gradient-4 {
    background: linear-gradient(180deg, rgba(42, 26, 58, 0.3) 0%, rgba(90, 74, 139, 0.5) 50%, rgba(140, 100, 200, 0.6) 100%);
}

.footer {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 14px;
}
