/* =========================================================
   Panado Pocket Power Go Landing — Scoped Styles
   Every selector starts with .panado-root
   ========================================================= */

/* ----- Gotham font faces ----- */
@font-face {
  font-family: "Gotham";
  font-weight: 300;
  font-style: normal;
  src: url("../fonts/Gotham-Light.woff2") format("woff2"),
       url("../fonts/Gotham-Light.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Gotham-Book.woff2") format("woff2"),
       url("../fonts/Gotham-Book.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/Gotham-Medium.woff2") format("woff2"),
       url("../fonts/Gotham-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Gotham-Bold.woff2") format("woff2"),
       url("../fonts/Gotham-Bold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  font-weight: 900;
  font-style: normal;
  src: url("../fonts/Gotham-Black.woff2") format("woff2"),
       url("../fonts/Gotham-Black.woff") format("woff");
  font-display: swap;
}

/* ----- Reset inside wrapper only ----- */
.panado-root,
.panado-root *,
.panado-root *::before,
.panado-root *::after {
  box-sizing: border-box;
}

.panado-root {
  all: revert;
  font-family: var(--panado-font-main, inherit);
  color: var(--pp-dark);
  line-height: 1.5;
}

.panado-root p,
.panado-root h1,
.panado-root h2,
.panado-root h3,
.panado-root ul,
.panado-root ol,
.panado-root li,
.panado-root a,
.panado-root button {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-family: inherit;
  text-decoration: none;
  list-style: none;
}

/* ----- CSS Custom Properties ----- */
.panado-root {
  --pp-pink: #F7237B;
  --pp-blue: #00AEDB;
  --pp-red: #EE3124;
  --pp-dark: #434242;
  --pp-white: #ffffff;
  --pp-max: 1350px;
  --panado-font-main: "Gotham", sans-serif;
}

/* ----- Theme container override ----- */
.container > .panado-root,
.container .panado-root {
  margin-left: -20px;
  margin-right: -20px;
  width: calc(100% + 40px);
  max-width: none;
}

/* ----- Layout scaffolding ----- */
.panado-section {
  width: 100%;
}

.panado-inner {
  max-width: var(--pp-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- Animations (gated by .panado-js) ----- */
html.panado-js .panado-root [data-panado-animate] {
  opacity: 0;
  transform: translateY(24px);
}

html.panado-js .panado-root.is-ready [data-panado-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

html.panado-js .panado-root.is-ready [data-panado-stagger] > [data-panado-animate].is-visible:nth-child(1) { transition-delay: 0ms; }
html.panado-js .panado-root.is-ready [data-panado-stagger] > [data-panado-animate].is-visible:nth-child(2) { transition-delay: 100ms; }
html.panado-js .panado-root.is-ready [data-panado-stagger] > [data-panado-animate].is-visible:nth-child(3) { transition-delay: 200ms; }
html.panado-js .panado-root.is-ready [data-panado-stagger] > [data-panado-animate].is-visible:nth-child(4) { transition-delay: 300ms; }
html.panado-js .panado-root.is-ready [data-panado-stagger] > [data-panado-animate].is-visible:nth-child(5) { transition-delay: 400ms; }
html.panado-js .panado-root.is-ready [data-panado-stagger] > [data-panado-animate].is-visible:nth-child(6) { transition-delay: 500ms; }
html.panado-js .panado-root.is-ready [data-panado-stagger] > [data-panado-animate].is-visible:nth-child(7) { transition-delay: 600ms; }
html.panado-js .panado-root.is-ready [data-panado-stagger] > [data-panado-animate].is-visible:nth-child(8) { transition-delay: 700ms; }

@media (prefers-reduced-motion: reduce) {
  html.panado-js .panado-root [data-panado-animate] {
    opacity: 1;
    transform: none;
    transition: none !important;
  }
}

/* Safety fallback: if JS fails, show content after 1s */
html.panado-js:not(.panado-ready-fired) .panado-root:not(.is-ready) [data-panado-animate] {
  animation: panado-fallback-show 0s 1s forwards;
}

@keyframes panado-fallback-show {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----- Buttons ----- */
.panado-root .panado-btn {
  display: inline-block;
  padding: 20px 60px;
  border-radius: 5px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  transition: background 250ms ease;
  text-transform: uppercase;
  font-size: 1.6rem;
}

.panado-root .panado-btn--red {
  background: var(--pp-red);
  color: var(--pp-white);
}

.panado-root .panado-btn--red:hover,
.panado-root .panado-btn--red:focus-visible {
  background: var(--pp-dark);
}

/* ----- Section 1 — Hero ----- */
.panado-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, #FBFBFB 41%, #e9e9e9 100%);
}

.panado-hero__bg {
  width: 100%;
  height: auto;
  display: block;
}

.panado-hero__bg--mobile {
  display: none;
}

.panado-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.panado-hero__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 4.5% 13% 0;
  z-index: 0;
}

.panado-hero__lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  width: 36%;
  max-width: 580px;
  min-width: 500px;
  width:100%;
}

.panado-hero__lockup > img {
  max-width: clamp(320px, 29vw, 460px);
  width: 100%;
  height: auto;
}

.panado-hero__btn {
  position: relative;
  display: block;
  width: clamp(320px, 28vw, 400px);
  max-width: 100%;
}

.panado-hero__btn img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 250ms ease;
}

.panado-hero__btn-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.panado-hero__btn:hover .panado-hero__btn-default,
.panado-hero__btn:focus-visible .panado-hero__btn-default {
  opacity: 0;
}

.panado-hero__btn:hover .panado-hero__btn-hover,
.panado-hero__btn:focus-visible .panado-hero__btn-hover {
  opacity: 1;
}

.panado-hero__tagline-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}

