/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

.album-container {
    position: relative;
    width: 100vw;
    height: 100vh;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ccc;
}

.nav-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
}

/* Album hero section */
.album-hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.full-cover {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #000;
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 30%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 100px 50px 80px;
}

.album-info {
    max-width: 600px;
    z-index: 10;
}

.album-title {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.artist-name {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 4px;
}

.album-subtitle {
    font-size: 1.2rem;
    color: #bbb;
    margin-bottom: 30px;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Release info */
.release-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.release-date {
    display: flex;
    flex-direction: column;
}

.date-label {
    font-size: 0.9rem;
    color: #aaa;
    font-weight: 300;
}

.date-value {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}

.label-info {
    margin-top: 10px;
}

.label-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: #ccc;
    letter-spacing: 2px;
}

/* Streaming platforms */
.streaming-platforms {
    margin-bottom: 40px;
}

.streaming-platforms h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.platform-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.platform-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.platform-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 6px;
    font-weight: bold;
}

.spotify-icon {
    background: #1DB954;
    color: #fff;
}

.apple-icon {
    background: #FA243C;
    color: #fff;
    font-size: 18px;
}

.amazon-icon {
    background: #FF9900;
    color: #232F3E;
}

.youtube-icon {
    background: #FF0000;
    color: #fff;
}

.deezer-icon {
    background: #FEAA2D;
    color: #fff;
}

.tidal-icon {
    background: #000;
    color: #fff;
    font-size: 16px;
}

.platform-link span {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* Track listing */
.track-listing {
    background: rgba(0, 0, 0, 0.7);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.track-listing h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.track-list {
    list-style: none;
}

.track-list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.track-list li:last-child {
    border-bottom: none;
}

.track-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding-left: 10px;
}

.track-number {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: #aaa;
    margin-right: 20px;
    min-width: 30px;
}

.track-title {
    color: #fff;
    font-size: 1rem;
}

/* Responsive design */
@media (max-width: 1024px) {
    .album-overlay {
        padding: 80px 30px 30px;
    }
    
    .album-title {
        font-size: 3rem;
    }
    
    .artist-name {
        font-size: 1.8rem;
    }
    
    .platform-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .album-overlay {
        padding: 70px 20px 20px;
        justify-content: center;
        text-align: center;
    }
    
    .album-info {
        max-width: 100%;
    }
    
    .album-title {
        font-size: 2.5rem;
    }
    
    .artist-name {
        font-size: 1.5rem;
    }
    
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-content {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .album-title {
        font-size: 2rem;
    }
    
    .artist-name {
        font-size: 1.3rem;
    }
    
    .date-value {
        font-size: 1.5rem;
    }
    
    .platform-link {
        padding: 12px;
    }
    
    .platform-link img {
        width: 28px;
        height: 28px;
    }
}


/* Streaming platforms footer styles */
.streaming-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    z-index: 1000;
}

.streaming-platforms-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.platform-grid-small {
    display: flex;
    gap: 10px;
    align-items: center;
}

.platform-link-small {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.platform-link-small:hover {
    transform: translateY(-2px);
}

.platform-icon-small {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.platform-icon-small.spotify-icon {
    background: #1DB954;
    color: #fff;
}

.platform-icon-small.apple-icon {
    background: #FA243C;
    color: #fff;
    font-size: 10px;
}

.platform-icon-small.amazon-icon {
    background: #FF9900;
    color: #232F3E;
}

.platform-icon-small.youtube-icon {
    background: #FF0000;
    color: #fff;
}

.platform-icon-small.deezer-icon {
    background: #FEAA2D;
    color: #fff;
}

.platform-icon-small.tidal-icon {
    background: #000;
    color: #fff;
    font-size: 10px;
}

@media (max-width: 768px) {
    .platform-grid-small {
        gap: 8px;
    }
    
    .platform-icon-small {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    
    .platform-icon-small.apple-icon,
    .platform-icon-small.tidal-icon {
        font-size: 8px;
    }
}
