.elementor-77 .elementor-element.elementor-element-e492187{--display:flex;--min-height:100vh;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--overflow:hidden;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-77 .elementor-element.elementor-element-9f89ef0{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-9f89ef0 *//*
========================================================
PLANET NURU - STAGE 1 CSS
Pure black  spacewith multi-size, multi-hue twinkling stars
========================================================
*/

/* Apply this class to the main Elementor container */
.planet-nuru-stage {
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000000;
}

/* Main scene wrapper */
.pn-space {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #000000;
}

/*
========================================================
STAR FIELD BASE
========================================================
Each star layer uses radial gradients.
Different sizes, colors, opacity, and animation timing create depth.
*/

.pn-star-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-repeat: repeat;
}

/* Small distant stars */
.pn-stars-small {
  opacity: 0.85;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.9) 1px, transparent 1.4px),
    radial-gradient(circle, rgba(140,180,255,0.65) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255,210,150,0.55) 1px, transparent 1.5px);
  background-size:
    95px 95px,
    140px 140px,
    180px 180px;
  background-position:
    12px 18px,
    44px 70px,
    90px 120px;
  animation: pnStarDrift 130s linear infinite, pnTwinkleSoft 6s ease-in-out infinite;
}

/* Medium stars */
.pn-stars-medium {
  opacity: 0.65;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.95) 1.4px, transparent 2px),
    radial-gradient(circle, rgba(115,210,255,0.7) 1.3px, transparent 2px),
    radial-gradient(circle, rgba(255,180,220,0.55) 1.2px, transparent 2px);
  background-size:
    210px 210px,
    260px 260px,
    310px 310px;
  background-position:
    30px 80px,
    120px 40px,
    170px 190px;
  animation: pnStarDrift 190s linear infinite reverse, pnTwinkleMedium 8s ease-in-out infinite;
}

/* Larger brighter stars */
.pn-stars-large {
  opacity: 0.55;
  background-image:
    radial-gradient(circle, rgba(255,255,255,1) 2px, transparent 3px),
    radial-gradient(circle, rgba(170,195,255,0.9) 1.8px, transparent 3px),
    radial-gradient(circle, rgba(255,225,170,0.8) 1.7px, transparent 3px);
  background-size:
    380px 380px,
    460px 460px,
    540px 540px;
  background-position:
    65px 100px,
    240px 170px,
    340px 35px;
  animation: pnStarDrift 260s linear infinite, pnTwinkleBright 10s ease-in-out infinite;
}

/*
========================================================
CONTENT PLACEHOLDER
========================================================
Can be removed later once planet/astronaut become the main visuals.
*/

.pn-content {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  color: #ffffff;
}

.pn-title {
  margin: 0;
  font-size: clamp(48px, 9vw, 130px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #ffffff;
  text-shadow:
    0 0 18px rgba(255,255,255,0.35),
    0 0 45px rgba(135,170,255,0.25);
}

.pn-tagline {
  margin-top: 22px;
  font-size: clamp(14px, 1.5vw, 20px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

/*
========================================================
ANIMATIONS
========================================================
*/

@keyframes pnStarDrift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-180px, -220px, 0);
  }
}

@keyframes pnTwinkleSoft {
  0%, 100% {
    opacity: 0.75;
  }

  50% {
    opacity: 0.95;
  }
}

@keyframes pnTwinkleMedium {
  0%, 100% {
    opacity: 0.45;
  }

  45% {
    opacity: 0.8;
  }

  70% {
    opacity: 0.55;
  }
}

@keyframes pnTwinkleBright {
  0%, 100% {
    opacity: 0.35;
  }

  35% {
    opacity: 0.75;
  }

  60% {
    opacity: 0.5;
  }
}

/*
========================================================
MOBILE TWEAKS
========================================================
*/

@media (max-width: 768px) {
  .pn-title {
    letter-spacing: -0.02em;
  }

  .pn-tagline {
    letter-spacing: 0.08em;
  }
}

/*
========================================================
PLANET NURU MAIN PLANET OBJECT
========================================================
*/

.pn-planet-wrap {
  position: absolute;
  z-index: 10;

  top: 50%;
  left: 50%;

  width: min(58vw, 760px);
  aspect-ratio: 1 / 1;

  transform: translate(-50%, -50%);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  animation: pnPlanetFloat 7s ease-in-out infinite;
}

