
#wi-splash *,
#wi-splash *::before,
#wi-splash *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body.wi-splashing {
  overflow: hidden;
}


#wi-splash {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111111;          /* Ink Black */
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}


.wi-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0;                   /* GSAP se fade in */
  pointer-events: none;
}


.wi-blob--orange {
  width: 420px;
  height: 420px;
  background: #FF7A00;
  top: -100px;
  left: -100px;
}


.wi-blob--violet {
  width: 380px;
  height: 380px;
  background: #7B4DFF;
  bottom: -80px;
  right: -80px;
}


.wi-blob--pink {
  width: 260px;
  height: 260px;
  background: #FF3D81;
  top: 40%;
  right: 10%;
}


.wi-splash__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  padding: 0 20px;
}


.wi-splash__logo {
  opacity: 0;
  transform: translateY(-30px);
  /* GSAP controls these – don't set transition here */
}

/* Placeholder box – logo add karne ke baad hata dena */
.wi-splash__logo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  background: linear-gradient(135deg, #FF7A00, #FF3D81);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

/* Actual logo image sizing */
.wi-splash__logo img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
}


.wi-splash__brand {
  display: flex;
  align-items: center;
  overflow: hidden;
  line-height: 1;
}


.wi-letter {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(38px, 7.5vw, 74px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  opacity: 0;
  transform: translateY(60px);
  /* GSAP controls these */
}


.wi-letter--gradient {
  background: linear-gradient(90deg, #FF7A00, #FF3D81, #7B4DFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.wi-splash__tagline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(11px, 1.8vw, 14px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
}


.wi-splash__progress-wrap {
  width: clamp(180px, 28vw, 290px);
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
}

/* Animated fill – GSAP se width 0 → 100% */
.wi-splash__progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #FF7A00, #FF3D81, #7B4DFF);
  border-radius: 2px;
}


.wi-splash__counter {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(11px, 1.4vw, 13px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 1px;
  opacity: 0;
}


.wi-curtain {
  position: fixed;
  left: 0;
  width: 100%;
  height: 50%;
  background: #111111;
  z-index: 10000;              
  pointer-events: none;
}

.wi-curtain--top {
  top: 0;
  transform: translateY(-101%); 
}

.wi-curtain--bottom {
  bottom: 0;
  transform: translateY(101%);
}


@media (max-width: 480px) {
  .wi-blob--orange {
    width: 260px;
    height: 260px;
    top: -60px;
    left: -60px;
  }

  .wi-blob--violet {
    width: 220px;
    height: 220px;
    bottom: -50px;
    right: -50px;
  }

  .wi-blob--pink {
    width: 160px;
    height: 160px;
    right: 5%;
  }

  .wi-splash__logo-placeholder {
    width: 64px;
    height: 64px;
    font-size: 22px;
    border-radius: 14px;
  }

  .wi-splash__content {
    gap: 18px;
  }
}
