body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #1a1a1a;
    color: #f0f0f0;
}

.background-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -100;
}

.hero-section {
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
}

.hero-content h1 {
    font-size: 3em;
    margin: 0;
}

.hero-content .artist-name {
    font-size: 1.5em;
    margin-top: 5px;
}

.release-info {
    font-style: italic;
    color: #ccc;
    margin-top: 10px;
}

.cta-buttons {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 10px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* --- Main Content --- */
.content-section {
    padding: 50px 20px;
    text-align: center;
    max-width: 800px;
    margin: auto;
}

.content-section h2 {
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
}

.content-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #007bff;
    margin: 10px auto 0;
}

.music-player {
    margin-top: 30px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.streaming-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.streaming-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s ease;
}

.streaming-btn:hover {
    transform: translateY(-3px);
}

.streaming-btn i {
    font-size: 1.2em;
}

.jiosaavn-btn { background-color: #008C73; }
.qqmusic-btn { background-color: #FD5A5A; }
.imdb-btn { background-color: #E2B61B; }
.apple-btn { background-color: #FA57C1; }
.spotify-btn { background-color: #1DB954; }

/* --- About Section --- */
#about-section p {
    line-height: 1.6;
    text-align: left;
    margin-bottom: 15px;
}

/* --- Connect Section --- */
.social-links a {
    color: #007bff;
    font-size: 2em;
    margin: 0 15px;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: #fff;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 20px;
    background-color: #000;
    color: #888;
    margin-top: 50px;
}
