body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #3a0ca3, #4361ee, #7209b7);
    color: #fff;
    overflow-x: hidden;
    margin: 0;
  }

  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  /* Background video */
  .hero .bg-video {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  /* Dark overlay */
  .hero .overlay {
    content: "";
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
  }

  /* Content above video */
  .hero .container { 
    position: relative; 
    z-index: 2; 
  }

  .btn-main {
    background: #ff4d6d;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease;
  }
  .btn-main:hover { transform: scale(1.1); }

  section { padding: 80px 0; }

  
  .competition-card {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  .competition-card i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ffd60a;
    transition: transform 0.4s ease;
  }
  .competition-card:hover { 
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  }
  .competition-card:hover i { transform: scale(1.2) rotate(10deg); }

  
  footer {
    background: #240046;
    padding: 30px;
    text-align: center;
    color: #fff;
  }

  /* floating bubbles background */
  .bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    animation: rise 15s infinite ease-in;
  }
  @keyframes rise {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    100% { transform: translateY(-1200px) scale(0.5); opacity: 0; }
  }
   footer {
    background: #240046;
    padding: 20px;
    text-align: center;
    color: #fff;
  }


#payment {
  padding: 60px 0;
}

.qr-box {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 20px;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-box:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.qr-img {
  max-width: 200px;
  height: auto;
  border-radius: 12px;
}
#about {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
}

#about h2 {
  font-weight: 700;
  color: #ffd60a;
}

#about p.lead {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

#about ul li {
  margin: 10px 0;
  font-size: 1.05rem;
}

#about blockquote {
  font-style: italic;
  color: #ffdee9;
  border-left: 4px solid #ffd60a;
  padding-left: 15px;
}
#rules {
  padding: 70px 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  margin-top: 40px;
}

#rules h2 {
  font-weight: 700;
  color: #ffd60a;
}

.rules-list {
  list-style: none;
  padding-left: 0;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.rules-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
}

.rules-list li::before {
  content: "🎵";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.2rem;
  color: #ff4d6d;
}
#creator-rules {
  padding: 70px 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  margin-top: 40px;
}

#creator-rules h2 {
  font-weight: 700;
  color: #ffd60a;
}
.inner-media {
position: fixed;
top: 50%;
left: 30px; /* Adjust the left value as needed */
transform: translate(-50%, -50%);
}

.logo_dimention {
  width: 40px; 
}
#countdown-section {
  padding: 60px 0;
}

.countdown-box {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 20px;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.countdown-box:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}


#countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

#countdown div {
  text-align: center;
  background: rgba(0,0,0,0.3);
  padding: 15px;
  border-radius: 12px;
  min-width: 80px;
}

#countdown span {
  font-size: 2rem;
  font-weight: bold;
  color: #ffd60a;
  display: block;
}
.contact-box {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 20px;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-decoration: none;
  color: #fff;
  display: block;
}

.contact-box:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.contact-box h3 {
  margin: 15px 0 10px;
  font-size: 1.4rem;
  color: #ffcc00;
}

.contact-box p {
  margin: 0;
  font-size: 1.1rem;
}

/* RULE DESIGN */

  .info-box, .rule-box {
    background: rgba(255,255,255,0.08);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .info-box:hover, .rule-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
  }

    /* Certification Section */
  #certification {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    color: #222;
  }

  #certification .cert-box {
    background: #fff;
    border: 3px solid gold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  #certification .cert-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  }

  #certification .text-highlight {
    color: #e67e22;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: underline;
  }


  /* PAYMENT PLAN  */
  /* Section Background */
  #payment {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  }

  /* Payment Card */
  #payment .payment-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  #payment .payment-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  }

  /* Price Style */
  #payment .price {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
  }

  /* QR Image */
  #payment .qr-img {
    max-width: 220px;
    border-radius: 15px;
    border: 4px solid #fff;
    padding: 8px;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  #payment .qr-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255,255,255,0.5);
  }