/* === Global Styles === */
body {
    background-color: #111;
    color: #eee;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}
a { color: #8c00ff; text-decoration: none; }
a:hover { text-decoration: underline; }

/* === Header === */
.header-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #111, #222);
    border-bottom: 2px solid #8c00ff;
}
.main-title { font-size: 3em; margin-bottom: 10px; }
.subtitle { font-size: 1.3em; margin-bottom: 25px; }

/* === Buttons === */
.btn-primary {
    background-color: #8c00ff;
    border-color: #8c00ff;
    color: #fff;
    font-size: 1.2em;
    padding: 12px 25px;
    border-radius: 10px;
    transition: background 0.3s, transform 0.2s;
    cursor: pointer;
}
.btn-primary:hover {
    background-color: #a133ff;
    transform: translateY(-2px);
}

/* === Call to Action Section === */
.cta-section {
    padding: 40px 20px;
    margin: 30px auto;
    background-color: #222;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    transition: transform 0.3s;
}
.cta-section:hover { transform: translateY(-3px); }
.cta-section h2 { color: #8c00ff; margin-bottom: 15px; }
.cta-section p { margin-bottom: 20px; }

/* === About Section === */
.about-section {
    padding: 40px 20px;
    background-color: #111;
    border-top: 3px solid #8c00ff;
    border-bottom: 3px solid #8c00ff;
    margin: 30px auto;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    transition: transform 0.3s;
}
.about-section:hover {
    transform: translateY(-3px);
}

/* === Footer === */
footer {
    padding: 25px;
    text-align: center;
    background-color: #111;
    border-top: 1px solid #222;
    margin-top: 30px;
    color: #888;
    font-size: 0.9em;
}

/* === Animations === */
.animate-title, .animate-subtitle, .animate-button, .animate-section {
    opacity: 0;
    transform: translateY(20px);
}

/* === Responsive === */
@media (max-width: 768px) {
    .main-title { font-size: 2.2em; }
    .subtitle { font-size: 1.1em; }
    .about-section, .cta-section { padding: 25px 15px; }
    .btn-primary { font-size: 1em; padding: 10px 20px; }
}




/* === Music Page === */
.song-card {
    background-color: #222;
    border: 1px solid #8c00ff;
    margin-bottom: 15px;
    border-radius: 10px;
    padding: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.song-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.song-card h4 {
    color: #8c00ff;
    margin-bottom: 10px;
}
.song-card audio {
    width: 100%;
    margin-top: 10px;
}

/* Audio controls wrapper */
.audio-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Back Home Button */
.back-home-btn {
    text-align: center;
    margin: 30px 0;
}
.back-home-btn .btn-purple {
    background-color: #8c00ff;
    border-color: #8c00ff;
    color: #fff;
    padding: 12px 25px;
    font-size: 18px;
    border-radius: 8px;
}
.back-home-btn .btn-purple:hover {
    background-color: #a133ff;
    border-color: #a133ff;
    color: #fff;
}

/* === Responsive === */
@media (max-width: 768px) {
    .main-title { font-size: 2em; }
    .subtitle { font-size: 1em; }
    .about-section { padding: 20px 10px; }
    .btn-primary, .share-btn, .back-home-btn .btn-purple { font-size: 16px; padding: 8px 20px; }
    .song-card { padding: 12px; }
}
