/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #fff;
  background-color: #0d0d0d;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
}

header h1 {
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: #e91e63;
}

nav a {
  margin-left: 1.5rem;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #e91e63;
}

/* Highlight current page */
nav a.active {
  color: #e91e63;
  border-bottom: 2px solid #e91e63;
  padding-bottom: 3px;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1518972559570-7cc1309f3229?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 1rem;
}

.hero h2 {
  font-size: 3rem;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}

.hero p {
  font-size: 1.3rem;
  margin-top: 1rem;
  opacity: 0.85;
}

.hero .cta {
  margin-top: 2rem;
  padding: 0.8rem 2rem;
  border: 2px solid #e91e63;
  background: transparent;
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s;
}

.hero .cta:hover {
  background: #e91e63;
  color: #fff;
  transform: translateY(-3px);
}

/* Music Section */
.music {
  background: #111;
  padding: 5rem 2rem;
  text-align: center;
}

.music h3 {
  color: #e91e63;
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.music p {
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.music iframe {
  margin-top: 1rem;
  width: 100%;
  max-width: 560px;
  border-radius: 8px;
  height: 315px;
}

/* Contact */
.contact {
  background: #111;
  padding: 5rem 2rem;
  text-align: center;
}

.contact h3 {
  color: #e91e63;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.contact p {
  max-width: 600px;
  margin: auto;
  line-height: 1.6;
}

.youtube-btn {
  display: inline-flex;
  align-items: center;
  background: #e91e63;
  color: #fff;
  font-weight: 600;
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 50px
}

.youtube-btn img {
  height: 20px;
  margin-right: 10px;
  filter: brightness(0) invert(1);
}

.youtube-btn:hover {
  background: #ff1744;
  transform: translateY(-3px);
}


/* Footer */
footer {
  background: #000;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  color: #999;
}
.download-btn {
   display: inline-block;
   background: transparent;
   color: #fff;
   border: 2px solid #e91e63;
   padding: 0.8rem 1.5rem;
   margin: 0.5rem 0;
   border-radius: 4px;
   font-weight: 600;
   transition: all 0.3s;
   text-decoration: none;
}

.download-btn:hover {
   background: #e91e63;
   transform: translateY(-3px);
}

.downloads {
   background: #111;
   padding: 6rem 2rem 3rem;
   text-align: center;
}

.downloads h3 {
   color: #e91e63;
   font-size: 2rem;
   margin-bottom: 1rem;
}

.downloads p {
   max-width: 600px;
   margin: 0 auto 2rem;
   line-height: 1.6;
}