.pn-planet-img {
  position: relative;
  z-index: 3;

  width: 100%;
  height: auto;

  display: block;

  filter:
    drop-shadow(0 0 22px rgba(255,255,255,0.22))
    drop-shadow(0 0 55px rgba(100,130,255,0.18));

  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.pn-planet-wrap:hover .pn-planet-img {
  transform: scale(1.035);

  filter:
    drop-shadow(0 0 28px rgba(255,255,255,0.35))
    drop-shadow(0 0 75px rgba(120,150,255,0.32));
}

.pn-planet-glow {
  position: absolute;
  z-index: 1;

  width: 82%;
  height: 82%;

  border-radius: 50%;

  background:
    radial-gradient(circle, rgba(120,150,255,0.22), transparent 62%);

  filter: blur(35px);

  opacity: 0.8;
}


/*
========================================================
ORBIT TEXT RING
========================================================

This is the first basic version.
Later we can make this a true circular SVG text path.
*/

.pn-orbit-text {
  position: absolute;
  z-index: 4;

  top: 50%;
  left: 50%;

  width: 145%;
  height: 80px;

  transform: translate(-50%, -50%) rotate(-12deg);

  overflow: hidden;
  pointer-events: none;
}

.pn-planet-label {
  position: absolute;
  z-index: 20;

  bottom: -34px;
  left: 50%;

  transform: translateX(-50%) translateY(10px);

  padding: 10px 18px;
  border-radius: 999px;

  background: rgba(8, 10, 20, 0.75);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);

  color: rgba(255,255,255,0.86);

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;

  opacity: 0;
  pointer-events: none;

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.pn-planet-wrap:hover .pn-planet-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.pn-toast {
  position: fixed;
  z-index: 9999;

  left: 50%;
  bottom: 40px;

  transform: translateX(-50%) translateY(20px);

  padding: 14px 24px;
  border-radius: 16px;

  background: rgba(8, 10, 20, 0.85);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);

  color: rgba(255,255,255,0.9);

  font-size: 14px;
  letter-spacing: 0.06em;

  opacity: 0;
  pointer-events: none;

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.pn-toast.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.pn-orbit-track {
  display: flex;
  width: max-content;
  white-space: nowrap;

  font-size: clamp(14px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: rgba(255,255,255,0.78);

  text-shadow:
    0 0 8px rgba(255,255,255,0.5),
    0 0 22px rgba(120,150,255,0.3);

  animation: pnOrbitTextSpin 12s linear infinite;
}

/*
========================================================
FLOATING ASTRONAUT OBJECT
========================================================
*/

.pn-astronaut-wrap {
  position: absolute;
  z-index: 12;

  top: 10%;
  right: 7%;

  width: min(22vw, 280px);

  cursor: pointer;

  animation: pnAstronautDrift 8s ease-in-out infinite;

  transition: transform 0.45s ease;
}

.pn-astronaut-img {
  width: 100%;
  height: auto;
  display: block;

  filter:
    drop-shadow(0 0 18px rgba(255,255,255,0.22))
    drop-shadow(0 0 42px rgba(120,150,255,0.2));

  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.pn-astronaut-wrap:hover .pn-astronaut-img {
  transform: scale(1.045) rotate(2deg);

  filter:
    drop-shadow(0 0 24px rgba(255,255,255,0.36))
    drop-shadow(0 0 58px rgba(120,150,255,0.35));
}

.pn-astronaut-label {
  position: absolute;
  z-index: 20;

  left: 50%;
  bottom: -20px;

  transform: translateX(-50%) translateY(10px);

  padding: 9px 16px;
  border-radius: 999px;

  background: rgba(8, 10, 20, 0.75);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);

  color: rgba(255,255,255,0.86);

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;

  opacity: 0;
  pointer-events: none;

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.pn-astronaut-wrap:hover .pn-astronaut-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/*
========================================================
FLOATING SPACESHIP OBJECT / NURU STORE
========================================================
*/

.pn-ship-wrap {
  position: absolute;
  z-index: 11;

  right: 8%;
  bottom: 13%;

  width: min(28vw, 390px);

  cursor: pointer;

  animation: pnShipDrift 9s ease-in-out infinite;

  transition: transform 0.45s ease;
}

.pn-ship-img {
  width: 100%;
  height: auto;
  display: block;

  filter:
    drop-shadow(0 0 18px rgba(80,180,255,0.22))
    drop-shadow(0 0 42px rgba(120,150,255,0.16));

  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.pn-ship-wrap:hover .pn-ship-img {
  transform: scale(1.045) rotate(-1.5deg);

  filter:
    drop-shadow(0 0 26px rgba(80,200,255,0.36))
    drop-shadow(0 0 62px rgba(120,150,255,0.32));
}

.pn-ship-label {
  position: absolute;
  z-index: 20;

  left: 50%;
  bottom: -22px;

  transform: translateX(-50%) translateY(10px);

  padding: 9px 16px;
  border-radius: 999px;

  background: rgba(8, 10, 20, 0.75);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);

  color: rgba(255,255,255,0.86);

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;

  opacity: 0;
  pointer-events: none;

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.pn-ship-wrap:hover .pn-ship-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/*
========================================================
PLANET ANIMATIONS
========================================================
*/

@keyframes pnPlanetFloat {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-18px);
  }
}

@keyframes pnOrbitTextSpin {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes pnAstronautDrift {
  0%, 100% {
    transform: translateY(0) rotate(-8deg);
  }

  50% {
    transform: translateY(18px) rotate(-3deg);
  }
}

@keyframes pnShipDrift {
  0%, 100% {
    transform: translateY(0) translateX(0) rotate(3deg);
  }

  50% {
    transform: translateY(-14px) translateX(-8px) rotate(1deg);
  }
}
/*
========================================================
MOBILE PLANET SIZE
========================================================
*/

@media (max-width: 768px) {
  .pn-planet-wrap {
    width: min(86vw, 460px);
  }

  .pn-orbit-text {
    width: 145%;
    font-size: 13px;
    letter-spacing: 0.14em;
  }
}/* End custom CSS */