.panado-root .panado-hero__tagline {
  color: var(--pp-blue);
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  text-transform: uppercase;
}

.panado-root .panado-hero__terms {
  color: var(--pp-blue);
  font-size: clamp(0.85rem, 1.1vw, 1.125rem);
  text-decoration: none;
  text-align: center;
  font-weight: 700;
}

/* ----- Section 2 — How to Play ----- */
.panado-howto {
  padding: 82px 0;
  background: var(--pp-white);
}

.panado-root .panado-howto__pink {
  color: var(--pp-pink);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 3rem);
  text-align: center;
  text-transform: uppercase;
  max-width: 26ch;
  margin: 0 auto 3rem;
  line-height: 1.2;
}

.panado-root .panado-howto__blue {
  color: var(--pp-blue);
  text-transform: uppercase;
  text-align: center;
  font-size: clamp(1.25rem, 3vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.panado-root .panado-howto__intro {
  color: var(--pp-dark);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 1.125rem;
}

.panado-howto__steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  max-width: 1200px;
  margin: 0 auto 40px !important;
  padding: 0;
  justify-content: center;
}

.panado-howto__steps li {
  display: block;
}

.panado-howto__steps li:nth-child(1) { order: 1; left: .8rem !important;
  position: relative; }
.panado-howto__steps li:nth-child(2) { order: 3;     left: -.7rem !important;
  position: relative; }
.panado-howto__steps li:nth-child(3) { order: 2; }
.panado-howto__steps li:nth-child(4) { order: 4;     left: -1.6rem !important;
  position: relative; }

.panado-step-card {
  position: relative;
  display: block;
  width: 100%;
}

.panado-step-card__bg {
  width: 100%;
  height: auto;
  display: block;
}

.panado-step-card__bg--mobile {
  display: none;
}

.panado-step-card__text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  display: flex;
  align-items: center;
  padding-left: 34%;
  padding-right: 19%;
  color: var(--pp-white);
  font-size: clamp(0.75rem, 2vw, 1rem);
  font-weight: 500;
  line-height: 1.3;
  margin-top:0.5rem;
}

.panado-howto__steps li:nth-child(2) .panado-step-card__text {
  max-width: 50ch;
}
.panado-howto__steps li:nth-child(2) .panado-step-card__text, .panado-howto__steps li:nth-child(4) .panado-step-card__text  {
  padding-left: 38%;
  padding-right: 16%;
}

.panado-howto__cta-wrap {
  text-align: center;
}

/* ----- Section 3 — Prizes ----- */
.panado-prizes {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: radial-gradient(circle at center, #FBFBFB 41%, #e9e9e9 100%);
}

.panado-prizes__side {
  position: relative;
  width:100%;
  height: auto;
  pointer-events: none;
}

.panado-prizes__side--left {
  left: 0;
}

.panado-prizes__side--right {
  right: 0;
}

.panado-prizes__inner {
  text-align: center;
  max-width:50ch;
}

.panado-root .panado-prizes__heading {
  color: var(--pp-blue);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 4rem);
  margin-bottom:30px;
  text-transform: uppercase;
  line-height: 1;
}

