/* Design tokens from Figma */
:root {
  --color-primary: #1662ae;
  --color-accent: #2488ec;
  --color-quote: #5e9ccf;
  --color-border: #6facff;
  --color-input-border: #8bb6db;
  --color-bg-end: #cae8ff;
  --color-card-bg: rgba(255, 255, 255, 0.15);
  --color-game-card: rgba(12, 79, 205, 0.5);
  --color-footer-link: #eadfff;
  --color-white-muted: rgba(255, 255, 255, 0.6);
  --gradient-hero: linear-gradient(90deg, #56ccf2 0%, #7268ff 70.82%, #2f80ed 100%);
  --gradient-page: linear-gradient(180deg, #ffffff 0%, #cae8ff 100%);
  --gradient-card: radial-gradient(ellipse at center, rgba(255, 255, 255, 1) 0%, rgba(215, 239, 254, 1) 100%);
  --gradient-quote: radial-gradient(ellipse at center, rgba(183, 224, 249, 1) 0%, rgba(216, 239, 253, 1) 100%);
  --shadow-blue: 0 0 15px rgba(12, 79, 205, 0.5);
  --shadow-blue-lg: 0 0 41px rgba(12, 79, 205, 0.5);
  --shadow-hero: 0 4px 12.4px rgba(47, 128, 237, 0.5);
  --shadow-btn: 0 0 20.5px rgba(12, 79, 205, 0.5);
  --shadow-cta: 0 7px 10px #a7ccff;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --container-pad: clamp(16px, 4vw, 24px);
  --section-pad-y: clamp(48px, 10vw, 70px);
  --radius-sm: 8px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 40px;
  --radius-pill: 100px;
  --max-width: 1440px;
}

@font-face {
  font-family: 'Inter Fallback';
  src: local('Arial');
  ascent-override: 90.2%;
  descent-override: 22.48%;
  line-gap-override: 0%;
  size-adjust: 107.4%;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', 'Inter Fallback', system-ui, -apple-system, sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: normal;
  color: var(--color-primary);
  background: var(--gradient-page);
  min-height: 100vh;
  word-break: break-word;
  overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }
body.menu-open,
body.modal-open { overflow: hidden; }
.page { display: flex; flex-direction: column; gap: 10px; min-height: 100vh; }

/* Decorative float — logic from https://codepen.io/ejlambo/pen/ogNPNKY */
@keyframes deco-float-1 {
  from { transform: translate(0, 0); }
  60% { transform: translate(0, 32px); }
  to { transform: translate(0, 0); }
}

@keyframes deco-float-2 {
  from { transform: translate(0, 0); }
  45% { transform: translate(0, 15px); }
  to { transform: translate(0, 0); }
}

@keyframes deco-float-3 {
  from { transform: translate(0, 0); }
  50% { transform: translate(0, -25px); }
  to { transform: translate(0, 0); }
}

@keyframes deco-float-4 {
  from { transform: translate(0, 0); }
  40% { transform: translate(0, -15px); }
  to { transform: translate(0, 0); }
}

@keyframes deco-float-1-rot27 {
  from { transform: rotate(27.33deg) translate(0, 0); }
  60% { transform: rotate(27.33deg) translate(0, 32px); }
  to { transform: rotate(27.33deg) translate(0, 0); }
}

@keyframes deco-float-3-rot27 {
  from { transform: rotate(27.33deg) translate(0, 0); }
  50% { transform: rotate(27.33deg) translate(0, -25px); }
  to { transform: rotate(27.33deg) translate(0, 0); }
}

@keyframes deco-float-4-rot-8 {
  from { transform: rotate(-7.77deg) translate(0, 0); }
  40% { transform: rotate(-7.77deg) translate(0, -15px); }
  to { transform: rotate(-7.77deg) translate(0, 0); }
}

.deco-float {
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .deco-float,
  .hero__deco,
  .games-deco,
  .faq-deco img { animation: none !important; }
}

/* Top bar */
.top-bar {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 10px var(--container-pad);
  font-size: 11px;
  font-weight: 500;
}
.top-bar strong { font-weight: 700; }

/* Header */
.site-header {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  padding: 10px var(--container-pad);
  gap: 8px;
  min-height: 64px;
  position: relative;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(22, 98, 174, 0.08);
}
.header-spacer { display: block; width: 38px; height: 38px; }
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  grid-column: 2;
}
.logo__icon {
  width: 40px;
  height: 44px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.logo__icon img {
  position: absolute;
  height: 125.23%;
  width: 317.85%;
  max-width: none;
  left: -5%;
  top: -11.57%;
}
.logo__text {
  width: auto;
  max-width: 130px;
  height: 30px;
  object-fit: contain;
}
.menu-toggle {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  z-index: 301;
  grid-column: 1;
  justify-self: start;
}
.menu-toggle img { width: 100%; height: 100%; }
.nav-desktop { display: none; }
.nav-mobile {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: linear-gradient(180deg, #1662ae 0%, #2488ec 55%, #56ccf2 100%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 80px 24px 40px;
}
.nav-mobile[hidden] { display: none !important; }
.menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-mobile a {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 8px 0;
}
.nav-mobile .btn-responsible {
  margin-top: 12px;
  background: #fff;
  color: var(--color-primary);
  box-shadow: none;
}
.nav-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}
.nav-link--active {
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 5px;
}
.btn-responsible {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 30px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-btn);
  white-space: nowrap;
}
.btn-responsible img { width: 24px; height: 24px; }

/* Sections */
.section {
  padding: var(--section-pad-y) var(--container-pad);
  position: relative;
}
.section__inner { max-width: var(--max-width); margin: 0 auto; width: 100%; }
.section-title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.section-title img { width: 59px; height: 59px; flex-shrink: 0; }
.section-title h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
  color: var(--color-primary);
}
.section-intro {
  margin: 0 0 20px;
  font-size: 17px;
  font-weight: 500;
  line-height: normal;
}

