@font-face {
  font-family: "Montserrat";
  src: url(fonts/Montserrat-Regular.ttf);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "Montserrat";
}

body {
  height: 100%;
  margin: 0;
  background-color: var(--pp-bg);
  color: var(--pp-text-main);
}

a {
  text-decoration: none;
}

.list-reset {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

section {
  padding: 30px 0;
}

main {
  padding-top: 50px;
}

.padding__main {
  padding: 150px 0 50px 0;
}

.padding__main a {
  font-size: 24px;
}



/* burger */
.burger {
  display: none;
  height: 100%;
}

.nav__burger {
  top: 0;
  right: 0;
  padding: 50px 100px;
  width: 100%;
  position: absolute;
  z-index: 99;

  display: none;
  flex-direction: column;
  background-color: var(--pp-text-muted);
}

.nav__burger .nav__list {
  margin-left: auto;
  font-size: 30px;
  color: #fff;
}

.active {
  display: flex;
}

.overflow {
  overflow: hidden;
}

.burger-checkbox {
  position: absolute;
  visibility: hidden;
  right: 0;
}

.burger {
  cursor: pointer;
  display: none;
  color: #fff;
  position: relative;
  border: none;
  background: transparent;
  width: 30px;
  height: 23px;
  z-index: 100;
}

.burger::before,
.burger::after {
  content: "";
  left: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background-color: #fff;
}

.burger::before {
  top: 0px;
  box-shadow: 0 11px 0 #fff;
  transition: box-shadow 0.3s 0.15s, top 0.3s 0.15s, transform 0.3s;
}

.burger::after {
  bottom: 0;
  transition: bottom 0.3s 0.15s, transform 0.3s;
}

.burger-checkbox:checked+.burger::before {
  top: 12px;
  transform: rotate(45deg);
  box-shadow: 0 6px 0 transparent;
  transition: box-shadow 0.15s, top 0.3s, transform 0.3s 0.15s;
}

.burger-checkbox:checked+.burger::after {
  bottom: 9px;
  transform: rotate(-45deg);
  transition: bottom 0.3s, transform 0.3s 0.15s;
}

/* end burger */
.heading {
  margin: 0;
  font-size: 30px;
}

.text {
  margin: 0;
  font-size: 25px;
}

.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}


/* header */
header {
  width: 100%;
  position: fixed;
  padding: 10px 0;
  z-index: 99;
  background-color: var(--pp-text-muted);
  opacity: .9;
}

.header__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.header__lang {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang__switch {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--pp-border);
  background: rgba(46, 191, 198, 0.12);
  font-size: 16px;
  color: var(--pp-border);
  transition: .3s ease;
}

.lang__switch:hover {
  border-color: var(--pp-accent-blue);
}

.header__logo {
  display: flex;
  flex-direction: row;
  align-items: center;

  font-size: 25px;
  color: var(--pp-surface);

  transition: color 0.3s ease;
}

.header__logo:hover {
  color: var(--pp-accent-blue);
}

.nav__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.nav__list {
  font-size: 18px;
  color: var(--pp-surface);
  transition: color 0.3s ease;
}

.nav__list:hover {
  color: var(--pp-accent-blue);
}

