:root {
  --pp-orange: #ff5a00;
  --pp-orange-dark: #e94c00;
  --pp-orange-soft: #fff1e7;
  --pp-ink: #151515;
  --pp-text: #32343a;
  --pp-muted: #696f7c;
  --pp-line: #e6e6e9;
  --pp-bg: #f7f7f8;
  --pp-white: #ffffff;
  --pp-radius-lg: 22px;
  --pp-radius-md: 15px;
  --pp-shadow: 0 12px 34px rgba(20, 20, 20, .08);
  --pp-shadow-soft: 0 8px 22px rgba(20, 20, 20, .06);
  --pp-max: 1400px;
}

.pp-home-section * { box-sizing: border-box; }



.pp-home-section {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: var(--pp-text);
}

.pp-home-section button, .pp-home-section a {
  font: inherit;
}

.pp-home-section button {
  cursor: pointer;
}

.pp-home-section img {
  display: block;
  max-width: 100%;
  height: auto;
}

.pp-home-section .svg-sprite {
  position: absolute;
  inline-size: 0;
  block-size: 0;
  overflow: hidden;
}

.pp-home-section .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  width: min(100% - 32px, var(--pp-max));
  margin-inline: auto;
  padding: 0 0 24px;
}

.hero,
.game-selector,
.trust-strip,
.video-panel,
.orders-panel,
.testimonial-band,
.customer-gallery {
  border: 1px solid var(--pp-line);
  background: var(--pp-white);
  box-shadow: var(--pp-shadow-soft);
}

.hero {
  position: relative;
  min-height: 405px;
  overflow: hidden;
  border-radius: var(--pp-radius-lg);
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(430px, 540px) minmax(250px, 1fr);
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  padding: 30px clamp(22px, 3.4vw, 44px);
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero::before,
.hero::after {
  display: none;
}

.hero-art {
  position: relative;
  z-index: 1;
  min-height: 315px;
  width: 100%;
}

.hero-card {
  position: absolute;
  width: clamp(132px, 14.4vw, 205px);
  aspect-ratio: 360 / 500;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, .22);
  border: 3px solid #111;
  background: #ddd;
}

.hero-card--one {
  left: 6%;
  top: 46px;
  transform: rotate(-6deg);
}

.hero-card--two {
  left: 29%;
  top: 18px;
  z-index: 3;
  transform: rotate(1deg);
}

.hero-card--three {
  left: 52%;
  top: 50px;
  transform: rotate(7deg);
}

.hero-card--four {
  right: 50%;
  top: 58px;
  transform: rotate(-8deg);
}

.hero-card--five {
  right: 28%;
  top: 28px;
  z-index: 3;
  transform: rotate(2deg);
}

.hero-card--six {
  right: 5%;
  top: 60px;
  transform: rotate(8deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}

.rating-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  padding: 9px 14px;
  background: #fff6eb;
  border: 1px solid #ffd4a8;
  border-radius: 7px;
  color: #101827;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
  box-shadow: 0 3px 10px rgba(255,122,0,.08);
}