/* Hero */
.hero {
  padding: clamp(16px, 4vw, 24px) var(--container-pad) 0;
  position: relative;
}
.hero__shell {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}
.hero__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 2vw, 16px);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 5vw, 40px) clamp(16px, 4vw, 24px) 0;
  min-height: clamp(440px, 125vw, 580px);
  box-shadow: var(--shadow-hero);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: var(--gradient-hero);
  z-index: 0;
}
.hero__scene {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  opacity: 0.2;
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: none;
  z-index: 1;
  pointer-events: none;
}
.hero__layout {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 4vw, 24px);
  min-height: auto;
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 3vw, 20px);
  align-items: center;
  text-align: center;
  min-width: 0;
}
.hero__title {
  margin: 0;
  font-size: clamp(26px, 6.5vw, 32px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}
.hero__text {
  margin: 0;
  font-size: clamp(15px, 3.8vw, 17px);
  font-weight: 500;
  color: #fff;
  line-height: 1.45;
  max-width: 52ch;
}
.hero__character {
  position: relative;
  width: min(100%, 420px);
  max-width: 100%;
  margin: 0 auto;
  aspect-ratio: 620 / 482;
  overflow: visible;
  flex-shrink: 0;
  align-self: center;
  z-index: 2;
  pointer-events: none;
}
.hero__character img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  aspect-ratio: 620 / 482;
}
.hero__deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  display: none;
}
.hero__deco--orb-tr {
  width: 120px;
  height: 120px;
  right: -20px;
  top: 0;
  z-index: 1;
  animation-name: deco-float-3;
  animation-duration: 3.2s;
  animation-delay: 0s;
}
.hero__deco--crystal-tr {
  width: 70px;
  height: 160px;
  right: -10px;
  top: -8px;
  object-fit: cover;
  z-index: 2;
  animation-name: deco-float-4;
  animation-duration: 3.6s;
  animation-delay: 0.7s;
}
.hero__deco--orb-bl {
  width: 120px;
  height: 120px;
  left: -16px;
  bottom: -30px;
  animation-name: deco-float-2;
  animation-duration: 3.4s;
  animation-delay: 1.1s;
}
.hero__deco--crystal-bl {
  width: 160px;
  height: 140px;
  left: -50px;
  bottom: -40px;
  object-fit: cover;
  animation-name: deco-float-1-rot27;
  animation-duration: 3.8s;
  animation-delay: 0.35s;
}
.hero__deco.deco-float {
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.btn-cta--hero { margin-top: 4px; }
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #fff;
  border-radius: var(--radius-pill);
  padding: 10px 40px;
  background: var(--gradient-card);
  box-shadow: var(--shadow-cta);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  width: 100%;
  position: relative;
  z-index: 2;
  cursor: pointer;
  font-family: inherit;
}
.btn-cta img { width: 44px; height: 44px; }
.btn-cta--game { font-size: 18px; }

