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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(to bottom, #6B46C1, #1a1a1a);
}

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

/* Hero section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?ixlib=rb-1.2.1&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    padding: 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out;
}

.subtitle {
    font-size: 1.5rem;
    color: #E9D8FD;
    margin-bottom: 30px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.dark {
    background: rgba(0, 0, 0, 0.5);
}

/* Album Info */
.album-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .album-grid {
        grid-template-columns: 1fr;
    }
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Track List */
.track-list {
    max-width: 800px;
    margin: 0 auto;
}

.track {
    display: grid;
    grid-template-columns: 50px 1fr 100px;
    padding: 15px;
    background: rgba(107, 70, 193, 0.2);
    margin-bottom: 10px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.track:hover {
    background: rgba(107, 70, 193, 0.4);
}

.track-number {
    color: #E9D8FD;
}

.track-subtitle {
    color: #E9D8FD;
    font-size: 0.9em;
}

.track-duration {
    text-align: right;
    color: #E9D8FD;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #6B46C1;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #553C9A;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px 0;
    text-align: center;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}