.hero h1 {
  margin: 0;
  color: var(--pp-ink);
  font-family: "Bebas Neue", "Arial Narrow", Impact, Haettenschweiler, "Franklin Gothic Heavy", sans-serif;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: .92;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.hero-demand {
  margin: 6px 0 10px;
  color: var(--pp-orange);
  font-family: "Bebas Neue", "Arial Narrow", Impact, Haettenschweiler, "Franklin Gothic Heavy", sans-serif;
  font-size: clamp(34px, 3.9vw, 58px);
  line-height: .95;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 510px;
  margin: 0 auto 16px;
  color: var(--pp-text);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.45;
}

.hero-lead strong,
.hero-points strong {
  color: var(--pp-orange);
  font-weight: 700;
}

.hero-points {
  width: min(100%, 510px);
  margin: 0 auto 20px;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
  text-align: left;
}

.hero-points li {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: start;
  gap: 10px;
  min-height: 30px;
  color: #25282d;
  font-size: 16px;
  line-height: 1.35;
}

.hero-points svg {
  width: 22px;
  height: 22px;
  fill: var(--pp-orange);
  background: var(--pp-orange-soft);
  border-radius: 50%;
  padding: 5px;
  margin-top: 1px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.btn {
  min-height: 48px;
  border-radius: 10px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  color: var(--pp-ink);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  color: #fff !important;
  background: linear-gradient(180deg, #e86e10, #d94e00);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  color: var(--pp-ink) !important;
  background: #f0f0f0;
  border-color: var(--pp-orange);
}

.btn:focus-visible,
.game-button:focus-visible,
.carousel-arrow:focus-visible,
.gallery-card:focus-visible,
.gallery-tile:focus-visible,
.lightbox-close:focus-visible,
.testimonial-controls button:focus-visible {
  outline: 3px solid rgba(255, 90, 0, .35);
  outline-offset: 3px;
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn--primary {
  min-width: 210px;
  background: linear-gradient(180deg, #ff7b18, var(--pp-orange));
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 90, 0, .25);
}

.btn--secondary {
  min-width: 210px;
  background: #fff;
  border-color: #cfd2d8;
  color: var(--pp-ink);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .05);
}

.game-selector {
  margin-top: 14px;
  border-radius: 16px;
  min-height: 72px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  overflow-x: auto;
  scrollbar-width: thin;
}

.game-button {
  min-width: 98px;
  appearance: none;
  border: 0;
  border-left: 1px solid var(--pp-line);
  background: transparent;
  color: #161616;
  padding: 10px 8px 9px;
  display: grid;
  place-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.1;
  position: relative;
}

.game-button:first-of-type {
  border-left: 0;
}

.game-button::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: transparent;
}

.game-button svg {
  width: 30px;
  height: 30px;
  fill: var(--pp-orange);
  transition: transform .2s ease;
}

.game-button:hover svg,
.game-button.is-active svg {
  transform: translateY(-2px);
}

.game-button.is-active::after {
  background: var(--pp-orange);
}

.trust-strip {
  margin-top: 14px;
  border-radius: 16px;
  min-height: 72px;
  display: block;
}

.trust-items-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.trust-item {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 14px clamp(8px, 1.5vw, 24px);
  border-left: 1px solid var(--pp-line);
}

.trust-item:first-of-type {
  border-left: 0;
}

.trust-item svg {
  width: 42px;
  height: 42px;
  fill: var(--pp-orange);
}

.trust-item strong {
  display: block;
  color: var(--pp-ink);
  font-size: clamp(16px, 1.7vw, 24px);
  line-height: 1;
  font-weight: 700;
}

.trust-item span {
  display: block;
  color: #516070;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 400;
  margin-top: 11px;
}

.trustpilot-boxes {
  display: inline-block;
  margin-right: 5px;
  padding: 1px 4px 2px;
  border-radius: 2px;
  background: #00b67a;
  color: #fff;
  font-size: 10px;
  letter-spacing: .03em;
  vertical-align: 1px;
}

.media-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(350px, .78fr) minmax(0, 1.22fr);
  gap: 14px;
  align-items: stretch;
}

.video-panel,
.orders-panel,
.customer-gallery {
  border-radius: 16px;
  padding: 14px;
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.section-title-row h2 {
  margin: 0;
  color: var(--pp-ink);
  font-size: 17px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
}

.section-title-row a {
  color: var(--pp-orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.video-thumb {
  position: relative;
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #7a3f14;
  box-shadow: inset 0 -70px 80px rgba(0, 0, 0, .34);
}

.video-thumb img {
  width: 100%;
  aspect-ratio: 740 / 420;
  object-fit: cover;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .25), transparent 58%), linear-gradient(0deg, rgba(0,0,0,.4), transparent 35%);
  pointer-events: none;
}

.play-button,
.play-on-card,
.gallery-tile span {
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--pp-ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

.play-button {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 82px;
  height: 82px;
  transform: translate(-50%, -50%);
}

.play-button svg,
.play-on-card svg,
.gallery-tile span svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  margin-left: 4px;
}

.fake-player {
  display: none;
}

/* YouTube-style player */
.yt-thumb {
  position: relative;
  background: #000;
}

.yt-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: opacity .2s ease;
}

.yt-thumb:hover img {
  opacity: .85;
}

.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -56%);
  z-index: 3;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
  transition: transform .15s ease, filter .15s ease;
  display: block;
}

