﻿@font-face {
  font-family: "YACgEWWPgRQ_0";
  src: url("../assets/fonts/YACgEWWPgRQ_0.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "More Sugar";
  src: url("../assets/fonts/MoreSugar.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --nav-ink: #304254;
  --stage-shadow: #3a060a;
  --cream: #fdf3e3;
  --cream-ink: #4a3a2a;
  --space-1: #1b1140;
  --space-2: #2a1a5e;
  --font-ui: YACgEWWPgRQ_0, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "More Sugar", var(--font-ui);
  --font-body: "Gochi Hand", cursive, var(--font-ui);
  --font-gatku-g: "Poppins", sans-serif;
}

.gatku-g {
  font-family: var(--font-gatku-g) !important;
  font-weight: 500;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  overflow-x: hidden;
  background: var(--cream);
}

#quiz-page-play,
#watchvideo-online,
#gatku-online {
  scroll-margin-top: 100px;
}

p {
  text-align: justify;
}

.hero-stage {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #1a0406;
  border-bottom: 3px solid #fff;
}
h3.piya-copy.cust-top-amzing {
    position: relative;
    top: 110px;
    max-width:500px;
    min-width:500px;
    right:0px;
    font-size: 28px;
    line-height:32px;
}
p.participate-cust1 {
    font-size: 30px;
}

.participate-cust{
        font-size: 30px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  pointer-events: none;
  -webkit-touch-callout: none;
}

/* Hide native play button / controls on iPhone & mobile browsers */
.hero-video::-webkit-media-controls {
  display: none !important;
  -webkit-appearance: none;
}

.hero-video::-webkit-media-controls-enclosure,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-start-playback-button,
.hero-video::-webkit-media-controls-overlay-play-button,
.hero-video::-webkit-media-controls-play-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.15) 0%,
      transparent 45%,
      transparent 100%);
}

.top-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 5px 15px;
  background: #fff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
}

.top-nav__brand {
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}

.top-nav__logo {
  display: block;
  height: 80px;
  width: auto;
}
.quiz-title a {
    color: #fff;
}
.top-nav__links a {
  font-family: var(--font-body);
  color: var(--nav-ink);
  text-decoration: none;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: opacity 0.2s ease;
}

.top-nav__links a:hover {
  opacity: 0.65;
  color: var(--nav-ink);
}

/* —— Mobile hamburger —— */
.nav-burger {
  position: relative;
  z-index: 10003;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: #d8402f;
  box-shadow:
    0 4px 0 #a82a1c,
    0 8px 18px rgba(216, 64, 47, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;

}
.nav-burger.is-open{
  top: 5px;
  right: 5px;
}
.nav-burger:active {
  transform: translateY(2px);
  box-shadow:
    0 2px 0 #a82a1c,
    0 4px 10px rgba(216, 64, 47, 0.3);
}

.nav-burger__box {
  position: relative;
  width: 22px;
  height: 16px;
  display: block;
}

.nav-burger__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.5px;
  border-radius: 999px;
  background: #fff;
  transition:
    transform 0.35s cubic-bezier(0.68, -0.4, 0.32, 1.4),
    opacity 0.2s ease,
    top 0.35s ease,
    width 0.35s ease;
}

.nav-burger__bar:nth-child(1) { top: 0; }
.nav-burger__bar:nth-child(2) { top: 7px; width: 70%; }
.nav-burger__bar:nth-child(3) { top: 14px; width: 85%; }

.nav-burger.is-open {
  background: #b83324;
  box-shadow:
    0 4px 0 #8a2014,
    0 8px 18px rgba(216, 64, 47, 0.4);
}

.nav-burger.is-open .nav-burger__bar:nth-child(1) {
  top: 7px;
  width: 100%;
  transform: rotate(45deg);
}

.nav-burger.is-open .nav-burger__bar:nth-child(2) {
  opacity: 0;
  transform: translateX(8px);
}

.nav-burger.is-open .nav-burger__bar:nth-child(3) {
  top: 7px;
  width: 100%;
  transform: rotate(-45deg);
}

/* —— Mobile menu panel —— */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 10001;
  pointer-events: none;
  visibility: hidden;
}

.mobile-nav.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-nav__splash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 90% -5%, rgba(255, 120, 90, 0.55), transparent 55%),
    radial-gradient(ellipse 70% 50% at 5% 105%, rgba(255, 200, 140, 0.25), transparent 50%),
    linear-gradient(165deg, #e24a38 0%, #d8402f 42%, #b83324 100%);
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-nav.is-open .mobile-nav__splash {
  opacity: 1;
  transform: scale(1);
}

.mobile-nav__splash::before,
.mobile-nav__splash::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.mobile-nav__splash::before {
  width: 180px;
  height: 180px;
  top: 12%;
  left: -40px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
  animation: milk-blob 7s ease-in-out infinite;
}

.mobile-nav__splash::after {
  width: 140px;
  height: 140px;
  bottom: 18%;
  right: -30px;
  background: radial-gradient(circle, rgba(255, 220, 160, 0.28) 0%, transparent 70%);
  animation: milk-blob 9s ease-in-out infinite reverse;
}

@keyframes milk-blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -18px) scale(1.08); }
}

.mobile-nav__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease, transform 0.2s ease;
}

.mobile-nav__close:hover,
.mobile-nav__close:focus-visible {
  background: #fff;
  color: #d8402f;
  outline: none;
  transform: scale(1.05);
}

.mobile-nav__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding:0px 1.75rem 3rem;
}

.mobile-nav__eyebrow {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-nav.is-open .mobile-nav__eyebrow {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mobile-nav__links a {
  position: relative;
  align-items: baseline;
  gap: 0.85rem;
  padding: 0.85rem 0.25rem;
  font-family: var(--font-body);
  font-size: clamp(1.85rem, 7vw, 2.4rem);
  line-height: 1.15;
  color: #fff;
  text-decoration: none;
  border-bottom: 2px dashed rgba(255, 255, 255, 0.35);
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 0.4s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.2s ease;
}

.mobile-nav__links a::before {
  content: attr(data-nav-index);
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0.9;
  min-width: 1.6rem;
}

.mobile-nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff, #ffd9a0);
  transition: width 0.3s ease;
}

.mobile-nav__links a:hover,
.mobile-nav__links a:focus-visible {
  color: #ffe8c8;
  outline: none;
}

.mobile-nav__links a:hover::after,
.mobile-nav__links a:focus-visible::after {
  width: 55%;
}

.mobile-nav.is-open .mobile-nav__links a {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav.is-open .mobile-nav__links a:nth-child(1) { transition-delay: 0.16s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(2) { transition-delay: 0.24s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(3) { transition-delay: 0.32s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(4) { transition-delay: 0.4s; }

.mobile-nav__tag {
  margin: 2.25rem 0 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.45s ease;
}

.mobile-nav.is-open .mobile-nav__tag {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.48s;
}

body.nav-open {
  overflow: hidden;
}

/* Keep logo + burger above red overlay so X / close stays clickable */
body.nav-open .top-nav {
  z-index: 10002;
    background: #fff;
    box-shadow: none;
    padding-bottom: 15px;
}

.hero-copy {
  position: relative;
  z-index: 10;
  padding-left: clamp(1.5rem, 6vw, 5rem);
  max-width: 55%;
}

.hero-title {
  font-family: "More Sugar", var(--font-ui);
  font-weight: 400;
  font-size: clamp(3.25rem, 10vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  animation: title-in 0.9s ease-out 0.3s both;
}

.hero-title span {
  display: block;
}

@keyframes title-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Intro scrapbook section (screenshot match) ---------- */
.intro-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  color: #fff;
  background: url(../image/gatku-right-strp.jpg);
  background-size: cover;
  background-position: bottom center;
  border-bottom: 3px solid #fff;
}

/* 1. Red notebook â€” bottom layer */
.intro-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scaleX(-1);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

/* 2. Milk waves â€” ON TOP of red, pinned to bottom */
.intro-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  line-height: 0;
  height: 38%;
  overflow: hidden;
}

.intro-wave img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  object-position: bottom center;
  display: block;
  mix-blend-mode: screen;
}

/* 3. Character + text â€” above red and waves */
.intro-stage {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-top: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: clamp(5.5rem, 12vw, 9rem);
}

.intro-visual {
  position: relative;
  z-index: 3;
  margin-bottom: -2%;
}

.intro-arc {
  position: relative;
  z-index: 4;
  width: min(100%, 760px);
  height: auto;
  margin-bottom: -30%;
  overflow: visible;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.28));
}

.intro-arc-text {
  fill: #fff;
  font-family: var(--font-display);
  font-size: 70px;
  letter-spacing: 0.02em;
}

.intro-mascot {
  position: relative;
  z-index: 3;
  height: auto;
  display: block;
  mix-blend-mode: screen;
  transform-origin: bottom center;
}

.intro-copy {
  position: relative;
  z-index: 4;
}

.intro-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.18;
  letter-spacing: 0.01em;
  margin: 0 0 1.1rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.intro-heading span {
  display: block;
}

.intro-text {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1.2vw, 1.05rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.22);
}

