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

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #1e1e1e;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #1DB954;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    color: #fff;
    font-family: inherit;
}

/* Hero section with album cover */
.hero-section {
    width: 100%;
    height: 100vh;
    max-height: 560px;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/album-cover.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/album-cover.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(50px);
    opacity: 0.6;
    z-index: -1;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
}

.album-cover {
    width: 300px;
    height: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

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

.social-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.follow-btn, .share-btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.follow-btn {
    background-color: #1DB954;
    color: #fff;
}

.follow-btn:hover {
    background-color: #1ED760;
}

.share-btn {
    background-color: transparent;
    border: 2px solid #fff;
}

.share-btn:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Album container */
.album-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1e1e1e;
}

.album-info {
    display: flex;
    margin-top: 40px;
}

.album-title {
    width: 30%;
    padding-right: 40px;
}

.album-title h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 5px;
}

.album-title h2 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #b3b3b3;
    margin-bottom: 40px;
}

.album-title h3 {
    font-size: 1rem;
    font-weight: 400;
    color: #b3b3b3;
    margin-bottom: 15px;
}

.music-platforms {
    margin-top: 10px;
}

.platform-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.platform-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #2a2a2a;
    color: #fff;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.platform-btn:hover {
    background-color: #333;
    color: #fff;
}

.platform-btn i {
    font-size: 20px;
}

/* Track list */
.track-list {
    width: 70%;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.track:hover {
    background-color: rgba(255,255,255,0.1);
}

.play-track-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.5);
    color: rgba(255,255,255,0.8);
}

.play-track-btn:hover {
    background-color: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.play-track-btn i {
    font-size: 16px;
}

.track-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.track-title-artist {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.track-title {
    font-weight: 500;
    font-size: 1rem;
}

.track-artist {
    color: #b3b3b3;
    font-size: 0.9rem;
}

.clip-label {
    color: #b3b3b3;
    font-size: 0.8rem;
    font-weight: normal;
}

.track-duration {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #b3b3b3;
}

.more-options {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.track:hover .more-options {
    opacity: 1;
}

/* Album description */
.album-description {
    text-align: center;
    padding: 40px 20px 10px;
    color: #b3b3b3;
    max-width: 1200px;
    margin: 0 auto;
}

.album-description p {
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #b3b3b3;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

.social-icon {
    width: 50px;
    height: 50px;
    background-color: #ccc;
    color: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #fff;
    transform: scale(1.1);
}

.copyright {
    margin-top: 5px;
    font-size: 0.8rem;
}

/* Media queries */
@media screen and (max-width: 768px) {
    .hero-content {
        gap: 20px;
    }
    
    .album-cover {
        width: 200px;
        height: 200px;
    }
    
    .album-info {
        flex-direction: column;
    }
    
    .album-title, .track-list {
        width: 100%;
        padding-right: 0;
    }
    
    .album-title {
        margin-bottom: 30px;
    }
    
    .album-title h1 {
        font-size: 2.5rem;
    }

    .platform-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .platform-btn {
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .track-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .track-duration {
        width: 100%;
        justify-content: space-between;
    }

    .platform-buttons {
        grid-template-columns: 1fr;
    }
} 