.yt-thumb:hover .yt-play-btn {
  transform: translate(-50%, -56%) scale(1.08);
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.6));
}

.yt-bar {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px 12px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, transparent 100%);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  font-family: "Roboto", Arial, sans-serif;
}

.yt-bar-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.yt-bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.yt-time {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
}

/* YT red progress bar line */
.yt-bar::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 3px;
  background: #222;
}

.yt-bar::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 28%;
  height: 3px;
  background: #f00;
}

.video-panel p,
.orders-panel p,
.customer-gallery p {
  margin: 10px 0 0;
  color: var(--pp-muted);
  font-size: 14px;
  line-height: 1.4;
}

.carousel {
  position: relative;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(112px, 1fr);
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  padding: 0 2px 6px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  position: relative;
  min-width: 116px;
  border: 0;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #ddd;
  scroll-snap-align: start;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .1);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 220 / 300;
  object-fit: cover;
  transition: transform .25s ease;
}

.gallery-card:hover img,
.gallery-tile:hover img {
  transform: scale(1.04);
}

.play-on-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
}

.play-on-card svg {
  width: 21px;
  height: 21px;
}

.carousel-arrow {
  position: absolute;
  top: 44%;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: 1px solid var(--pp-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  color: var(--pp-muted);
  font-size: 24px;
  line-height: 1;
  box-shadow: var(--pp-shadow-soft);
}

.carousel-arrow--prev {
  left: -12px;
}

.carousel-arrow--next {
  right: -12px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  min-height: 12px;
  margin-top: 2px;
}

.carousel-dots button,
.testimonial-controls button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: #d6d6d9;
  padding: 0;
}

.carousel-dots button.is-active,
.testimonial-controls button.is-active {
  background: var(--pp-orange);
}

.testimonial-band {
  position: relative;
  margin-top: 14px;
  min-height: 72px;
  border-radius: 16px;
  padding: 18px 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  background: linear-gradient(180deg, #fff 0%, #fff7f1 100%);
}

.quote-mark {
  color: var(--pp-orange);
  font-family: Georgia, serif;
  font-size: 76px;
  line-height: .5;
  opacity: .82;
}

.testimonial-track {
  min-height: 40px;
  position: relative;
}

.testimonial-slide {
  display: none;
  margin: 0;
  text-align: center;
}

.testimonial-slide.is-active {
  display: block;
}

.testimonial-slide blockquote {
  margin: 0;
  color: #33343a;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.35;
  font-style: italic;
}

.testimonial-slide figcaption {
  margin-top: 8px;
  color: var(--pp-text);
  font-weight: 700;
  font-size: 14px;
}

.testimonial-slide figcaption span {
  color: var(--pp-orange);
  letter-spacing: .06em;
  margin-right: 10px;
}

.testimonial-controls {
  display: grid;
  gap: 8px;
}

.customer-gallery {
  margin-top: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
}

.gallery-tile {
  position: relative;
  min-width: 0;
  border: 0;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #ddd;
}

.gallery-tile img {
  width: 100%;
  aspect-ratio: 320 / 230;
  object-fit: cover;
  transition: transform .25s ease;
}

.gallery-tile span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
}

.gallery-tile span svg {
  width: 20px;
  height: 20px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, .78);
}

.lightbox.is-open {
  display: grid;
}

.lightbox-content {
  width: min(100%, 960px);
  max-height: 86vh;
}