.intro-text p {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 30px;

}

.intro-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .intro-section {
    aspect-ratio: auto;
    min-height: 0;
    max-height: none;
  }

  .intro-stage {
    text-align: center;
    padding-top: 2.5rem;
    padding-bottom: clamp(6rem, 20vw, 9rem);
  }

  .intro-visual {
    margin-bottom: 0;
  }

  .intro-copy {
    padding-top: 0;
  }

  .intro-text {
    max-width: 40rem;
    margin-inline: auto;
    text-align: left;
  }

  .intro-heading {
    text-align: center;
  }

  .intro-arc {
    margin-bottom: -20%;
  }

  .intro-arc-text {
    font-size: 40px;
  }

  .intro-mascot {
    max-width: 100%;
    transform: scale(1.04);
  }

  .intro-wave {
    height: 28%;
  }
}

@media (max-width: 575.98px) {
  .intro-arc-text {
    font-size: 70px;
  }

  .intro-mascot {
    max-width: 100%;
    transform: none;
  }

  .intro-heading {
    font-size: 22px;
  }

  .intro-text p {
    font-size: 18px;
    line-height: 24px;
  }

  .milaxy-card p {
    font-size: 18px !important;
  }
}

/* ---------- Story sections ---------- */
.story-section {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.section-cream {
  background: var(--cream);
  color: var(--cream-ink);
}

.section-space {
  background: radial-gradient(120% 120% at 80% 10%,
      var(--space-2) 0%,
      var(--space-1) 60%,
      #0f0a2a 100%);
  color: #fff;
}

.section-hero-power {
  background: linear-gradient(160deg, #ff5b6e 0%, #b8143c 100%);
  color: #fff;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0 0 1.25rem;
  color: var(--cream-ink);
}

.section-title.big {
  font-size: clamp(2.4rem, 7vw, 5rem);
}

.section-title.text-light {
  color: #fff;
}

.section-lead {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  color: #d8402f;
  margin: 0 0 1.25rem;
}

.section-text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.7;
  margin: 0 0 1rem;
}

.text-light-soft {
  color: rgba(255, 255, 255, 0.82);
}

/* ---------- Media frames / placeholders ---------- */
.media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  background: rgba(0, 0, 0, 0.04);
}

.media-frame.media-wide {
  aspect-ratio: 16 / 7;
  max-width: 960px;
  margin-inline: auto;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-frame.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(45deg,
      rgba(216, 64, 47, 0.08),
      rgba(216, 64, 47, 0.08) 12px,
      rgba(216, 64, 47, 0.03) 12px,
      rgba(216, 64, 47, 0.03) 24px);
  border: 2px dashed rgba(216, 64, 47, 0.35);
}

.media-frame.is-empty::after {
  content: attr(data-label);
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(216, 64, 47, 0.65);
}

/* ---------- IG Shorts ---------- */
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin-inline: auto;
}

.short-card {
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: #d8402f;
  transition: transform 0.25s ease;
}

.short-card:hover {
  transform: translateY(-6px);
}

/* ---------- Milaxy section ---------- */
.milaxy-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  background: #1a0f3d;
  border-bottom: 3px solid #fff;
}

.milaxy-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  filter: blur(6px);
}

.milaxy-bg.mobile {
  display: none;
}

.milaxy-bg.decktop {
  display: block;
}


.milaxy-light {
  position: absolute;
  top: -8%;
  right: -4%;
  width: min(55%, 720px);
  height: auto;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  mix-blend-mode: screen;
  opacity: 0.95;
}

.milaxy-stage {
  position: relative;
  z-index: 2;
  padding-top: 200px;
  padding-bottom: 200px;
}

.milaxy-card {
  background: url(../image/red-bg.jpg);
  color: #fff;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.milaxy-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 23px;
  line-height: 1.65;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767.98px) {
  .milaxy-section {
    min-height: 480px;
  }

  .milaxy-light {
    width: 70%;
    top: -4%;
    right: -10%;
  }

  .milaxy-card {
    padding: 1.35rem 1.2rem;
  }
}

/* ---------- Jump section ---------- */
.jump-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 90vh;
  background: url(../image/yellow-bg.png) right center / cover no-repeat;
  background-size: 100% 100%;
  border-bottom: 3px solid #fff;
}

.jump-stage {
  position: relative;
  z-index: 2;
  padding-top: clamp(1.5rem, 4vw, 3rem);
}

.jump-arc {
  display: block;
  width: min(100%, 900px);
  height: auto;
  margin: 0 auto clamp(-0.5rem, -1vw, -1.5rem);
  overflow: visible;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.28));
}

.jump-arc-text {
  fill: #fff;
  font-family: var(--font-display);
  font-size: 46px;
  letter-spacing: 0.01em;
}

.jump-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* Full-bleed layer over background so rocket % match the scene */
.jump-scene {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: visible;
}

.jump-bg {
  display: none;
}

/* Default: sitting upright on LEFT, then arcs up toward RIGHT */
.jump-rocket {
  position: absolute;
  left: 22%;
  top: 32%;
  width: clamp(70px, 8.5vw, 150px);
  height: auto;
  z-index: 5;
  opacity: 1;
  pointer-events: none;
  transform: rotate(0deg);
  transform-origin: center center;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.35));
  will-change: left, top, transform, opacity;
}

.jump-rocket.is-flying {
  animation: jump-rocket-fly 2.8s cubic-bezier(0.45, 0.05, 0.25, 1) forwards;
}

