/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #1e1e2f, #3a3a69);
    color: #fff;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Header Styling */
header {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    animation: slideDown 1s ease-in-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Artist Section */
.artist-profile {
    text-align: center;
    padding: 50px;
}
.artist-profile img {
    width: 200px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    animation: popIn 1s ease-in-out;
}
@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Music Player */
.music-player {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}
.music-player iframe {
    width: 80%;
    max-width: 600px;
    height: 200px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    animation: fadeIn 1.5s ease-in-out;
}

/* Social Media Links */
.social-links {
    text-align: center;
    margin-top: 20px;
}
.social-links a {
    margin: 10px;
    padding: 10px 15px;
    border-radius: 10px;
    color: white;
    background: #ff5722;
    text-decoration: none;
    transition: transform 0.3s;
}
.social-links a:hover {
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    text-align: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.7);
}
.contact a {
    color: #ffeb3b;
    font-weight: bold;
    text-decoration: none;
}
.contact a:hover {
    text-decoration: underline;
}