.lightbox-content iframe,
.lightbox-content img {
  display: block;
  width: 100%;
  max-height: 86vh;
  border: 0;
  border-radius: 16px;
  background: #111;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .55);
}

.lightbox-content iframe {
  aspect-ratio: 16 / 9;
  height: auto;
}

.lightbox-content img {
  height: auto;
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--pp-ink);
  font-size: 30px;
  line-height: 1;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(180px, .72fr) minmax(390px, 1.2fr) minmax(180px, .72fr);
    min-height: 380px;
    padding-inline: 22px;
  }

  .hero-card {
    width: clamp(112px, 15vw, 175px);
  }

  .hero h1 {
    font-size: clamp(36px, 5.1vw, 54px);
  }

  .hero-demand {
    font-size: clamp(31px, 4.7vw, 50px);
  }

  .game-selector {
    grid-template-columns: repeat(11, 104px);
  }

  .trust-items-grid {
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    overflow-x: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .page-shell {
    width: min(100% - 24px, var(--pp-max));
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 26px 18px 24px;
  }

  .hero-art {
    min-height: 145px;
    order: 2;
  }

  .hero-art--right {
    display: none;
  }

  .hero-copy {
    order: 1;
  }

  .hero-card {
    width: 120px;
  }

  .hero-card--one { left: 22%; top: 16px; }
  .hero-card--two { left: 42%; top: 0; }
  .hero-card--three { left: 60%; top: 18px; }

  .hero-points {
    max-width: 610px;
  }

  .game-selector {
    margin-top: 12px;
    padding-inline: 10px;
  }

  .trust-items-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-item {
    border-left: 0;
    border-top: 1px solid var(--pp-line);
  }

  .trust-item:nth-of-type(-n + 2) {
    border-top: 0;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-band {
    grid-template-columns: 1fr;
    padding: 22px 24px;
    text-align: center;
  }

  .quote-mark {
    display: none;
  }

  .testimonial-controls {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 18px, var(--pp-max));
    padding-top: 10px;
  }

  .hero {
    border-radius: 18px;
    padding: 24px 14px 18px;
  }

  .rating-kicker {
    font-size: 18px;
  }

  .hero h1 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .hero-demand {
    font-size: clamp(32px, 10vw, 44px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-points li {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-art {
    min-height: 128px;
  }

  .hero-card {
    width: 104px;
    border-radius: 9px;
  }

  .hero-card--one { left: 9%; }
  .hero-card--two { left: 34%; }
  .hero-card--three { left: 59%; }

  /* Trust strip: 2x2 + last item full-width */
  .trust-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item {
    border-left: 0;
    border-top: 1px solid var(--pp-line);
  }

  .trust-item:nth-of-type(-n + 2) {
    border-top: 0;
  }

  .trust-item:first-of-type {
    border-top: 0;
  }

  .trust-item:last-of-type {
    grid-column: 1 / -1;
    border-top: 1px solid var(--pp-line);
    justify-content: center;
    text-align: center;
  }

  .play-button {
    width: 64px;
    height: 64px;
  }

  .media-grid {
    gap: 12px;
  }

  /* Video panel: ensure it scales */
  .video-thumb {
    width: 100%;
  }

  .video-thumb img {
    width: 100%;
    height: auto;
    aspect-ratio: 740 / 420;
    object-fit: cover;
  }

  /* Real Orders: 3x2 photo grid instead of carousel */
  .orders-panel .carousel {
    position: static;
  }

  .orders-panel .carousel-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: row;
    grid-auto-columns: unset;
    overflow-x: hidden;
    scroll-snap-type: none;
    gap: 8px;
    padding: 0;
  }

  .orders-panel .gallery-card {
    scroll-snap-align: none;
    min-width: 0;
  }

  .orders-panel .gallery-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 220 / 300;
    object-fit: cover;
  }

  .orders-panel .carousel-arrow,
  .orders-panel .carousel-dots {
    display: none;
  }

  .section-title-row {
    align-items: flex-start;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lightbox {
    padding: 16px;
  }
}