/* Sit left → fly diagonally up-right → exit top-right */
@keyframes jump-rocket-fly {
  0% {
    left: 22%;
    top: 32%;
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }

  30% {
    left: 28%;
    top: 32%;
    opacity: 1;
    transform: rotate(28deg) scale(1.05);
  }

  60% {
    left: 55%;
    top: 10%;
    opacity: 1;
    transform: rotate(42deg) scale(1.08);
  }

  85% {
    left: 78%;
    top: -8%;
    opacity: 0.75;
    transform: rotate(52deg) scale(1.05);
  }

  100% {
    left: 95%;
    top: -28%;
    opacity: 0;
    visibility: hidden;
    transform: rotate(58deg) scale(1);
  }
}

@media (max-width: 767.98px) {
  .jump-section {
    min-height: 70vh;
    background-position: center 30%;
  }

  .jump-arc-text {
    font-size: 48px;
  }

  .jump-rocket {
    width: clamp(48px, 16vw, 78px);
    left: 6%;
    top: 50%;
  }

  @keyframes jump-rocket-fly {
    0% {
      left: 6%;
      top: 50%;
      opacity: 1;
      transform: rotate(0deg) scale(1);
    }

    30% {
      left: 26%;
      top: 30%;
      opacity: 1;
      transform: rotate(28deg) scale(1.05);
    }

    60% {
      left: 52%;
      top: 8%;
      opacity: 1;
      transform: rotate(42deg) scale(1.08);
    }

    85% {
      left: 76%;
      top: -10%;
      opacity: 0.75;
      transform: rotate(52deg) scale(1.05);
    }

    100% {
      left: 96%;
      top: -30%;
      opacity: 0;
      visibility: hidden;
      transform: rotate(58deg) scale(1);
    }
  }
}

@media (prefers-reduced-motion: reduce) {

  .jump-rocket,
  .jump-rocket.is-flying {
    animation: none;
    opacity: 0;
    visibility: hidden;
  }
}

/* ---------- Dhokha section ---------- */
.dhokha-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: url(../image/red-bg1920x1200-left.png);
  background-size: cover;
  background-position: left center;
  color: #fff;
  padding-top: 60px;
  border-bottom: 3px solid #fff;
}


.dhokha-stage {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(3rem, 7vw, 2.5rem);
}

.dhokha-frame {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.35));
}

.dhokha-copy {
  margin: 0;
  font-family: var(--font-body);
  font-size: 23px;
  line-height: 1.55;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
  font-weight: 400;
  margin-top: 40px;
}

.dhokha-arc {
  display: block;
  width: 100%;
  height: auto;
  margin: 0.5rem 0 -0.5rem;
  overflow: visible;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.28));
}

.dhokha-arc-text {
  fill: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 0.01em;
}

@media (max-width: 767.98px) {
  .dhokha-copy {
    text-align: center;
    font-size: 18px;
    margin-top: 0px;
  }

  .dhokha-arc-text {
    font-size: 40px;
  }
}

/* ---------- Gaadhe maza section ---------- */
.gaadhe-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: url(../image/red-bg1920x1200.png);
  background-size: cover;
  background-position: right center;
  color: #fff;
  padding-bottom:50px;
  border-bottom: 3px solid #fff;
}

.gaadhe-stage {
  position: relative;
  z-index: 2;
  padding-top: clamp(1rem, 2.5vw, 2rem);
  padding-bottom: 0;
}

.gaadhe-arc {
  display: block;
  width: min(100%, 640px);
  height: auto;
  margin: 0 0 -0.75rem;
  overflow: visible;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.28));
}

.gaadhe-arc-text {
  fill: #fff;
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 0.01em;
}

.gaadhe-shop {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.35));
}

.gaadhe-copy {
  margin-bottom: 0.5rem;
}

.gaadhe-line {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.gaadhe-line.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gaadhe-wave-wrap {
  position: relative;
  margin-top: -110px;
}

.gaadhe-waves {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
  position: relative;
  z-index: 1;
  overflow: hidden;
  top: 140px;
}

.gaadhe-mascot {
  position: absolute;
  left: 8%;
  bottom: 9%;
  width: min(50%, 300px);
  height: auto;
  z-index: 4;
  opacity: 1;
  transform: translate(0, 12%) rotate(-2deg);
  transform-origin: bottom center;
  will-change: transform;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.3));
}

.gaadhe-mascot.is-playing {
  animation: gaadhe-mascot-wave 3.8s ease-in-out forwards;
}

@keyframes gaadhe-wave-bob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/*
  gutku1.png one-shot path:
  left â†’ thoda right â†’ up â†’ left me aakar ruk
*/
@keyframes gaadhe-mascot-wave {
  0% {
    transform: translate(0, 12%) rotate(-2deg);
  }

  30% {
    transform: translate(55%, 8%) rotate(0deg);
  }

  55% {
    transform: translate(70%, -35%) rotate(2deg);
  }

  80% {
    transform: translate(20%, -5%) rotate(-1deg);
  }

  100% {
    transform: translate(0, 10%) rotate(-2deg);
  }
}

@media (max-width: 767.98px) {
  .gaadhe-line {
    text-align: center;
  }

  .gaadhe-arc {
    margin-inline: auto;
  }

  .gaadhe-arc-text {
    font-size: 42px;
  }

  .gaadhe-mascot {
    width: min(42%, 150px);
    bottom: 4%;
  }

}

@media (prefers-reduced-motion: reduce) {

  .gaadhe-waves,
  .gaadhe-mascot.is-playing {
    animation: none;
  }

  .gaadhe-mascot {
    left: 8%;
    bottom: 28%;
    transform: translate(0, 10%);
  }

  .gaadhe-line {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Superpower section ---------- */
.superpower-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: url(../image/background-milk-right.png);
  background-size: cover;
  background-position: bottom center;
  color: #fff;
  padding: 60px 0px;
  border-bottom: 3px solid #fff;
}


.superpower-stage {
  position: relative;
  z-index: 2;
}

.superpower-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 50px;
}

.superpower-arc {
  display: block;
  width: min(100%, 640px);
  height: auto;
  margin-bottom: -31%;
  overflow: visible;
  z-index: 3;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.28));
}

.superpower-arc-text {
  fill: #fff;
  font-family: var(--font-display);
  font-size: 52px;
  letter-spacing: 0.02em;
}

.superpower-hero {
  position: relative;
  z-index: 2;
}

.superpower-milkman {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.3));
}

/* Chest glow pulse â€” something coming out of chest */
.superpower-chest-glow {
  position: absolute;
     left: 46%;
    top: 54%;
  width: 7%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
      rgba(255, 80, 80, 0.95) 0%,
      rgba(255, 40, 40, 0.55) 40%,
      transparent 72%);
  z-index: 3;
  pointer-events: none;
  opacity: 0.75;
  animation: chest-glow-pulse 1.6s ease-in-out infinite;
}

.superpower-chest-burst {
  position: absolute;
  left: 48%;
  top: 46%;
  width: 55%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle,
      rgba(255, 120, 140, 0.45) 0%,
      rgba(255, 60, 80, 0.18) 35%,
      transparent 68%);
  animation: chest-burst-out 2.2s ease-out infinite;
}

@keyframes chest-glow-pulse {

  0%,
  100% {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(0.85);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.25);
  }
}