:root {
  --pp-bg: #F1F6FA;
  --pp-accent-teal: #2EBFC6;
  --pp-accent-blue: #3399FF;
  --pp-text-main: #1A1A1A;
  --pp-text-muted: #5A6A7A;
  --pp-border: #D9E4EF;
  --pp-surface: #FFFFFF;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, var(--pp-accent-teal), var(--pp-accent-blue));
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* hero */

.hero {
  background: radial-gradient(circle at top left, #ffffff, var(--pp-bg));
}

.hero__container {
  display: flex;
}

.hero__content__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 40px;
  width: 100%;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero__heading {
  max-width: 520px;
  font-size: 32px;
  color: var(--pp-text-main);
}

.hero__text {
  max-width: 540px;
  font-size: 16px;
  color: var(--pp-text-muted);
}

.hero__subtitle {
  max-width: 540px;
  font-size: 16px;
  color: var(--pp-text-main);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__badge {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--pp-border);
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  color: var(--pp-text-main);
}

.hero__badge__safe {
  background: rgba(46, 191, 198, 0.12);
}

.hero__badge__age {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: var(--pp-text-main);
}

.hero__badge__age::before {
  content: "18+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 2px 5px;
  border-radius: 999px;
  background: var(--pp-accent-blue);
  color: #ffffff;
  font-size: 16px;
}

.hero__cta__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.hero__btn {
  padding-left: 32px;
  padding-right: 32px;
  font-size: 16px;
  color: #ffffff;
}

.hero__rotator {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__rotator__label {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.hero__rotator__text {
  font-size: 16px;
  font-weight: 500;
  color: var(--pp-text-main);
  padding: 6px 14px;
  border-radius: 999px;
  background-color: #ffffff;
  border: 1px solid var(--pp-border);
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  transition: 0.3s ease;
}

.hero__rotator__text--hidden {
  opacity: 0;
  transform: translateY(4px);
}

.hero__meta {
  max-width: 560px;
}

.hero__meta__text {
  font-size: 16px;
  color: var(--pp-text-muted);
  line-height: 1.5;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  background-color: #ffffff;
  border: 1px solid var(--pp-border);
  padding: 16px 18px;
  gap: 6px;
}

.hero__stat__label {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.hero__stat__value {
  font-size: 26px;
  font-weight: 700;
  color: var(--pp-accent-blue);
}

.hero__stat__value--zero {
  color: var(--pp-accent-teal);
}

.hero__stat__unit {
  font-size: 16px;
  color: var(--pp-text-muted);
}

/* hero visual */

.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero__visual__card {
  border-radius: 24px;
  background-color: var(--pp-surface);
  border: 1px solid var(--pp-border);
  padding: 18px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero__visual__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero__visual__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--pp-text-main);
}

.hero__visual__mode {
  font-size: 16px;
  color: var(--pp-text-muted);
  padding: 4px 10px;
  border-radius: 999px;
  background-color: rgba(51, 153, 255, 0.08);
}

.hero__visual__body {
  display: grid;
  align-items: stretch;
}

.hero__preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__preview__title {
  font-size: 18px;
  color: var(--pp-text-main);
}

.hero__preview__text {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.hero__preview__list {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero__preview__item {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.hero__credits {
  border-radius: 18px;
  background-color: #ffffff;
  border: 1px dashed var(--pp-border);
  padding: 10px 12px;
  display: grid;
  gap: 8px;
}

.hero__credits__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero__credits__label {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.hero__credits__value {
  font-size: 20px;
  font-weight: 600;
  color: var(--pp-accent-blue);
}

.hero__credits__tag {
  font-size: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: rgba(46, 191, 198, 0.1);
  color: var(--pp-text-main);
}

.hero__credits__note {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.hero__credits__row--note {
  align-items: flex-start;
}

.hero__visual__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.hero__visual__btn {
  padding-left: 22px;
  padding-right: 22px;
  font-size: 16px;
  color: #ffffff;
}

.hero__visual__note {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.hero__image__wrap {
  border-radius: 22px;
  border: 1px solid var(--pp-border);
  padding: 10px;
  background: linear-gradient(135deg, rgba(46, 191, 198, 0.1), rgba(51, 153, 255, 0.1));
}

.hero__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.hero__disclaimer {
  padding: 10px 14px;
  border-radius: 16px;
  background-color: rgba(241, 246, 250, 0.9);
  border: 1px solid var(--pp-border);
}

.hero__disclaimer__text {
  font-size: 16px;
  color: var(--pp-text-muted);
  line-height: 1.4;
}

/* hero animations */

.hero__badge__age.hero__badge--pulse {
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(51, 153, 255, 0.4);
  transition: 0.3s ease;
}

.hero__stat__value.hero__stat__value--animated {
  transform: translateY(-1px);
  transition: 0.3s ease;
}

/* responsive */

@media (max-width: 960px) {
  .hero__content__wrap {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .hero__visual__body {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__img {
    height: 160px;
  }
}

@media (max-width: 600px) {
  .hero__heading {
    font-size: 26px;
  }

  .hero__cta__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__stats {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* legal__notice */

.legal__notice {
  background-color: rgba(241, 246, 250, 0.9);
  border-top: 1px solid var(--pp-border);
  border-bottom: 1px solid var(--pp-border);
}

.legal__notice__container {
  display: flex;
  justify-content: center;
}

.legal__notice__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal__notice__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal__notice__age {
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal__notice__age__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pp-accent-teal), var(--pp-accent-blue));
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.legal__notice__heading {
  font-size: 22px;
  color: var(--pp-text-main);
}

.legal__notice__text {
  font-size: 16px;
  color: var(--pp-text-muted);
  max-width: 800px;
}

.legal__notice__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.legal__notice__col {
  padding: 14px 16px;
  border-radius: 16px;
  background-color: #ffffff;
  border: 1px solid var(--pp-border);
}

.legal__notice__col--fi {
  background: linear-gradient(135deg, #ffffff, #e4f1ff);
}

.legal__notice__subheading {
  font-size: 18px;
  font-weight: 600;
  color: var(--pp-text-main);
  margin: 0;
  margin-bottom: 8px;
}

.legal__notice__list {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal__notice__item {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.legal__notice__text__fi {
  font-size: 16px;
  color: var(--pp-text-main);
}

.legal__notice__note {
  font-size: 16px;
  color: var(--pp-text-muted);
  margin-top: 8px;
}

/* legal__notice animations */

.legal__notice__age__pill {
  transition: 0.3s ease;
}

.legal__notice__col--fi {
  transition: 0.3s ease;
}

.legal__notice__age__pill.legal__notice__age__pill--pulse {
  transform: translateY(-1px);
}

.legal__notice__col--fi.legal__notice__col--highlight {
  border-color: var(--pp-accent-blue);
}

/* games */

.games {
  background-color: var(--pp-bg);
}

.games__container {
  display: flex;
  justify-content: center;
}

.games__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.games__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.games__heading {
  font-size: 30px;
  color: var(--pp-text-main);
}

.games__text {
  max-width: 720px;
  font-size: 16px;
  color: var(--pp-text-muted);
}

.games__summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.games__stat {
  border-radius: 18px;
  background-color: var(--pp-surface);
  border: 1px solid var(--pp-border);
  padding: 16px 18px;
  display: grid;
  row-gap: 6px;
}

.games__stat__label {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.games__stat__value {
  font-size: 26px;
  font-weight: 700;
  color: var(--pp-accent-blue);
}

.games__stat__value--zero {
  color: var(--pp-accent-teal);
}

.games__stat__unit {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.games__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.games__filter {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--pp-border);
  background-color: #ffffff;
  font-size: 16px;
  color: var(--pp-text-muted);
  cursor: pointer;
  transition: 0.3s ease;
}

.games__filter--active {
  background: linear-gradient(90deg, var(--pp-accent-teal), var(--pp-accent-blue));
  color: #ffffff;
  border-color: transparent;
}

.games__layout {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.games__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.games__card {
  border-radius: 18px;
  background-color: var(--pp-surface);
  border: 1px solid var(--pp-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}

.games__card__image {
  position: relative;
  overflow: hidden;
}

.games__img {
  display: block;
  width: 100%;
  height: 180px;
  border-radius: 18px 18px 0 0;
  object-fit: cover;
}

.games__card__mode {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  font-size: 16px;
}

.games__card__body {
  margin-top: auto;
  padding: 14px 14px 16px 14px;
  display: grid;
  row-gap: 8px;
}

.games__card__title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--pp-text-main);
}

.games__card__text {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.games__card__btn {
  justify-self: flex-start;
  font-size: 16px;
  color: #ffffff;
}

.games__card--active {
  border-color: var(--pp-accent-blue);
  transform: translateY(-2px);
}

.games__card--highlight {
  border-color: var(--pp-accent-teal);
}

/* games details */

.games__details {
  width: 100%;
  border-radius: 20px;
  background-color: #ffffff;
  border: 1px solid var(--pp-border);
  padding: 18px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.games__details__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.games__details__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--pp-text-main);
}

.games__details__subtitle {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.games__details__body {
  display: grid;
  row-gap: 10px;
}

.games__details__row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.games__details__label {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.games__details__value {
  font-size: 16px;
  font-weight: 500;
  color: var(--pp-text-main);
  text-align: right;
}

.games__details__description {
  font-size: 16px;
  color: var(--pp-text-muted);
  margin-top: 4px;
}

.games__details__footer {
  border-top: 1px solid var(--pp-border);
  padding-top: 10px;
  display: grid;
  row-gap: 8px;
}

.games__details__credits {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.games__details__credits__label {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.games__details__credits__value {
  font-size: 20px;
  font-weight: 600;
  color: var(--pp-accent-blue);
}

.games__details__note {
  font-size: 16px;
  color: var(--pp-text-muted);
}

/* games animations */

.games__stat__value--animated {
  transform: translateY(-1px);
  transition: 0.3s ease;
}

.games__details__credits__value--pulse {
  transform: translateY(-1px);
  transition: 0.3s ease;
}

/* responsive */

@media (max-width: 960px) {
  .games__layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .games__heading {
    font-size: 26px;
  }

}

/* how__works */

.how__works__container {
  display: flex;
  justify-content: center;
}

.how__works__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.how__works__intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.how__works__heading {
  font-size: 30px;
  color: var(--pp-text-main);
}

.how__works__text {
  max-width: 760px;
  font-size: 16px;
  color: var(--pp-text-muted);
}

.how__works__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.4fr);
  gap: 22px;
  align-items: flex-start;
}

/* steps */

.how__works__steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.how__works__step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--pp-border);
  background-color: #ffffff;
  cursor: pointer;
  transition: 0.3s ease;
}

.how__works__step__index {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background-color: rgba(46, 191, 198, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--pp-accent-teal);
  font-weight: 600;
}

.how__works__step__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.how__works__step__title {
  font-size: 18px;
  color: var(--pp-text-main);
  font-weight: 600;
}

.how__works__step__hint {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.how__works__step--active {
  border-color: var(--pp-accent-blue);
  background: linear-gradient(135deg, #ffffff, #e4f1ff);
}

.how__works__step--active .how__works__step__index {
  background-color: var(--pp-accent-blue);
  color: #ffffff;
}

/* panel */

.how__works__panel {
  border-radius: 20px;
  background-color: #ffffff;
  border: 1px solid var(--pp-border);
  padding: 18px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.how__works__panel__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.how__works__panel__title {
  font-size: 20px;
  color: var(--pp-text-main);
  font-weight: 600;
}

.how__works__panel__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.how__works__panel__meta__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.how__works__panel__meta__label {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.how__works__panel__meta__value {
  font-size: 16px;
  color: var(--pp-text-main);
  font-weight: 500;
}

.how__works__panel__text {
  font-size: 16px;
  color: var(--pp-text-muted);
  line-height: 1.5;
}

/* checklist */

.how__works__checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.how__works__checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.how__works__checklist__icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background-color: rgba(46, 191, 198, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--pp-accent-teal);
}

.how__works__checklist__text {
  font-size: 16px;
  color: var(--pp-text-muted);
}

/* progress */

.how__works__progress {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.how__works__progress__track {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background-color: #f1f6fa;
  overflow: hidden;
}

.how__works__progress__fill {
  height: 6px;
  width: 33%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pp-accent-teal), var(--pp-accent-blue));
  transition: 0.3s ease;
}

.how__works__progress__label {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.how__works__progress__step {
  font-size: 16px;
  color: var(--pp-text-main);
  font-weight: 600;
}

/* compare */

.how__works__compare {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.how__works__compare__column {
  border-radius: 16px;
  border: 1px solid var(--pp-border);
  padding: 10px 12px;
  background-color: #ffffff;
}

.how__works__compare__column--muted {
  background-color: #f1f6fa;
}

.how__works__compare__title {
  font-size: 18px;
  color: var(--pp-text-main);
  font-weight: 600;
  margin-bottom: 6px;
}

.how__works__compare__list {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.how__works__compare__item {
  font-size: 16px;
  color: var(--pp-text-muted);
}

/* visual */

.how__works__visual {
  display: flex;
  align-items: stretch;
}

.how__works__visual__card {
  border-radius: 20px;
  border: 1px solid var(--pp-border);
  background: linear-gradient(135deg, #ffffff, #e4f1ff);
  padding: 14px 14px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.how__works__visual__badge {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: rgba(51, 153, 255, 0.12);
  font-size: 16px;
  color: var(--pp-text-main);
  font-weight: 500;
}

.how__works__visual__text {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.how__works__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
}

/* animations */

.how__works__step--active {
  transform: translateY(-1px);
}

.how__works__progress__fill--pulse {
  transform: scaleY(1.1);
}

.how__works__visual__badge--glow {
  transform: translateY(-1px);
}

/* responsive */

@media (max-width: 1024px) {
  .how__works__layout {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.4fr);
    grid-template-rows: auto auto;
  }

  .how__works__visual {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .how__works__layout {
    grid-template-columns: minmax(0, 1fr);
  }


  .how__works__heading {
    font-size: 26px;
  }
}

/* games__stat + icons */

.games__summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.games__stat {
  border-radius: 18px;
  background-color: var(--pp-surface);
  border: 1px solid var(--pp-border);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.games__stat__icon__wrap {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pp-accent-teal), var(--pp-accent-blue));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s ease;
}

.games__stat__icon {
  width: 24px;
  height: 24px;
  object-fit: cover;
}

.games__stat__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.games__stat__label {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.games__stat__numbers {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.games__stat__value {
  font-size: 26px;
  font-weight: 700;
  color: var(--pp-accent-blue);
}

.games__stat__value--zero {
  color: var(--pp-accent-teal);
}

.games__stat__unit {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.games__stat--titles:hover .games__stat__icon__wrap,
.games__stat--time:hover .games__stat__icon__wrap,
.games__stat--risk:hover .games__stat__icon__wrap {
  transform: translateY(-1px);
}

/* games__details + icons */

.games__details {
  border-radius: 20px;
  background-color: #ffffff;
  border: 1px solid var(--pp-border);
  padding: 18px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.games__details__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.games__details__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--pp-text-main);
}

.games__details__subtitle {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.games__details__body {
  display: grid;
  row-gap: 10px;
}

.games__details__row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.games__details__row__left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.games__details__icon__wrap {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background-color: rgba(46, 191, 198, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.games__details__icon {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

.games__details__label {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.games__details__value {
  font-size: 16px;
  font-weight: 500;
  color: var(--pp-text-main);
  text-align: right;
}

.games__details__description {
  font-size: 16px;
  color: var(--pp-text-muted);
  margin-top: 4px;
}

.games__details__footer {
  border-top: 1px solid var(--pp-border);
  padding-top: 10px;
  display: grid;
  row-gap: 8px;
}

.games__details__credits {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.games__details__credits__label {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.games__details__credits__value {
  font-size: 20px;
  font-weight: 600;
  color: var(--pp-accent-blue);
}

.games__details__row:hover .games__details__icon__wrap {
  transform: translateY(-1px);
}

/* faq */

.faq__container {
  display: flex;
  justify-content: center;
}

.faq__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.faq__intro {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__heading {
  font-size: 30px;
  color: var(--pp-text-main);
}

.faq__text {
  max-width: 760px;
  font-size: 16px;
  color: var(--pp-text-muted);
}

.faq__list {
  border-radius: 20px;
  border: 1px solid var(--pp-border);
  background-color: #ffffff;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq__item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid transparent;
  background-color: #ffffff;
  transition: 0.3s ease;
}

.faq__item--active {
  border-color: var(--pp-accent-blue);
  background: linear-gradient(135deg, #ffffff, #e4f1ff);
}

.faq__question {
  width: 100%;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.faq__question__title {
  font-size: 18px;
  color: var(--pp-text-main);
  text-align: left;
}

.faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background-color: rgba(46, 191, 198, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--pp-accent-teal);
  font-weight: 600;
  transition: 0.3s ease;
  flex-shrink: 0;
}

.faq__item--active .faq__icon {
  transform: rotate(45deg);
  background-color: rgba(51, 153, 255, 0.16);
  color: var(--pp-accent-blue);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  padding: 0 14px;
}

.faq__answer__text {
  font-size: 16px;
  color: var(--pp-text-muted);
  padding-bottom: 12px;
}

/* responsive */

@media (max-width: 720px) {
  .faq__inner {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .faq__heading {
    font-size: 26px;
  }
}

/* contact */

.contact__container {
  display: flex;
  justify-content: center;
}

.contact__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact__heading {
  font-size: 30px;
  color: var(--pp-text-main);
}

.contact__text {
  max-width: 760px;
  font-size: 16px;
  color: var(--pp-text-muted);
}

.contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact__info__block {
  border-radius: 20px;
  border: 1px solid var(--pp-border);
  background-color: #ffffff;
  padding: 18px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact__info__title {
  margin: 0;
  font-size: 20px;
  color: var(--pp-text-main);
  font-weight: 600;
}

.contact__info__text {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.contact__list {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact__list__item {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.contact__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.contact__meta__item {
  border-radius: 14px;
  border: 1px solid var(--pp-border);
  background-color: var(--pp-surface);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact__meta__label {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.contact__meta__value {
  font-size: 16px;
  color: var(--pp-text-main);
  font-weight: 500;
}

.contact__visual {
  display: flex;
  align-items: stretch;
}

.contact__visual__card {
  border-radius: 22px;
  border: 1px solid var(--pp-border);
  background: linear-gradient(135deg, #ffffff, #e4f1ff);
  padding: 16px 16px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact__visual__text {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.contact__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.contact__visual__note {
  font-size: 16px;
  color: var(--pp-text-main);
}

/* contact__form */

.contact__form__container {
  display: flex;
  justify-content: center;
}

.contact__form__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-bottom: 40px;
}

.contact__form__intro {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact__form__heading {
  font-size: 30px;
  color: var(--pp-text-main);
}

.contact__form__text {
  max-width: 760px;
  font-size: 16px;
  color: var(--pp-text-muted);
}

.contact__form__body {
  border-radius: 22px;
  border: 1px solid var(--pp-border);
  background-color: #ffffff;
  padding: 20px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__form__row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact__form__row--two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact__label {
  font-size: 16px;
  color: var(--pp-text-main);
}

.contact__input,
.contact__select,
.contact__textarea {
  width: 100%;
  font-size: 16px;
  color: var(--pp-text-main);
  border-radius: 12px;
  border: 1px solid var(--pp-border);
  background-color: #ffffff;
  padding: 10px 12px;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  color: var(--pp-text-muted);
}

.contact__select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--pp-accent-blue) 50%), linear-gradient(135deg, var(--pp-accent-blue) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}

.contact__textarea {
  min-height: 140px;
  resize: vertical;
}

.contact__counter {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  margin-top: 2px;
}

.contact__counter__label {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.contact__counter__value {
  font-size: 16px;
  color: var(--pp-text-main);
  font-weight: 500;
}

.contact__form__row--bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
}

.contact__checkbox {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}

.contact__checkbox__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact__checkbox__label {
  display: inline-flex;
  align-items: center;
  width: 100%;
  gap: 8px;
  cursor: pointer;
}

.contact__checkbox__box {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 6px;
  border: 1px solid var(--pp-border);
  background-color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--pp-accent-teal);
}

.contact__checkbox__text {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.contact__link {
  font-size: 16px;
  color: var(--pp-accent-blue);
  text-decoration: underline;
}

.contact__submit {
  font-size: 16px;
  color: #ffffff;
}

.contact__submit[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.contact__form__note {
  font-size: 16px;
  color: var(--pp-text-muted);
}

/* animations */

.contact__meta__item {
  transition: 0.3s ease;
}

.contact__meta__item--highlight {
  border-color: var(--pp-accent-blue);
}

.contact__submit--ready {
  transform: translateY(-1px);
}

/* responsive */

@media (max-width: 960px) {
  .contact__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact__visual {
    order: -1;
  }
}

@media (max-width: 720px) {

  .contact__form__inner {
    padding-bottom: 32px;
  }

  .contact__heading,
  .contact__form__heading {
    font-size: 26px;
  }

  .contact__form__row--bottom {
    align-items: flex-start;
  }
}

:root {
  --pp-bg: #F1F6FA;
  --pp-accent-teal: #2EBFC6;
  --pp-accent-blue: #3399FF;
  --pp-text-main: #1A1A1A;
  --pp-text-muted: #5A6A7A;
  --pp-border: #D9E4EF;
  --pp-surface: #FFFFFF;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--pp-bg);
  color: var(--pp-text-main);
  font-size: 16px;
}

.container {
  max-width: 1200px;
  width: 100%;
}

.heading {
  font-size: 30px;
  font-weight: 700;
  color: var(--pp-text-main);
}

.text {
  font-size: 16px;
  color: var(--pp-text-muted);
}

/* games__hero */

.games__hero__container {
  display: flex;
  justify-content: center;
}

.games__hero__inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 26px;
  align-items: flex-start;
}

.games__hero__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.games__hero__heading {
  font-size: 30px;
  color: var(--pp-text-main);
}

.games__hero__text {
  max-width: 760px;
  font-size: 16px;
  color: var(--pp-text-muted);
}

.games__hero__highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.games__hero__highlight {
  border-radius: 18px;
  border: 1px solid var(--pp-border);
  background-color: var(--pp-surface);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.games__hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: rgba(51, 153, 255, 0.08);
  font-size: 16px;
  color: var(--pp-text-main);
  font-weight: 500;
}

.games__hero__highlight__text {
  font-size: 16px;
  color: var(--pp-text-muted);
}

/* right panel */

.games__hero__panel {
  border-radius: 22px;
  border: 1px solid var(--pp-border);
  background-color: #ffffff;
  padding: 18px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.games__hero__panel__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.games__hero__panel__eyebrow {
  font-size: 16px;
  color: var(--pp-accent-blue);
  font-weight: 500;
}

.games__hero__panel__title {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.games__hero__panel__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.games__hero__panel__item {
  border-radius: 14px;
  border: 1px solid var(--pp-border);
  background-color: var(--pp-surface);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.games__hero__panel__label {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.games__hero__panel__value {
  font-size: 16px;
  color: var(--pp-text-main);
  font-weight: 500;
}

.games__hero__panel__value--safe {
  color: var(--pp-accent-teal);
}

.games__hero__list {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.games__hero__list__item {
  font-size: 16px;
  color: var(--pp-text-muted);
}

/* small animation accents */

.games__hero__highlight {
  transition: 0.3s ease;
}

.games__hero__highlight:hover {
  transform: translateY(-2px);
}

.games__hero__panel__item {
  transition: 0.3s ease;
}

.games__hero__panel__item:hover {
  transform: translateY(-1px);
}

/* responsive */

@media (max-width: 960px) {
  .games__hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }
}

@media (max-width: 600px) {
  .games__hero__heading {
    font-size: 26px;
  }
}

/* game__intro */

.game__intro__container {
  display: flex;
  justify-content: center;
}

.game__intro__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.game__intro__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.game__intro__heading {
  font-size: 30px;
  color: var(--pp-text-main);
}

.game__intro__text {
  max-width: 820px;
  font-size: 16px;
  color: var(--pp-text-muted);
}

.game__intro__badges {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.4fr);
  gap: 14px;
}

.game__intro__badge {
  border-radius: 18px;
  border: 1px solid var(--pp-border);
  background-color: var(--pp-surface);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.game__intro__badge--age {
  background: linear-gradient(135deg, #ffffff, #e4f1ff);
}

.game__intro__age__pill {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pp-accent-teal), var(--pp-accent-blue));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.game__intro__age__text {
  font-size: 16px;
  color: var(--pp-text-main);
}

.game__intro__badge__text {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.game__intro__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.game__intro__point {
  border-radius: 16px;
  border: 1px solid var(--pp-border);
  background-color: #ffffff;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.game__intro__point__label {
  font-size: 16px;
  color: var(--pp-text-main);
  font-weight: 600;
}

.game__intro__point__text {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.game__intro__note {
  border-radius: 16px;
  border: 1px solid var(--pp-border);
  background-color: rgba(241, 246, 250, 0.9);
  padding: 10px 14px;
}

.game__intro__note__text {
  font-size: 16px;
  color: var(--pp-text-muted);
}

/* game__frame */

.game__frame__container {
  display: flex;
  justify-content: center;
}

.game__frame__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 40px;
}

.game__frame__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.game__frame__heading {
  font-size: 30px;
  color: var(--pp-text-main);
}

.game__frame__text {
  max-width: 760px;
  font-size: 16px;
  color: var(--pp-text-muted);
}

.game__frame__embed {
  border-radius: 22px;
  border: 1px solid var(--pp-border);
  background-color: #ffffff;
  padding: 14px 14px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.game__frame__ratio {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background-color: #000000;
}

.game__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.game__frame__footnote {
  font-size: 16px;
  color: var(--pp-text-muted);
}

/* subtle animation accents */

.game__intro__age__pill {
  transition: 0.3s ease;
}

.game__intro__badge:hover .game__intro__age__pill {
  transform: translateY(-1px);
}

.game__intro__point {
  transition: 0.3s ease;
}

.game__intro__point:hover {
  transform: translateY(-1px);
}

.game__frame__ratio {
  transition: 0.3s ease;
}

.game__frame__ratio:hover {
  transform: translateY(-2px);
}

/* responsive */

@media (max-width: 960px) {
  .game__intro__badges {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {

  .game__frame__inner {
    padding-bottom: 32px;
  }

  .game__intro__heading,
  .game__frame__heading {
    font-size: 26px;
  }
}

/* footer */

.footer {
  background-color: #F1F6FA;
  border-top: 1px solid var(--pp-border);
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer__brand {
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__logo {
  font-size: 20px;
  color: var(--pp-text-main);
  font-weight: 700;
}

.footer__tagline {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.footer__columns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__column__title {
  font-size: 16px;
  color: var(--pp-text-main);
  font-weight: 600;
}

.footer__link {
  font-size: 16px;
  color: var(--pp-text-muted);
  text-decoration: none;
  transition: 0.3s ease;
}

.footer__link:hover {
  color: var(--pp-accent-blue);
}

.footer__bottom {
  border-top: 1px solid var(--pp-border);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__note {
  font-size: 16px;
  color: var(--pp-text-muted);
}

.footer__copy {
  font-size: 16px;
  color: var(--pp-text-main);
}

/* responsive footer */

@media (max-width: 720px) {
  .footer__container {
    gap: 16px;
  }

  .footer__top {
    gap: 18px;
  }
}