body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #000, #3b2b1a);
  color: gold;

  display: flex;
  flex-direction: column;

  min-height: 100vh;
  width: 100%;

  overflow-x: hidden;  /* block horizontal */
  overflow-y: auto;    /* allow vertical */
}

  
  
.container {
  width: 100%;
  max-width: 500px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  margin: 0 auto;   /* ✅ keeps it centered */
}
  
  /* Countdown */
  .countdown-container {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  #countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  #countdown div {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #c59b2a;
    border-radius: 10px;
    padding: 10px 20px;
    text-align: center;
  }
  #countdown span {
    display: block;
    font-size: 2rem;
    color: gold;
    font-weight: bold;
  }
  
  /* Album Art */
  .album-art {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    order: 2;   /* image below */
  }
  
  .album-art img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
  }
  
  /* Form */
  .form-container {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    width: 100%;        /* ✅ CHANGE */
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    animation: fadeIn 0.5s ease;
    max-width: 400px;   /* ✅ ADD */
    order: 1;   /* form first */
  }
  
  h1 {
    text-align: center;
    color: gold;
  }
  
  label {
    display: block;
    margin: 14px 51px;
    font-weight: 600;
    color: #f5d58c;
  }
  
  input {
    width: 80%;
    padding: 13px;
    border: 1px solid #c59b2a;
    border-radius: 8px;
    background: transparent;
    color: #fff;
    margin-bottom: 10px;
    font-size: 22px;
  }
  
  button {
    background: gold;
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    margin: 22px 13px;
    width: 170px;
    font-size: 19px;
  }

  button:hover {
    background: #b8860b;
  }
  
  .form-step {
    display: none;
    animation: slideIn 0.6s ease;
  }
  .form-step.active {
    display: block;
  }
  
  .buttons {
    display: flex;
    justify-content: space-between;
  }
  
  .error {
    color: #ff5757;
    font-size: 0.9rem;
    margin-top: -5px;
    margin-bottom: 10px;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 20px;
    margin-top: auto;
    border-top: 1px solid #3b2b1a;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
  }
  .social-icons a {
    color: gold;
    font-size: 1.6rem;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  .social-icons a:hover {
    color: #b8860b;
    transform: scale(1.2);
  }
  
  /* Mobile View */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .form-container {
    width: 90%;
    background: rgba(0, 0, 0, 0.85);
  }
}
  
  /* Animations */
  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }
  @keyframes slideIn {
    from {transform: translateY(20px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
  }

  
  .social-icons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .social-icons a {
    color: gold;
    font-size: 22px;
    transition: transform 0.3s, color 0.3s;
  }
  
  .social-icons a:hover {
    transform: scale(1.2);
    color: brown;
  }
  
  .album-art {
      width: 100%;
      max-width: 350px;
      margin: 20px auto;
      overflow: hidden;
      border-radius: 12px;
      position: relative;
    }
    
    .slider {
      position: relative;
    }
    
    
    .slide {
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      transition: opacity 0.8s ease-in-out;
    }
    
    .slide.active {
      opacity: 1;
      position: relative;
    }


@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
  }

  * {
    max-width: 100vw;
    box-sizing: border-box;
  }
}

img, input, button, .container {
  max-width: 100%;
}
 
 
 
 .payment-options {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  margin-top: 15px;
  flex-wrap: wrap;
}

.pay-card {
    flex: 1;
    border: 2px solid #ffd701;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pay-card img {
  width: 100%;
  height: 50px;
  object-fit: contain;
  margin-bottom: 8px;
}

.pay-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.pay-card:hover {
  transform: translateY(-3px);
}

.pay-card.active {
  border: 2px solid #4CAF50;
  transform: scale(1.05);
}


.whatsapp-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 18px;
  background: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: scale(1.03);
}

.download-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(8px);
    z-index:99999;
}

.download-modal-content{
    width: 90%;
    max-width: 500px;
    background: #000000;
    border-radius: 25px;
    padding: 35px;
    margin: 80px auto;
    text-align: center;
    animation: popIn .35s ease;
    border: 1px solid #ffd70029;
}

.album-icon{
    font-size:70px;
    margin-bottom:10px;
}

#downloadCode{
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid gold;
    margin-top: 15px;
    font-size: 16px;
    color: gold;
}

.verify-btn{
    width: 100%;
    margin-top: 15px;
    padding: 15px;
    border: none;
    border-radius: 12px;
    background: #ffd701;
    color: #000000;
    font-size: 16px;
    cursor: pointer;
}

@keyframes popIn{
    from{
        transform:scale(.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

#downloadResponse{
    margin-top:15px;
    text-align:center;
    min-height:24px;
    font-weight:600;
}

.success-msg{
    color:#16a34a;
}

.error-msg{
    color:#dc2626;
}

.playlist-sheet{
    position:fixed;
    left:0;
    right:0;
    bottom:-100%;
    height:80vh;
    background:#fff;
    border-radius:25px 25px 0 0;
    z-index:999999;
    transition:.4s ease;
    overflow-y:auto;
    box-shadow:0 -5px 30px rgba(0,0,0,.25);
}

.playlist-sheet.active{
    bottom:0;
}


.floating-player-btn{
    display:none;

    position:fixed;
    right:20px;
    bottom:20px;

    z-index:999998;

    background:gold;
    color:black;

    border:none;

    border-radius:50px;

    padding:15px 20px;

    font-weight:700;
}


.track-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px;
    border-bottom:1px solid #eee;
}

.track-left{
    display:flex;
    gap:15px;
    align-items:center;
}

.track-number{
    width:40px;
    height:40px;
    background:#f3f3f3;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
}

.track-title{
    font-weight:700;
    color:#111;
}

.track-subtitle{
    color:#777;
    font-size:13px;
}

.track-actions{
    display:flex;
    gap:10px;
}

.play-btn,
.download-btn-track{
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    cursor:pointer;
}

.play-btn{
    background:black;
    color:gold;
}

.download-btn-track{
    background:gold;
    color:black;
}


.playlist-sheet{
    position:fixed;
    left:0;
    right:0;
    bottom:-100%;
    height:85vh;
    background:#fff;
    border-radius:25px 25px 0 0;
    transition:.4s ease;
    z-index:999999;
    overflow-y:auto;
    box-shadow:0 -5px 30px rgba(0,0,0,.25);
}

.playlist-sheet.active{
    bottom:0;
}

.play-btn,
.download-btn-track{
    width:40px;
    height:40px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:none;
    border-radius:50%;
    cursor:pointer;

    padding:0;
}

.play-btn{
    background:black;
    color:gold;
}

.download-btn-track{
    background:gold;
    color:black;
}

.play-btn i,
.download-btn-track i{
    font-size:18px;
    line-height:1;
}

.play-btn i{
    margin-left:2px;
}

.play-btn,
.download-btn-track{
    width:45px;
    height:45px;
}

.play-btn i,
.download-btn-track i{
    font-size:20px;
}

.mini-loader{

    width:18px;
    height:18px;

    border:2px solid #ffffff55;

    border-top:2px solid gold;

    border-radius:50%;

    animation:spin .8s linear infinite;

    margin:auto;

}

@keyframes spin{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}