@keyframes chest-burst-out {
  0% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(0.4);
  }

  70% {
    opacity: 0.25;
    transform: translate(-50%, -50%) scale(1.35);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.7);
  }
}

.superpower-copy {
  margin-bottom: 1rem;
}

.superpower-line {
  margin: 0 0 0.9rem;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.55vw, 1.3rem);
  line-height: 1.55;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.superpower-line.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.superpower-friends {
  position: relative;
  z-index: 3;
  margin-top: auto;
  align-self: flex-end;
  margin-right: 4%;
}

.superpower-nigay {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
}

.superpower-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -52px;
  z-index: 1;
  pointer-events: none;
  line-height: 0;
}

.superpower-wave img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: screen;
}

@media (max-width: 767.98px) {
  .superpower-arc-text {
    font-size: 38px;
  }

  .superpower-line {
    text-align: center;
  }

  .superpower-friends {
    align-self: center;
    margin-right: 0;
    width: min(80%, 280px);
  }

}

@media (prefers-reduced-motion: reduce) {

  .superpower-chest-glow,
  .superpower-chest-burst {
    animation: none;
  }

  .superpower-line {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Piya Kya section ---------- */
.piya-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: url(../image/gada-maja-piya-kya.png);
  background-size: cover;
  background-position: bottom right;
  color: #fff;
  border-bottom: 3px solid #fff;
}


.piya-stage {
  position: relative;
  z-index: 2;
  padding: 50px 0;
}

.piya-copy {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  line-height: 1.55;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
  min-height: 4.5em;
  max-width: 700px;
  margin: 0px auto;
  text-align: center;
  min-width: 700px;
}

.piya-pack {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.28));
}

.piya-section .mobile {
  display: none;
}

.piya-section .dec {
  display: block;
}

@media (max-width: 767.98px) {
  .piya-copy {
    text-align: center;
  }

  .piya-section .dec {
    display: none;
  }

  .piya-section .mobile {
    display: block;
  }
}

/* ---------- NIF video section ---------- */
.nif-video-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: url("../image/red-bg1920x1200-left.png") center / cover no-repeat;
  border-bottom: 3px solid #fff;
}

.nif-video-stage {
  position: relative;
  z-index: 2;
  padding-top: clamp(1.5rem, 4vw, 4rem);
  padding-bottom: clamp(1.5rem, 4vw, 4rem);
  padding-left: clamp(0.75rem, 3vw, 1.5rem);
  padding-right: clamp(0.75rem, 3vw, 1.5rem);
}

.nif-video-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  line-height: 0;
}

.nif-video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #000;
}

.video-wrapper {
  position: relative;
  width: min(100%, 1000px);
  max-width: 100%;
  margin: 0 auto;
  border-radius: clamp(8px, 1.5vw, 12px);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  height: auto;
  background: #000;
}

.video-thumbnail {
  position: absolute;
  inset: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(52px, 10vw, 80px);
  height: clamp(52px, 10vw, 80px);
  background: rgba(255, 0, 0, 0.9);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(22px, 4.5vw, 35px);
  padding-left: 4px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
  pointer-events: none;
  padding-top:12px;
}

.video-thumbnail:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

.youtube-player,
.nif-video.youtube-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  display: none;
}

.youtube-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1099.98px) {
  .video-wrapper {
    width: min(92%, 860px);
  }
}

/* 1100px – 1366px */
@media (min-width: 1100px) and (max-width: 1366px) {
  .video-wrapper {
    width: min(90%, 920px);
  }

  .nif-video-stage {
    padding-left: clamp(1rem, 2vw, 1.5rem);
    padding-right: clamp(1rem, 2vw, 1.5rem);
  }
}

/* Large desktop */
@media (min-width: 1367px) {
  .video-wrapper {
    width: min(100%, 1000px);
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .nif-video-stage {
    padding-top: clamp(1.25rem, 5vw, 2rem);
    padding-bottom: clamp(1.25rem, 5vw, 2rem);
    padding-left: 12px;
    padding-right: 12px;
  }

  .video-wrapper {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
  }

  .play-btn {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}
/* ---------- IG Shorts section ---------- */
.ig-shorts-section {
  position: relative;
  overflow: hidden;
  width: 100%;
      background: url(../image/red-bg1920x1200.png);
  background-size: cover;
  background-position: left center;
  color: #fff;
}

.ig-shorts-stage {
  position: relative;
  z-index: 2;
  padding-top: clamp(2rem, 5vw, 5.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.ig-shorts-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3;
  margin: 0 0 clamp(1.75rem, 4vw, 3rem);
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.ig-shorts-title a {
  color: #fff;
  text-decoration: none;
}

.ig-shorts-title a:hover {
  text-decoration: underline;
}

.ig-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 auto;
}

.ig-carousel__btn span {
  margin-top: 10px;
}

.ig-carousel__viewport {
  flex: 1;
  overflow: hidden;
  width: 100%;
}

.ig-carousel__track {
  display: flex;
  width: 100%;
  transition: transform 0.45s cubic-bezier(0.4, 0.05, 0.2, 1);
  will-change: transform;
}

.ig-carousel__slide {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0.5rem 0.75rem;
  box-sizing: border-box;
}

.ig-carousel__btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #b71c1c;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  z-index: 3;
}

.ig-carousel__btn:hover {
  transform: scale(1.06);
  background: #fff;
}

.ig-carousel__btn:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.ig-phone {
  position: relative;
  display: block;
  width: 280px;
  max-width: 100%;
  margin: 0 auto;
  line-height: 0;
  overflow: hidden;
  background: transparent;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.ig-phone-screen {
  position: absolute;
  top: 1.2%;
  right: 4%;
  bottom: 1.2%;
  left: 3.4%;
  border-radius: 12% / 5.8%;
  background: #000;
  overflow: hidden;
  z-index: 1;
}

.ig-phone-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  border: 0;
  background: #000;
  pointer-events: none;
}

.ig-phone-frame {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.35));
}

/* Tablet+: show up to 3 phones */
@media (min-width: 768px) {
  .ig-carousel__slide {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }

  .ig-carousel__btn {
    width: 50px;
    height: 50px;
  }

  .ig-phone {
    width: min(26vw, 260px);
    max-width: 260px;
  }
}

/* Large desktop */
@media (min-width: 1367px) {
  .ig-phone {
    width: 300px;
    max-width: 300px;
  }
}

/* 1100px – 1366px */
@media (min-width: 1100px) and (max-width: 1366px) {
  .ig-shorts-stage {
    padding-top: 1.5rem;
    padding-bottom: 1.75rem;
  }

  .ig-shorts-title {
    font-size: 32px;
    margin-bottom: 1rem;
  }

  .ig-phone {
    width: 190px;
    max-width: 190px;
  }

  .ig-phone-screen {
    top: 1.55%;
    right: 3.5%;
    bottom: 1.55%;
    left: 3.5%;
  }

  .ig-carousel__slide {
    padding: 0.25rem 0.35rem;
  }
}