.panado-root .panado-prizes__body {
  color: var(--pp-dark);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.panado-root .panado-prizes__body .panado-highlight-pink,
.panado-root .panado-prizes__body span[style*="#F7237B"],
.panado-root .panado-prizes__body span[style*="f7237b"] {
  color: var(--pp-pink);
}

.panado-root .panado-prizes__terms {
  color: var(--pp-dark);
  text-decoration: underline;
  font-weight: 600;
  font-size: 1.125rem;
}

/* ----- Section 4 — Info ----- */
.panado-info {
  background: var(--pp-white);
}

.panado-info__img {
  display: block;
  width: 100%;
  height: auto;
}

.panado-info__img--mobile {
  display: none;
}

/* ----- Terms Page ----- */
.panado-terms-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.panado-terms-body {
  padding: 48px 0 80px;
  background: var(--pp-white);
}

.panado-root .panado-terms-body h1 {
  color: var(--pp-blue);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 30px;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
}

.panado-root .panado-terms-list {
  list-style: decimal;
  padding-left: 1.5em;
}

.panado-root .panado-terms-list li {
  margin-bottom: 1em;
  color: var(--pp-dark);
  line-height: 1.6;
  font-size: 1rem;
  list-style: inherit;
}

.panado-root .panado-terms-empty {
  text-align: center;
  color: var(--pp-dark);
  font-size: 1.125rem;
  padding: 40px 0;
}

/* ----- Mobile breakpoint ----- */
@media (max-width: 900px) {
  .panado-hero {
    min-height: 55vh;
  }

  .panado-hero__bg {
    display: none;
  }

  .panado-hero__bg--mobile {
    display: block;
    height: 98vh;
    object-fit: cover;
    object-position: bottom;
  }

  .panado-hero__overlay {
    display: none;
  }

  .panado-hero__inner {
    padding: 14% 5% 8%;
    align-items: center;
    justify-content: flex-start;
  }

  .panado-hero__lockup {
    max-width: 100%;
    min-width: auto;
    width: 100%;
    gap: 18px;
  }

  .panado-hero__lockup > img {
    max-width: 100%;
  }

  .panado-hero__btn {
    width: 320px;
  }

  .panado-root .panado-hero__tagline {
    font-size: 1.35rem;
  }

  .panado-root .panado-hero__terms {
    font-size: 1.05rem;
  }

  .panado-howto__steps {
    grid-template-columns: 1fr;
  }

  .panado-howto__steps li:nth-child(1),
  .panado-howto__steps li:nth-child(2),
  .panado-howto__steps li:nth-child(3),
  .panado-howto__steps li:nth-child(4) {
    left: 0 !important;
    position: relative;
    order: initial;
  }

  .panado-step-card__bg {
    display: none;
  }

  .panado-step-card__bg--mobile {
    display: block;
  }

  .panado-step-card__text {
    padding-left: 34%;
    padding-right: 10%;
    font-size: 0.9rem;
    height: 100%;
    margin-top: 0;
  }

  .panado-howto__steps li:nth-child(2) .panado-step-card__text,
  .panado-howto__steps li:nth-child(4) .panado-step-card__text {
    padding-left: 34%;
    padding-right: 10%;
  }

  .panado-root .panado-howto__pink {
    font-size: clamp(2em, 6vw, 2.25rem);
  }

  .panado-root .panado-howto__blue {
    font-size: clamp(2em, 6vw, 2.25rem);
  }

  .panado-root .panado-prizes__heading {
    font-size: clamp(2em, 6vw, 2.25rem);
  }

  .panado-prizes__side {
    position: static;
    transform: none;
    display: block;
    margin: 0 auto 0px;
    max-width: 100%;
  }

  .panado-prizes__inner {
    padding: 0 24px;
  }

  .panado-prizes {
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, #E9E9E9 0%, #FBFBFB 50%, #E9E9E9 100%);
  }

  .panado-prizes__side--left {
    order: -1;
  }

  .panado-info__img {
    display: none;
  }

  .panado-info__img--mobile {
    display: block;
  }
}