/* Cards */
.card {
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-blue);
  background: linear-gradient(var(--gradient-card)), #fff;
  background-blend-mode: overlay;
}
.card--quote {
  border: 4px solid var(--color-border);
  background: var(--gradient-quote);
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 20px;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}
.card--quote img { width: 79px; height: 170px; object-fit: cover; flex-shrink: 0; }
.card--quote p {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-quote);
  flex: 1;
}
.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-card {
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-blue-lg);
  background: linear-gradient(var(--gradient-card)), #fff;
  background-blend-mode: overlay;
  text-align: center;
}
.feature-card__emoji { font-size: 36px; font-weight: 700; margin: 0 0 10px; }
.feature-card h3 { margin: 0 0 10px; font-size: 20px; font-weight: 700; }
.feature-card p { margin: 0; font-size: 17px; font-weight: 500; }

/* About layout */
.about-grid { display: flex; flex-direction: column; gap: 20px; }
.about-image {
  width: 100%;
  height: 322px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: scaleY(-1) rotate(180deg);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* Team */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.team-card {
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-blue);
  background: linear-gradient(var(--gradient-card)), #fff;
  background-blend-mode: overlay;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.team-avatar {
  width: 117px;
  height: 117px;
  border-radius: 100px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.team-avatar img {
  position: absolute;
  height: 230.33%;
  width: 421.93%;
  max-width: none;
}
.team-avatar--mikko img { left: -86.03%; top: -4.94%; }
.team-avatar--lana img { left: -269%; top: -7.69%; }
.team-avatar--jari img { left: -84.95%; top: -115.15%; }
.team-avatar--satu img { left: -281.92%; top: -119.13%; }
.team-card h3 { margin: 0; font-size: 24px; font-weight: 700; }
.team-role {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.team-role img { width: 24px; height: 24px; }
.team-role span { font-size: 17px; font-weight: 700; }
.team-card p { margin: 0; font-size: 17px; font-weight: 500; }

/* Games */
.games-section {
  position: relative;
  overflow: hidden;
}
.games-deco {
  display: none;
  position: absolute;
  pointer-events: none;
  z-index: 0;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.games-deco--left {
  animation-name: deco-float-3;
  animation-duration: 3.5s;
  animation-delay: 0.5s;
}
.games-deco--right {
  animation-name: deco-float-2;
  animation-duration: 3.1s;
  animation-delay: 0.9s;
}
.info-banner {
  border: 4px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  background: var(--gradient-quote);
  text-align: center;
  margin-bottom: 20px;
}
.info-banner h3 { margin: 0 0 8px; font-size: 24px; font-weight: 700; color: var(--color-quote); }
.info-banner p { margin: 0; font-size: 20px; font-weight: 500; color: var(--color-quote); line-height: normal; }
.stardrip-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}
.stardrip-row img { width: 59px; height: 67px; object-fit: cover; }
.stardrip-row span { font-size: 24px; font-weight: 700; }
.games-grid { display: flex; flex-direction: column; gap: 20px; position: relative; z-index: 1; }
.game-card {
  background: var(--color-game-card);
  border: 2px dashed rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-blue);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.game-card__hero {
  width: calc(100% - 40px);
  margin: 20px 20px 0;
  height: auto;
  aspect-ratio: 520 / 293;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}
.game-card__inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}
.game-card h3 { margin: 0; font-size: 28px; font-weight: 700; color: #fff; text-align: left; }
.game-card > .game-card__inner > p { margin: 0; font-size: 17px; font-weight: 500; color: #fff; }
.game-card__features h4 { margin: 0 0 8px; font-size: 20px; font-weight: 700; color: #fff; }
.game-card__features ul { color: #fff; font-size: 17px; font-weight: 500; padding-left: 20px; margin: 0; }
.game-card .disclaimer { font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.85); text-align: center; margin: 0; }
.game-preview {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 520 / 399;
}
.game-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
.tag--purple { background: #8d56f2; }
.tag--pink { background: #d042ad; }
.tag--orange { background: #f29a56; }
.tag--rose { background: #f25680; }
.tag--blue { background: #2488ec; }

/* Steps */
.steps-grid { display: flex; flex-direction: column; gap: 20px; }
.step-card {
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-blue);
  background: linear-gradient(var(--gradient-card)), #fff;
  background-blend-mode: overlay;
}
.step-card__num { margin: 0 0 10px; font-size: 48px; font-weight: 700; opacity: 0.5; }
.step-card h3 { margin: 0 0 10px; font-size: 20px; font-weight: 700; }
.step-card p { margin: 0; font-size: 17px; font-weight: 500; }

/* Responsible banner */
.responsible-banner {
  border-radius: var(--radius-xl);
  padding: 40px 16px;
  background: var(--gradient-hero);
  box-shadow: 0 0 7.5px rgba(12, 79, 205, 0.5);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.responsible-banner .section-title h2 { color: #fff; font-size: 36px; }
.responsible-banner__text { color: #fff; font-size: 17px; font-weight: 500; }
.responsible-banner__text h3 { font-size: 20px; font-weight: 700; margin: 16px 0 8px; }
.responsible-banner__text ul { padding-left: 20px; }
.responsible-banner__text li { margin-bottom: 8px; }
.responsible-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
.responsible-logos img:nth-child(1) { width: 231px; height: 88px; object-fit: contain; }
.responsible-logos img:nth-child(2) { width: 110px; height: 110px; object-fit: cover; }
.responsible-logos img:nth-child(3) { width: 80px; height: 64px; object-fit: contain; }
.responsible-logos img:nth-child(4) { width: 86px; height: 36px; object-fit: contain; }

/* FAQ */
.faq-section {
  position: relative;
  overflow: hidden;
}
.faq-wrap {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
}
.faq-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.faq-deco--tr {
  display: none;
  right: 0;
  top: 70px;
  width: 180px;
  height: 200px;
}
.faq-deco--tr .faq-deco__orb {
  position: absolute;
  right: 0;
  top: 24px;
  width: 121px;
  height: 121px;
  max-width: none;
  animation: deco-float-2 3.3s ease-in-out 0.25s infinite;
}
.faq-deco--tr .faq-deco__planet {
  position: absolute;
  right: 0;
  top: 0;
  width: 140px;
  height: auto;
  animation: deco-float-3-rot27 3.7s ease-in-out 0.85s infinite;
}
.faq-deco--bl {
  display: none;
  left: 0;
  bottom: 140px;
  width: 143px;
  height: 146px;
}
.faq-deco--bl .faq-deco__orb {
  position: absolute;
  left: 10px;
  top: 12px;
  width: 121px;
  height: 121px;
  max-width: none;
  animation: deco-float-4 3.2s ease-in-out 0.6s infinite;
}
.faq-deco--bl .faq-deco__star {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: auto;
  animation: deco-float-4-rot-8 3.6s ease-in-out 0.15s infinite;
}
.faq-list { display: flex; flex-direction: column; gap: 20px; width: 100%; }
.faq-item {
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-blue);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1) 0%, rgba(215, 239, 254, 1) 100%);
  width: 100%;
}
.faq-item__head {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 0;
  color: inherit;
}
.faq-item__head h3 { margin: 0; flex: 1; font-size: 20px; font-weight: 700; color: var(--color-primary); }
.faq-item__chevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
  transition: transform 0.2s ease;
}
.faq-item.is-open .faq-item__chevron { transform: rotate(180deg); }
.faq-item__body {
  display: none;
  margin: 10px 0 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-primary);
}
.faq-item.is-open .faq-item__body { display: block; }
.faq-cta-text {
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 16px;
  color: var(--color-primary);
}
.email-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #d8effd;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-pill);
  padding: 15px 30px;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 auto;
  width: fit-content;
  max-width: 100%;
}
.email-btn img { width: 24px; height: 24px; }
.faq-section { align-items: center; }

/* Footer */
.site-footer {
  background: var(--color-primary);
  color: #fff;
  padding: 50px var(--container-pad) 70px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: stretch;
  text-align: left;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo {
  display: block;
  line-height: 0;
}
.footer-logo img {
  display: block;
  width: 254px;
  height: 56px;
  object-fit: contain;
}
.footer-copy {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: normal;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.footer-nav a:hover { text-decoration: underline; }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  margin: 0;
  width: 100%;
}
.footer-contact h3,
.footer-col h3 { margin: 0 0 10px; font-size: 20px; font-weight: 700; }
.footer-contact p,
.footer-col p,
.footer-contact li { font-size: 17px; font-weight: 500; line-height: 1.45; }
.footer-contact p { margin: 0 0 10px; }
.footer-contact ul { list-style: disc; padding-left: 25px; margin: 0; }
.footer-cols { display: flex; flex-direction: column; gap: 24px; width: 100%; }
.footer-col { flex: 1; min-width: 0; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.footer-legal a:hover { text-decoration: underline; }
.footer-responsible {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
  width: 100%;
}
.footer-responsible__badge {
  display: block;
  width: 86px;
  height: 36px;
  object-fit: contain;
}
.footer-responsible__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}
.footer-responsible__intro,
.footer-responsible__hotline {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
  max-width: 900px;
}
.footer-responsible__hotline { font-size: 15px; }
.footer-responsible__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
}
.footer-responsible__links a {
  color: var(--color-footer-link);
  text-decoration: underline;
}
.footer-responsible__links a:hover { opacity: 0.85; }
.footer-disclaimer {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

/* Content pages */
.content-page .section-title h2 { font-size: 36px; }
.content-body { width: 100%; max-width: var(--max-width); margin: 0 auto; }
.content-body h3 { font-size: 20px; font-weight: 700; margin: 24px 0 8px; }
.content-body p { margin: 0 0 16px; font-size: 17px; font-weight: 500; line-height: normal; }
.content-body ul { padding-left: 24px; margin: 0 0 16px; }
.content-body li { margin-bottom: 8px; font-size: 17px; }

/* Contact form */
.contact-grid { display: flex; flex-direction: column; gap: 20px; width: 100%; }
.form-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-blue);
  background: linear-gradient(var(--gradient-card)), #fff;
  background-blend-mode: overlay;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-primary);
}
.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--color-input-border);
  border-radius: var(--radius-sm);
  background: #fff;
  font: inherit;
  color: var(--color-primary);
  padding: 10px 12px;
}
.form-group input { height: 44px; }
.form-group textarea { height: 121px; resize: vertical; }
.form-check {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.form-check input { width: 13px; height: 13px; margin-top: 4px; flex-shrink: 0; }
.form-check label { font-size: 16px; font-weight: 500; line-height: normal; }
.btn-submit {
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  text-align: center;
}
.contact-image {
  width: 100%;
  height: 594px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.contact-image img { width: 100%; height: 100%; object-fit: cover; }
.contact-info-box {
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-blue);
  background: linear-gradient(var(--gradient-card)), #fff;
  background-blend-mode: overlay;
  font-size: 24px;
  font-weight: 700;
}
.contact-info-box p { margin: 0 0 16px; font-size: 24px; font-weight: 700; line-height: normal; }

/* Modals */
.game-modal,
.thank-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.game-modal[hidden],
.thank-modal[hidden] { display: none; }
.game-modal__backdrop,
.thank-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 60, 0.65);
  backdrop-filter: blur(4px);
}
.game-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 16px 24px;
  box-shadow: 0 20px 60px rgba(12, 79, 205, 0.35);
}
.game-modal__close,
.thank-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(22, 98, 174, 0.1);
  color: var(--color-primary);
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.game-modal__top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  padding-right: 36px;
}
.game-modal__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
}
.thank-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 28px 32px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(12, 79, 205, 0.35);
}
.thank-modal__dialog h3 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}
.thank-modal__dialog p {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--color-primary);
}
.thank-modal__btn {
  margin-top: 24px;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
}