@media (max-width: 767.98px) {
  .ig-carousel {
    gap: 0.25rem;
    padding: 0;
    justify-content: center;
  }

  .ig-carousel__viewport {
    overflow: hidden;
    min-width: 0;
    flex: 1 1 auto;
  }

  .ig-carousel__btn {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    flex-shrink: 0;
  }
  
  .ig-shorts-section {
    background: url(../image/mobile-red-bgl-right-inta.png);
      background-position: calc(100% + 5px) center;
        background-size: cover;
        background-repeat: no-repeat;
}

  .ig-carousel__slide {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0.25rem 0.2rem;
    overflow: hidden;
  }

  .ig-phone {
    width: 210px;
    max-width: 100%;
  }

  .ig-phone-screen {
    top: 1.55%;
    right: 3.5%;
    bottom: 1.55%;
    left: 3.5%;
  }

  .ig-phone-video {
    object-fit: cover;
    object-position: center center;
  }
}

/* iPhone / 375px width */
@media (max-width: 400px) {
  .ig-carousel {
    gap: 0.15rem;
  }

  .ig-carousel__btn {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }

  .ig-phone {
    width: 200px;
    max-width: calc(100vw - 100px);
  }

  .ig-phone-screen {
    top: 1.55%;
    right: 3.5%;
    bottom: 1.55%;
    left: 3.5%;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--space-1);
  color: #fff;
  padding: clamp(3rem, 8vw, 5rem) 0 2.5rem;
}

.footer-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  margin: 0 0 0.75rem;
}

.footer-handle {
  display: inline-block;
  font-size: 1.15rem;
  color: #ffd166;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.footer-handle:hover {
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ---------- Play Quiz page ---------- */


.quiz-page {
  background: url(../image/red-bg1920x1200-left.png);
  background-size: cover;
  background-position: right center;
  color: #fff;
 border-bottom: 3px solid #fff;
}


.quiz-stage {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-top: 1.25rem;
}

.quiz-center {
  margin-bottom: 1.25rem;
  margin-top: 5%;
  position: relative;
  left: -20%;
}

.quiz-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 2.25rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin: 0 0 0.85rem;
  color: #fff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.32);
  margin-bottom:60px;
}

.quiz-sub {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.3vw, 1.75rem);
  font-weight: 400;
  line-height: 1.35;
  margin: 60px 0px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
  text-align: center;
      margin-top: 20px;
}

.quiz-cta-wrap {
  position: relative;
  display: inline-block;
}

.quiz-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 480px);
  background: linear-gradient(180deg, #ef5350 0%, #d32f2f 45%, #b71c1c 100%);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 1.35rem 3.6rem;
  border: none;
  border-radius: 999px;
  box-shadow:
    0 4px 0 #8b1518,
    0 14px 0 #6d1013,
    0 22px 36px rgba(0, 0, 0, 0.35);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quiz-cta:hover {
  color: #fff;
  transform: translateY(4px);
  box-shadow:
    0 2px 0 #8b1518,
    0 8px 0 #6d1013,
    0 14px 28px rgba(0, 0, 0, 0.32);
}

.quiz-thumb {
  position: absolute;
  right: -26px;
  bottom: 50px;
  width: 78px;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
  animation: quiz-thumb-tap 1.4s ease-in-out infinite;
  z-index: 2;
  
}

.quiz-left {
  display: block;
  width: 90%;
  height: auto;
  object-fit: contain;
  object-position: bottom left;
  mix-blend-mode: screen;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.3));
  position:relative;
  left:45%;
}

.quiz-right-wrap {
  margin-top: 1rem;
  padding-right: 18%;
  position: relative;
    top: -146px;
}

.quiz-right {
  display: inline-block;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.3));
  margin-top: -9%;
}

.reveal-quiz {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-quiz.is-visible {
  opacity: 1;
  transform: translateY(0);

}

@keyframes quiz-thumb-tap {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-6px, -8px);
  }
}

@media (max-width: 767.98px) {
  body:has(.quiz-page) {
    overflow: auto;
    height: auto;
  }
  p.piya-copy.cust-top-amzing {
    position: relative;
    top: 35px;
    min-width:100%;
    max-width:100%;
    right:0px;
}

.intro-visual {
    left: -32px;
}


  .quiz-page {
    height: auto;
    max-height: none;
    min-height: 100vh;
  }

  .quiz-stage {
    height: auto;
    padding-bottom: 1.5rem;
  }

  .quiz-title {
    font-size: 25px;
  }

  .quiz-sub {
    font-size: 1.15rem;
    margin-bottom: 1.4rem;
  }

  .quiz-left {
    max-height: none;
    margin-inline: auto;
  }

  .quiz-right-wrap {
    text-align: center !important;
    padding-right: 0%;
    padding-top:20px;
    top:0px;
  }

  .quiz-right {
    max-width: 200px;
    max-height: none;
    margin-top: 10px;
  }

  .quiz-cta {
    min-width: min(100%, 360px);
    font-size: clamp(1.55rem, 7vw, 2.1rem);
    padding: 1.15rem 2.6rem;
  }

  .quiz-thumb {
    width: 60px;
    right: -14px;
    bottom: 60px;
  }
  
  .participate-cust {
    font-size: 24px;
}
p.participate-cust1 {
    font-size: 24px;
    margin-top: 28px;
    line-height: 27px;
    text-align: center;
}

  .ig-shorts-title {
    font-size: 24px;
  }

  .gaadhe-shop {
    margin-bottom: 35px;
  }

  .superpower-copy {
    padding-right: 0px !important;
  }

  .superpower-section {
    padding: 30px 0px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .quiz-thumb {
    animation: none;
  }

  .reveal-quiz {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Quiz Answer page ---------- */
.quiz-ans-body {
  background: #b02a2b;
  overflow-x: hidden;
}

.quiz-ans-page {
  position: relative;
  min-height: calc(100vh - 72px);
  padding: 2rem 0 3rem;
  color: #2a1a1a;
}

.quiz-ans-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../image/milk-background.png") center / cover no-repeat;
  transform: scaleX(-1);
  z-index: 0;
  pointer-events: none;
}

.quiz-ans-mascot {
  position: absolute;
  z-index: 1;
  width: clamp(110px, 16vw, 190px);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.28));
  will-change: transform;
}

.quiz-ans-mascot--top {
  top: 4.8rem;
  right: clamp(0.5rem, 4vw, 3rem);
  animation: quiz-ans-bob 3.2s ease-in-out infinite;
  z-index: 9999;
}

.quiz-ans-mascot--bottom {
  bottom: 1.25rem;
  left: clamp(0.5rem, 4vw, 3rem);
  transform: scaleX(-1);
  animation: quiz-ans-bob-flip 3.6s ease-in-out 0.4s infinite;
  z-index: 9999;
}

@keyframes quiz-ans-bob {

  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }

  50% {
    transform: translateY(-14px) rotate(3deg);
  }
}

@keyframes quiz-ans-bob-flip {

  0%,
  100% {
    transform: scaleX(-1) translateY(0) rotate(4deg);
  }

  50% {
    transform: scaleX(-1) translateY(-14px) rotate(-3deg);
  }
}

.quiz-ans-page>.container {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.quiz-ans-page .header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.quiz-ans-page .header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  color: #b02a2b;
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

.quiz-ans-page .header p {
  margin: 0;
  font-size: 1.05rem;
  color: #555;
  text-align: center;
}

.quiz-ans-page .section-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  color: #b02a2b;
  margin: 1.5rem 0 1rem;
}

.quiz-ans-page .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1rem;
}

.quiz-ans-page .mobile-field__error {
  color: #d32f2f;
  font-size: 0.85rem;
  margin: 0.35rem 0 0;
  font-family: "Lato", sans-serif;
}

.quiz-ans-page input.is-duplicate {
  border-color: #d32f2f;
}

.quiz-ans-page input[type="text"],
.quiz-ans-page input[type="number"],
.quiz-ans-page input[type="email"],
.quiz-ans-page .school-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid #e0cfcf;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: "Lato", sans-serif;
  height:52px;
}

div:where(.swal2-container) h2:where(.swal2-title) {
  font-family: "Lato", sans-serif !important;
}

.swal2-html-container {
  font-family: "Lato", sans-serif !important;
}

/* Quiz congratulations celebration popup */
.quiz-congrats-popup {
  border-radius: 20px !important;
  padding: 1.5rem 1.25rem 1.25rem !important;
  overflow: hidden;
  background:
    radial-gradient(circle at top, #fff8e7 0%, #fff 45%, #fff5f5 100%) !important;
  box-shadow: 0 20px 50px rgba(179, 32, 34, 0.28) !important;
}

.quiz-congrats-pop {
  animation: quiz-congrats-bounce 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) both !important;
}

@keyframes quiz-congrats-bounce {
  0% {
    opacity: 0;
    transform: scale(0.4) translateY(40px);
  }

  60% {
    opacity: 1;
    transform: scale(1.06) translateY(-6px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.quiz-congrats-title {
  font-family: var(--font-display), "Lato", sans-serif !important;
  color: #b71c1c !important;
  font-size: clamp(1.6rem, 4vw, 2.1rem) !important;
  margin-bottom: 0.35rem !important;
}

.quiz-congrats__trophy {
  font-size: 3.2rem;
  line-height: 1;
  margin: 0.15rem auto 0.5rem;
  width: fit-content;
  animation: quiz-trophy-wiggle 1.1s ease-in-out 0.2s infinite;
  filter: drop-shadow(0 6px 10px rgba(211, 47, 47, 0.25));
}

@keyframes quiz-trophy-wiggle {

  0%,
  100% {
    transform: rotate(-8deg) scale(1);
  }

  50% {
    transform: rotate(8deg) scale(1.08);
  }
}

.quiz-congrats__subtitle {
  margin: 0 0 1rem;
  color: #444;
  font-size: 1.05rem;
}

.quiz-congrats__scores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.quiz-congrats__score {
  background: #fff;
  border: 1px solid #f0dede;
  border-radius: 12px;
  padding: 0.65rem 0.35rem;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.04);
  animation: quiz-score-in 0.45s ease both;
}

.quiz-congrats__score:nth-child(1) {
  animation-delay: 0.15s;
}

.quiz-congrats__score:nth-child(2) {
  animation-delay: 0.28s;
}

.quiz-congrats__score:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes quiz-score-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.quiz-congrats__score span {
  display: block;
  font-size: 0.78rem;
  color: #777;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.quiz-congrats__score strong {
  display: block;
  font-size: 1.45rem;
  color: #333;
  font-family: "Lato", sans-serif;
}

.quiz-congrats__score--ok strong {
  color: #2e7d32;
}

.quiz-congrats__score--bad strong {
  color: #c62828;
}

.quiz-congrats__note {
  margin: 0;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.45;
}

.quiz-congrats-btn {
  border-radius: 999px !important;
  padding: 0.65rem 1.8rem !important;
  font-family: var(--font-display), "Lato", sans-serif !important;
  font-size: 1.15rem !important;
  box-shadow: 0 5px 0 #8b1518 !important;
}

.quiz-ans-page input:focus {
  border-color: #d32f2f;
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.15);
}

.quiz-ans-page .school-input {
  margin-bottom: 0.5rem;
}

.quiz-ans-page .question {
  background: #fff8f6;
  border: 1px solid #f0dede;
  border-radius: 14px;
  padding: 1.1rem 1.15rem;
  margin-bottom: 1rem;
}

.quiz-ans-page .question h4 {
  margin: 0 0 0.4rem;
  color: #b02a2b;
  font-size: 1.1rem;
  font-family: "Lato", sans-serif;
}

.quiz-ans-page .question p {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  line-height: 1.45;
  color: #333;
  font-family: "Lato", sans-serif;
}

.quiz-ans-page .option {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.45rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #eee;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  font-family: "Lato", sans-serif;
}

.quiz-ans-page .option:hover {
  background: #ffeaea;
  border-color: #f5c2c2;
}

.quiz-ans-page .option input {
  margin-top: 0.2rem;
  accent-color: #d32f2f;
  font-family: "Lato", sans-serif;
}

.quiz-ans-page .submit-btn {
  display: block;
  width: 100%;
  margin-top: 1.25rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(180deg, #ef5350 0%, #d32f2f 45%, #b71c1c 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  cursor: pointer;
  box-shadow: 0 8px 0 #8b1518, 0 16px 28px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quiz-ans-page .submit-btn:hover {
  transform: translateY(2px);
  box-shadow: 0 5px 0 #8b1518, 0 10px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 767.98px) {
  .quiz-ans-page {
    padding: 4.5rem 0 2rem;
  }
  h3.piya-copy.cust-top-amzing {
            max-width: 100%;
        min-width: 100%;
        right: 0px;
        font-size: 20px;
        line-height: 23px;
        top: 60px;
}

  .quiz-ans-page>.container {
    border-radius: 12px;
    padding: 1.15rem;
  }

  .quiz-ans-page .form-grid {
    grid-template-columns: 1fr;
  }

  .quiz-ans-mascot {
    width: clamp(72px, 22vw, 110px);
    opacity: 0.92;
  }

  .quiz-ans-mascot--top {
    top:1.2rem;
    right: 0.25rem;
  }

  .quiz-ans-mascot--bottom {
    bottom: 0.5rem;
    left: 0.25rem;
    z-index: 9999;
  }
}

@media (prefers-reduced-motion: reduce) {

  .quiz-ans-mascot--top,
  .quiz-ans-mascot--bottom {
    animation: none;
  }
}

/* Only applies between 1100px and 1366px */
@media (min-width: 1100px) and (max-width: 1366px) {
  .hero-title {
    font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  }
  
  .quiz-left {
    left: 16%;
}

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1150px;
  }

  .jump-rocket {
    width: 90px;
    left: 7%;
    top: 50%;
    transform: rotate(0deg);
  }
  .piya-copy {
    max-width: 660px;
    min-width: 660px;
  }
  .jump-section {
    min-height: 85vh;
    background: url(../image/yellow-bg.png) right center / cover no-repeat;
  }

  .jump-arc-text {
    font-size: 40px;
  }

  .quiz-right-wrap {
    padding-right: 7%;
  }
  
  .quiz-right-wrap img {
    width: 30%;
  }

  .milaxy-stage {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .superpower-arc {
    margin-bottom: -41%;
  }
.jump-arc {
  margin-top: -34px;
}
  .ig-phone {
    width: 190px;
    max-width: 190px;
  }

  .ig-phone-screen {
    top: 1.55%;
    right: 3.5%;
    bottom: 1.55%;
    left: 3.5%;
  }

  .ig-shorts-stage {
    padding-top: 2.5rem;
    padding-bottom: 1.75rem;
  }

  .ig-shorts-title {
    font-size: 32px;
    margin-bottom: 1rem;
  }

  @keyframes jump-rocket-fly {
    0% {
      left: 7%;
      top: 50%;
      opacity: 1;
      transform: rotate(0deg) scale(1);
    }

    30% {
      left: 30%;
      top: 30%;
      opacity: 1;
      transform: rotate(28deg) scale(1.05);
    }

    60% {
      left: 56%;
      top: 8%;
      opacity: 1;
      transform: rotate(42deg) scale(1.08);
    }

    85% {
      left: 78%;
      top: -8%;
      opacity: 0.75;
      transform: rotate(52deg) scale(1.05);
    }

    100% {
      left: 96%;
      top: -28%;
      opacity: 0;
      visibility: hidden;
      transform: rotate(58deg) scale(1);
    }
  }
}

/* Only applies between 768px and 1024px (tablet) */
@media (min-width: 768px) and (max-width: 1024px) {
  .top-nav__logo {
    height: 64px;
  }
  
  

  .top-nav__links a {
    font-size: 16px;
  }

  .top-nav {
    padding: 5px 14px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 6vw, 3.75rem);
  }

  .hero-copy {
    max-width: 60%;
    padding-left: clamp(1.25rem, 4vw, 2.5rem);
  }

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 960px;
  }

  /* Intro section — tablet portrait/landscape fix */
  .intro-section {
    overflow: hidden;
    background-size: cover;
    background-position: bottom center;
  }

  .intro-stage {
    text-align: left;
    padding-top: 2.75rem;
    padding-bottom: 3.25rem;
  }

  .intro-section .row {
    align-items: center;
    flex-wrap: nowrap;
  }

  .intro-section .intro-visual.col-12 {
    flex: 0 0 40%;
    width: 40%;
    max-width: 40%;
    margin-bottom: 0;
    padding-right: 0.35rem;
    overflow: visible;
  }

  .intro-section .intro-copy.col-12 {
    flex: 0 0 60%;
    width: 60%;
    max-width: 60%;
    padding-left: 0.85rem;
    padding-top: 0.5rem;
    text-align: left;
  }

  .intro-arc {
    width: min(108%, 460px);
    margin-left: -4%;
    margin-bottom: -27%;
    overflow: visible;
  }

  .intro-arc-text {
    font-size: 60px;
  }

  .intro-mascot {
    max-width: 92%;
    margin-inline: auto;
    transform: none;
  }

  .intro-heading {
    font-size: 24px;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 0.75rem;
  }

  .intro-text {
    max-width: none;
    margin-inline: 0;
    text-align: left;
  }

  .intro-text p {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 8px;
  }

  .milaxy-stage {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .milaxy-card p {
    font-size: 18px;
    line-height: 1.55;
  }

  .milaxy-light {
    width: min(50%, 520px);
  }

  .jump-section {
    min-height: 72vh;
    background: url(../image/yellow-bg.png) right center / cover no-repeat;
  }

  .jump-arc {
    margin-top: -20px;
  }

  .jump-arc-text {
    font-size: 32px;
  }

  .jump-rocket {
    width: 78px;
    left: 6%;
    top: 52%;
    transform: rotate(0deg);
  }

  .dhokha-section {
    padding-top: 40px;
  }

  .dhokha-copy {
    font-size: 18px;
    margin-top: 24px;
  }

  .dhokha-arc-text {
    font-size: 32px;
  }

  .gaadhe-arc-text {
    font-size: 32px;
  }

  .gaadhe-line {
    font-size: 18px;
  }

  .gaadhe-waves {
    top: 60px;
  }

  .superpower-arc {
    margin-bottom: -36%;
  }

  .superpower-arc-text {
    font-size: 36px;
  }

  .superpower-line {
    font-size: 18px;
  }

  .superpower-copy {
    margin-top: 20px;
  }

  .piya-stage {
    padding: 40px 0;
  }

  .piya-copy {
    max-width: 560px;
    min-width: 0;
    width: 100%;
    font-size: 1.15rem;
  }

  .nif-video-stage {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .video-wrapper {
    width: min(94%, 780px);
  }

  .quiz-center {
    left: -8%;
    margin-top: 10%;
  }

  .quiz-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
  }

  .quiz-sub {
    margin: 36px 0;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
  }

  .quiz-cta {
    min-width: min(100%, 360px);
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    padding: 1.1rem 2.4rem;
  }

  .quiz-thumb {
    width: 60px;
    right: -18px;
    bottom: -28px;
  }

  .quiz-right-wrap {
    padding-right: 6%;
  }

  .quiz-right-wrap img {
    width: 48%;
  }

  .ig-shorts-stage {
    padding-top: 1.35rem;
    padding-bottom: 1.5rem;
  }

  .ig-shorts-title {
    font-size: 26px;
    margin-bottom: 0.9rem;
  }

  .ig-phone {
    width: 170px;
    max-width: 170px;
  }

  .ig-phone-screen {
    top: 1.55%;
    right: 3.5%;
    bottom: 1.55%;
    left: 3.5%;
  }

  .ig-carousel__slide {
    padding: 0.25rem 0.3rem;
  }

  .quiz-ans-page > .container {
    max-width: 720px;
  }

  .quiz-ans-page .header h1 {
    font-size: 28px;
  }

  html {
    scroll-padding-top: 80px;
  }

  #quiz-page-play,
  #watchvideo-online,
  #gatku-online {
    scroll-margin-top: 80px;
  }

  @keyframes jump-rocket-fly {
    0% {
      left: 6%;
      top: 52%;
      opacity: 1;
      transform: rotate(0deg) scale(1);
    }

    30% {
      left: 28%;
      top: 32%;
      opacity: 1;
      transform: rotate(28deg) scale(1.05);
    }

    60% {
      left: 54%;
      top: 10%;
      opacity: 1;
      transform: rotate(42deg) scale(1.08);
    }

    85% {
      left: 76%;
      top: -6%;
      opacity: 0.75;
      transform: rotate(52deg) scale(1.05);
    }

    100% {
      left: 94%;
      top: -26%;
      opacity: 0;
      visibility: hidden;
      transform: rotate(58deg) scale(1);
    }
  }
}