/* Decorative crystals - hidden on mobile for clarity */
.deco-crystal { display: none; }

.faq-cta-text a {
  color: var(--color-primary);
  text-decoration: underline;
}
.section-intro a {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 700;
}

/* Tablet */
@media (min-width: 768px) {
  :root {
    --container-pad: clamp(24px, 5vw, 64px);
  }
  .games-grid { flex-direction: row; align-items: stretch; }
  .game-card { flex: 1; }
  .steps-grid { flex-direction: row; }
  .team-grid { flex-direction: row; flex-wrap: wrap; }
  .team-card { width: calc(50% - 10px); flex: 0 0 calc(50% - 10px); }
  .footer-cols { flex-direction: row; gap: 20px; }
  .hero__title { font-size: clamp(32px, 4.5vw, 42px); }
  .hero__character { width: min(100%, 520px); }
}

/* Desktop */
@media (min-width: 1024px) {
  :root {
    --container-pad: clamp(32px, 8vw, 150px);
  }
  .top-bar { font-size: 14px; }
  .logo__icon { width: 50px; height: 56px; }
  .logo__text { max-width: 194px; height: 48px; }
  .hero {
    padding-top: clamp(56px, 7vw, 96px);
    padding-bottom: clamp(72px, 10vw, 120px);
  }
  .hero__deco { display: block; }
  .hero__card {
    min-height: clamp(380px, 40vw, 457px);
    padding: clamp(28px, 3.5vw, 40px) clamp(28px, 3.5vw, 40px) clamp(56px, 7vw, 80px);
    gap: 0;
    overflow: visible;
  }
  .hero__layout {
    position: relative;
    z-index: 3;
    min-height: clamp(300px, 33vw, 377px);
  }
  .hero__content {
    align-items: flex-start;
    text-align: left;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: min(517px, 45.35%);
  }
  .hero__title { font-size: clamp(28px, 3.5vw, 50px); }
  .hero__text { font-size: clamp(15px, 1.45vw, 17px); max-width: none; }
  .hero__character {
    position: absolute;
    left: 39.47%;
    bottom: 0;
    top: auto;
    width: 60.35%;
    max-width: 620px;
    height: auto;
    margin: 0;
    aspect-ratio: 620 / 482;
    overflow: visible;
    z-index: 2;
  }
  .hero__character img {
    width: 110.61%;
    height: auto;
    max-width: none;
    margin-left: -6.39%;
    object-fit: contain;
    object-position: left bottom;
  }
  .hero__deco--orb-tr { width: 172px; height: 172px; right: -30px; top: 2px; }
  .hero__deco--crystal-tr { width: 98px; height: 228px; right: -10px; top: -16px; }
  .hero__deco--orb-bl { width: 172px; height: 172px; left: -23px; bottom: -20px; }
  .hero__deco--crystal-bl { width: 235px; height: 196px; left: -60px; bottom: -50px; }
  .btn-cta { width: auto; }
  .section-title h2 { font-size: 50px; }
  .about-grid { flex-direction: row; gap: 20px; align-items: flex-start; }
  .about-grid > div:first-child { flex: 1; }
  .about-image { flex: 1; height: auto; min-height: 500px; transform: scaleY(-1) rotate(180deg); }
  .feature-grid { flex-direction: row; }
  .feature-card { flex: 1; text-align: center; }
  .team-grid { flex-direction: row; flex-wrap: wrap; }
  .team-card { width: calc(50% - 10px); flex: 0 0 calc(50% - 10px); }
  .games-grid { flex-direction: row; align-items: stretch; }
  .game-card { flex: 1; }
  .game-card__hero { margin: 20px 20px 0; }
  .game-preview { aspect-ratio: 520 / 399; }
  .games-deco { display: block; }
  .games-deco--left {
    left: 0;
    top: 280px;
    width: 120px;
    height: auto;
    opacity: 0.7;
  }
  .games-deco--right {
    right: 0;
    top: 420px;
    width: 100px;
    height: auto;
    opacity: 0.7;
  }
  .steps-grid { flex-direction: row; }
  .step-card { flex: 1; }
  .responsible-banner .section-title h2 { font-size: 50px; }
  .footer-cols { flex-direction: row; gap: 20px; }
  .footer-nav { gap: 24px 70px; }
  .footer-legal { gap: 24px 70px; }
  .faq-deco--bl { display: block; left: -100px; bottom: 60px; }
  .faq-deco--tr { right: -100px; }
  .contact-grid__row { display: flex; gap: 20px; align-items: flex-end; }
  .contact-grid__row .form-card { flex: 1; }
  .contact-grid__row .contact-image { flex: 1; }
  .content-page .section-title h2 { font-size: 50px; }
  .faq-deco--tr {
    display: block;
    right: clamp(0px, calc((100vw - 1140px) / 2 - 60px), 80px);
    top: 52px;
  }
  .faq-deco--bl {
    display: block;
    left: clamp(0px, calc((100vw - 1140px) / 2 - 80px), 34px);
    bottom: 200px;
    top: auto;
  }
  .deco-crystal { display: block; position: absolute; pointer-events: none; }
}

/* Hero — tighter layout while burger menu is active */
@media (min-width: 1024px) and (max-width: 1139px) {
  .hero { padding-bottom: clamp(64px, 9vw, 100px); }
  .hero__card { padding-bottom: clamp(48px, 6vw, 64px); }
  .hero__content { max-width: min(480px, 52%); }
  .hero__title { font-size: clamp(26px, 2.8vw, 38px); }
  .hero__character {
    left: 36%;
    width: 64%;
    bottom: 0;
    top: auto;
  }
}

/* Desktop nav — burger until 1140px to avoid header layout shift */
@media (min-width: 1140px) {
  .menu-toggle { display: none; }
  .header-spacer { display: none; }
  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px var(--container-pad);
    min-height: 76px;
  }
  .logo {
    flex: 0 0 auto;
    justify-content: flex-start;
    grid-column: auto;
  }
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    justify-content: center;
  }
  .nav-mobile { display: none !important; }
}