@media only screen and (max-width: 767px) {

  .gap-4 {
    gap: 10px !important;
  }
  
  .quiz-left {
    left: 4%;
}


.quiz-right {
     max-width: 230px;
    position:relative;
        left: 6%;
    }

  .hero-copy {
    top: -249px;
  }

  .hero-title {
    font-size: 40px;
  }
  .top-nav__logo {
    height: 55px;
}
.top-nav {
  padding: 5px 10px;
}

.dhokha-frame {
    margin-bottom: 0px !important;
    margin-top: 30px;
}

.intro-arc{
    position:relative;
    top:40px;
}
.intro-visual {
  top: -30px;
}
.intro-text {
   top: -20px;
   position: relative;
}

html {
  scroll-padding-top: 70px;
}

#quiz-page-play,
#watchvideo-online,
#gatku-online {
  scroll-margin-top: 70px;
}
  .container,
  .container-fluid,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    padding-left: 20px;
    padding-right: 50px;
  }

  .intro-section {
            background: url(../image/milk-right-strp-work.jpg);
   background-repeat: no-repeat;
        background-position: calc(100% + 15px) center;
        background-size: cover;
  }

  .milaxy-stage {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-right: 20px;
  }

  .dhokha-section {
    background: url(../image/mobile-red-bgleft.png);
    background-position: calc(100% + 23px) center;
        background-repeat: no-repeat;
        background-size: cover;
        padding-top: 20px;
  }
  .container.intro-stage{
   padding-right: 40px !important;
        padding-left: 20px;
  }
  .dhokha-stage {
    padding-right: 20px;
    padding-left: 50px;
  }

  .gaadhe-section {
    background: url(../image/mobile-red-bg.png);
          background-position: calc(100% + 0px) center;
        background-size: cover;
        background-repeat: no-repeat;
  }

  .superpower-section {
    background: url(../image/mobile-bottom-milk-left.png);
           background-position: calc(100% + 23px) center;
        background-size: cover;
        background-repeat: no-repeat;
  }

  .superpower-section .container {
    padding-right: 20px;
    padding-left: 50px;
  }

  .superpower-arc {
    margin-bottom: -40%;
  }

  .superpower-copy {
    padding-right: 0px !important;
    margin-top: 50px;
  }

  .piya-stage {
    padding-left: 20px;
    padding-right: 50px;
    padding-bottom: 0px;
  }
  .piya-copy {
    max-width: 100%;
    min-width: 100%;
    margin-bottom:15px;
  }
  .piya-section {
    background: url(../image/mobile-bottom-milk-right-small.png);
  background-repeat: no-repeat;
        padding-bottom: 35px;
        background-position: calc(100% + 10px) center;
        background-size: cover;
  }

  .nif-video-stage {
    padding-left: 12px;
    padding-right: 12px;
  }

  .nif-video-section {
    background: url(../image/mobile-red-bgleft-video.png);
           background-position: calc(100% + 0px) center;
        background-size: cover;
        background-repeat: no-repeat;
  }

  .nif-video-section .container {
    padding-left: 50px !important;
    padding-right: 20px !important;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .quiz-page {
    background: url(../image/mobile-red-bg-first-left.png);
    background-position: calc(100% + 43px) center;
    background-size: cover;
  }

  .quiz-stage {
    height: auto;
    padding-bottom: 1.5rem;
    padding-right: 30px;
    padding-left: 20px;
  }

  .quiz-center {
    left: 0%;
    padding-left: 19px;
        padding-right: 10px;
  }

  .quiz-sub {
    margin-top: 20px;
  }

  .ig-shorts-stage {
    padding-right: 12px;
    padding-left: 12px;
  }

  .ig-shorts-section .container {
    padding-left: 20px !important;
        padding-right: 50px !important;
  }
  .quiz-ans-page>.container {
    max-width: 345px;
}
.quiz-ans-page .header h1 {
    font-size: 20px;
}
.container.jump-stage {
  padding-right: 30px;
}
.jump-arc {
    top: 25px;
    position: relative;
}



.jump-section {
  min-height: 65vh;
        background: url(../image/yellow-bg-mobile.png);
        background-position: calc(100% + 0px) center;
        background-size: cover;
        background-repeat: no-repeat;
}
.milaxy-bg.decktop {
  display: none;
}

.milaxy-bg.mobile {
  display: block;
    filter: blur(2px);
    object-position: center left;
}
.gaadhe-waves {
  top: 104px;
}
.dhokha-frame.mt-5{
    margin-top:0px !important;
}

.dhokha-frame.mt-5 {;
  position: relative;
  top: 25px;
}
    .dhokha-copy {
        position: relative;
        top: 30px;
    }

.dhokha-frame {
        position: relative;
        top: 20px;
    }
    
        .gaadhe-shop {
        position: relative;
        top: 25px;
    }
    .gaadhe-line:nth-child(1) {
    padding-top: 20px;
}

.superpower-visual {
    top: 70px;
}

.gaadhe-section .container.gaadhe-stage {
    padding-right: 35px;
}

}



@media only screen and (min-width: 320px) and (max-width: 360px) {
    .quiz-page {
        background-position: calc(100% + 51px) center;
    }
    
   .intro-section {
   background-position: calc(100% + 7px) center;
}
.dhokha-section {
        background-position: calc(100% + 46px) center;
    }
        .superpower-section {
        background-position: calc(100% + 69px) center;
    }
    .nif-video-section {
        background-position: calc(100% + 11px) center;
    }  
        .piya-section {
        background-position: calc(100% + 5px) center;
    }
}

@media only screen and (min-width: 361px) and (max-width: 369px) {
   .intro-section {
   background-position: calc(100% + 65px) center;
}
.dhokha-section {
        background-position: calc(100% + 46px) center;
    }
        .superpower-section {
        background-position: calc(100% + 69px) center;
    }
    .nif-video-section {
        background-position: calc(100% + 11px) center;
    }  
        .piya-section {
        background-position: calc(100% + 5px) center;
    }
}

@media only screen and (min-width: 370px) and (max-width: 380px) {
.intro-section {
   background-position: calc(100% + 7px) center;
}
.dhokha-section {
        background-position: calc(100% + 46px) center;
    }
        .superpower-section {
        background-position: calc(100% + 52px) center;
    }
    .nif-video-section {
        background-position: calc(100% + 10px) center;
    }    
    
}

@media only screen and (min-width: 380.98px) and (max-width: 410px) {
        .quiz-page {
        background-position: calc(100% + 35px) center;
    }
       .intro-section {
        background-position: calc(100% + 7px) center;
    } 
    
    .jump-section {
        background-position: calc(100% + 8px) center;
    }
    
    .dhokha-section {
        background-position: calc(100% + 28px) center;
    }
    
        .superpower-section {
        background-position: calc(100% + 32px) center;
    }
    
        .nif-video-section {
        background-position: calc(100% + 5px) center;
    }
    
}


@media only screen and (min-width: 410.98px) and (max-width: 420px) {
        .quiz-page {
        background-position: calc(100% + 21px) center;
    }
       .intro-section {
        background-position: calc(100% + 6px) center;
    } 
    
    .jump-section {
        background-position: calc(100% + 10px) center;
    }
    
    .dhokha-section {
        background-position: calc(100% + 24px) center;
    }
    
        .superpower-section {
        background-position:calc(100% + 21px) center;
    }
    
        .nif-video-section {
        background-position: calc(100% + 0px) center;
    }
    
}


@media only screen and (min-width: 420.98px) and (max-width: 430px) {
        .quiz-page {
        background-position: calc(100% + 13px) center;
    }
       .intro-section {
        background-position: calc(100% + 7px) center;
    } 
    
    .jump-section {
        background-position: calc(100% + 10px) center;
    }
    
    .dhokha-section {
        background-position: calc(100% + 9px) center;
    }
    
        .superpower-section {
        background-position:calc(100% + 12px) center;
    }
    
        .nif-video-section {
        background-position: calc(100% + 0px) center;
    }
    
}


@media only screen and (min-width: 430.98px) and (max-width: 440px) {
    
        .quiz-page {
        background-position: calc(100% + 8px) center;
    }
       .intro-section {
        background-position: calc(100% + 7px) center;
    } 
    
    .jump-section {
        background-position: calc(100% + 10px) center;
    }
    
    .dhokha-section {
        background-position: calc(100% + 8px) center;
    }
    
        .superpower-section {
        background-position:calc(100% + 13px) center;
    }
    
        .nif-video-section {
        background-position: calc(100% + 0px) center;
    }
    
}



