:root {
  --ink: #211c2b;
  --ink-2: #38294b;
  --muted: #6d5d7d;
  --muted-2: #8b7b9f;
  --violet-1: #f7f1ff;
  --violet-2: #f3eaff;
  --violet-3: #efe3ff;
  --violet-4: #efe2ff;
  --violet-5: #d8c1ff;
  --violet-6: #b98cff;
  --violet-strong: #8d5df5;
  --pink: #ff57b8;
  --pink-bg: #fff5fb;
  --lime: #72e16d;
  --white: #ffffff;
  --display: "Courier New", "Courier", monospace;
  --body: "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
  --max: 1168px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body {
  font-family: var(--body);
  color: var(--ink);
  background:
    radial-gradient(circle 80px at 144px 348px, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.95) 99%, rgba(255,255,255,0) 100%),
    radial-gradient(circle 70px at 984px 697px, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.8) 99%, rgba(255,255,255,0) 100%),
    radial-gradient(circle 230px at 540px 2264px, rgba(216,193,255,0.48) 0%, rgba(216,193,255,0.48) 99%, rgba(216,193,255,0) 100%),
    linear-gradient(180deg, #f7f1ff 0%, #f3eaff 38%, #efe3ff 100%);
  background-repeat: no-repeat;
  background-attachment: fixed, fixed, fixed, fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(247, 241, 255, 0.78);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border-bottom: 1px solid rgba(33, 28, 43, 0.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2.88px;
  color: var(--ink);
  text-transform: uppercase;
}
.brand__mark {
  width: 32px;
  height: 32px;
  background: var(--ink);
  color: var(--violet-5);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 16px;
  box-shadow: inset 0 -5px 0 0 rgba(255,255,255,0.18);
}
.nav {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav a {
  font-family: var(--body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.16px;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 0;
  transition: color 0.2s;
}
.nav a:hover { color: var(--violet-strong); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 18px 31px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1.92px;
  text-transform: uppercase;
  border: 3px solid var(--ink);
  transition: transform 0.15s ease, filter 0.15s ease;
  cursor: pointer;
  text-align: center;
}
.btn--pink {
  background: var(--pink);
  color: #fff;
  filter: drop-shadow(8px 8px 0 var(--ink));
}
.btn--white {
  background: #fff;
  color: var(--ink);
  filter: drop-shadow(8px 8px 0 var(--violet-5));
}
.btn:hover { transform: translate(-2px, -2px); }
.btn:active { transform: translate(2px, 2px); filter: none; }

.tag-chip {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 3px solid var(--ink);
  padding: 13px 17px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink);
  filter: drop-shadow(8px 8px 0 var(--violet-5));
}

.site-footer {
  width: 100%;
  background: #fff;
  border-top: 3px solid var(--ink);
  padding: 57px 24px 35px;
  margin-top: 60px;
}
.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.footer-top {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}
.footer-address, .footer-contact {
  font-family: var(--body);
  font-weight: 700;
  font-size: 12px;
  line-height: 21.6px;
  color: var(--muted);
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-socials a {
  display: inline-block;
  width: 40px;
  height: 40px;
  transition: transform 0.2s;
}
.footer-socials a:hover { transform: translateY(-2px); }
.footer-socials img { width: 100%; height: 100%; }

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-family: var(--body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 21.6px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--violet-strong); }

.footer-copy {
  font-family: var(--body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.32px;
  text-transform: uppercase;
  color: var(--muted-2);
  text-align: center;
}

.section { padding: 86px 0; }

.hero { padding: 70px 0 90px; }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 54px;
  align-items: center;
}
.hero__left { display: flex; flex-direction: column; gap: 23.3px; align-items: flex-start; }
.hero__title {
  font-family: var(--display);
  font-size: 108px;
  line-height: 88.56px;
  letter-spacing: 10.8px;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.hero__title--accent {
  color: var(--violet-strong);
  text-shadow: 8px 8px 0 rgba(255, 87, 184, 0.22);
}
.hero__text {
  max-width: 610px;
  font-size: 18px;
  line-height: 30.6px;
  color: var(--muted);
  font-weight: 700;
  padding-top: 6.7px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding-top: 10.7px;
}

.composition {
  position: relative;
  width: 100%;
  min-height: 540px;
  height: 540px;
}
.composition__frame {
  position: absolute;
  inset: 99px 77px 83px 87px;
  border: 3px solid var(--ink);
  border-radius: 244px 111px 253px 102px;
  background: linear-gradient(144.982deg, #fff 0%, #f2e8ff 50%, #d2b6ff 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px;
}
.composition__frame::before {
  content: "";
  position: absolute;
  inset: 21px;
  border-radius: inherit;
  box-shadow: inset 0 0 0 21px rgba(255, 255, 255, 0.55);
  pointer-events: none;
}
.console {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 205px;
  background: var(--violet-6);
  border: 3px solid var(--ink);
  border-radius: 34px;
  filter: drop-shadow(14px 14px 0 var(--ink));
}
.console__screen {
  position: absolute;
  top: 38px;
  left: 38px;
  right: 38px;
  height: 74px;
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: linear-gradient(90deg, #2a2037, #6149ab);
}
.console__dpad { position: absolute; bottom: 48px; left: 34px; width: 34px; height: 34px; }
.console__dpad::before, .console__dpad::after {
  content: ""; position: absolute; background: var(--ink);
}
.console__dpad::before { left: 12px; top: 0; width: 10px; height: 34px; }
.console__dpad::after { left: 0; top: 12px; width: 34px; height: 10px; }
.console__strip {
  position: absolute; bottom: 34px; left: 72px; right: 72px; height: 44px;
  background: #fff; border: 3px solid var(--ink); border-radius: 14px;
}
.console__strip::before, .console__strip::after {
  content: ""; position: absolute; top: 15px; width: 10px; height: 10px; background: var(--ink);
}
.console__strip::before { left: 32px; }
.console__strip::after { right: 32px; }
.console__btns {
  position: absolute; bottom: 52px; right: 38px;
  display: grid; grid-template-columns: 14px 14px; gap: 10px;
}
.console__btns span { width: 14px; height: 14px; background: var(--ink); border-radius: 7px; }

.float-card {
  position: absolute;
  width: 145px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 17px;
  filter: drop-shadow(0 22px 30px rgba(79, 45, 133, 0.16));
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
.float-card img {
  width: 112px; height: 112px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  object-fit: cover;
}
.float-card span {
  font-family: var(--display); font-weight: 700; font-size: 11px;
  letter-spacing: 1.1px; text-transform: uppercase; text-align: center;
  color: var(--ink);
}
.float-card--narrow { left: 3%; top: 11px; transform: rotate(-8deg); }
.float-card--bubble { right: 0; top: 62px; transform: rotate(9deg); }
.float-card--sushi { left: 0; bottom: 53px; transform: rotate(10deg); }
.float-card--supercar { right: 10%; bottom: 0; transform: rotate(-7deg); }
.dashed {
  position: absolute;
  border: 5px dashed var(--lime);
  opacity: 0.8;
  transform: rotate(34deg);
}
.dashed--1 { left: 1%; bottom: 5%; width: 86px; height: 86px; }
.dashed--2 { right: -3%; top: 42%; width: 80px; height: 80px; }
.dashed--3 { left: 47%; top: 2%; width: 80px; height: 80px; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.section-head__title {
  font-family: var(--display);
  font-size: 72px;
  line-height: 64.8px;
  letter-spacing: 7.2px;
  text-transform: uppercase;
  color: var(--ink);
}
.section-head__text {
  font-size: 16px;
  line-height: 26.4px;
  color: var(--muted);
  font-weight: 700;
  max-width: 480px;
}

.intro-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
}
.intro-dark {
  flex: 1;
  background: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 28px;
  padding: 32px 33px 177px;
  filter: drop-shadow(10px 10px 0 var(--pink));
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 28.8px;
}
.intro-light {
  flex: 1;
  background: rgba(255, 255, 255, 0.72);
  border: 3px solid var(--ink);
  border-radius: 28px;
  padding: 32px 33px;
  box-shadow: 10px 10px 0 0 rgba(185, 140, 255, 0.45);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.intro-light p {
  font-size: 16px;
  font-weight: 700;
  line-height: 28.8px;
  color: var(--ink);
}
.stat-row {
  display: flex;
  gap: 8px;
}
.stat {
  flex: 1;
  background: #fff;
  border: 2px solid rgba(33, 28, 43, 0.18);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat__num {
  font-family: var(--display);
  font-size: 42px;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
}
.stat__label {
  font-family: var(--body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.54px;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.2;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.game-card {
  position: relative;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 30px;
  padding: 25px 25px 75px;
  min-height: 330px;
  overflow: hidden;
  box-shadow: 0 22px 60px 0 rgba(79, 45, 133, 0.16);
  display: flex;
  flex-direction: column;
  gap: 13px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s ease;
}
.game-card:hover { transform: translateY(-4px); }
.game-card--violet { background: var(--violet-4); }
.game-card--pink { background: var(--pink-bg); }
.game-card__badge {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 10px 12px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--ink);
  z-index: 2;
}
.game-card__logo {
  width: 114px;
  height: 114px;
  border: 3px solid var(--ink);
  border-radius: 25px;
  box-shadow: 8px 8px 0 0 var(--violet-5);
  overflow: hidden;
  background: #fff;
}
.game-card__logo img { width: 100%; height: 100%; object-fit: cover; }
.game-card__title {
  font-family: var(--display);
  font-size: 28px;
  line-height: 28px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  color: var(--ink);
  padding-top: 14.9px;
}
.game-card__text {
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  line-height: 23.1px;
  color: var(--muted);
}
.game-card__cta {
  position: absolute;
  left: 22px;
  bottom: 22px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  color: var(--violet-strong);
  z-index: 2;
}
.game-card__blob {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 150px;
  height: 150px;
  background: var(--violet-5);
  opacity: 0.55;
  border-radius: 54px 96px 70px 79px;
  pointer-events: none;
}

.soft-row {
  display: flex;
  gap: 40px;
  align-items: stretch;
}
.soft-left {
  flex: 0 0 629px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.soft-feature {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 26px;
  padding: 21px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  filter: drop-shadow(8px 8px 0 rgba(185, 140, 255, 0.5));
}
.soft-feature__icon {
  width: 82px;
  height: 82px;
  background: var(--violet-5);
  border: 3px solid var(--ink);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body);
  font-size: 36px;
  color: var(--ink);
  flex-shrink: 0;
}
.soft-feature__body { flex: 1; }
.soft-feature__title {
  font-family: var(--display);
  font-size: 18.7px;
  letter-spacing: 1.498px;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 5px;
}
.soft-feature__text {
  font-family: var(--body);
  font-weight: 700;
  font-size: 16px;
  line-height: 24.8px;
  color: var(--muted);
}
.feature-list { padding-top: 1px; }

.quote-box {
  flex: 1;
  border: 3px solid var(--ink);
  border-radius: 34px;
  background: linear-gradient(143deg, #211c2b 0%, #4a356e 100%);
  min-height: 440px;
  position: relative;
  overflow: hidden;
  padding: 42px;
  color: #fff;
}
.quote-box__label, .quote-box__signature {
  font-family: var(--body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1.92px;
  text-transform: uppercase;
  color: var(--violet-5);
}
.quote-box__signature { position: absolute; bottom: 42px; left: 42px; right: 42px; }
.quote-box__text {
  position: absolute;
  top: 159px;
  left: 42px;
  right: 42px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 28px;
  line-height: 37.8px;
  color: #fff;
}
.quote-box__bg {
  position: absolute;
  left: 117px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--body);
  font-weight: 700;
  font-size: 104px;
  letter-spacing: 8.32px;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  white-space: nowrap;
}

.policy {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 80px 0 24px;
}
.policy__title {
  font-family: var(--display);
  font-size: 72px;
  line-height: 64.8px;
  letter-spacing: 7.2px;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
  margin: 0;
  word-break: break-word;
}
.policy__body {
  font-family: var(--body);
  font-weight: 700;
  font-size: 18px;
  line-height: 30.6px;
  color: var(--muted);
}
.policy__body p { margin: 0 0 30.6px; }
.policy__body p:last-child { margin-bottom: 0; }
.policy__body a {
  color: var(--muted);
  text-decoration: underline;
  transition: color 0.2s;
}
.policy__body a:hover { color: var(--violet-strong); }

.game-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.game-page__panel {
  background: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 28px;
  padding: 33px;
  filter: drop-shadow(10px 10px 0 var(--pink));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  color: #fff;
}
.game-page__panel p {
  font-family: var(--body);
  font-weight: 700;
  font-size: 16px;
  line-height: 28.8px;
  color: #fff;
  margin: 0 0 32px;
}
.game-page__panel p:last-of-type { margin-bottom: 0; }
.game-page__cta {
  align-self: flex-start;
  margin-top: 24px;
}
.game-page__image {
  border: 3px solid var(--ink);
  border-radius: 25px;
  filter: drop-shadow(8px 8px 0 var(--violet-5));
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #fff;
}
.game-page__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.game-page__title {
  font-family: var(--display);
  font-size: 72px;
  line-height: 64.8px;
  letter-spacing: 7.2px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 40px;
  word-break: break-word;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--violet-6);
  border: 3px solid var(--ink);
  border-radius: 22px;
  padding: 27px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  filter: drop-shadow(7px 7px 0 var(--ink));
}
.faq-item__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 3.4px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 3px 3px 0 var(--ink);
  flex-shrink: 0;
}
.faq-item__body { flex: 1; }
.faq-item__q {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18.7px;
  letter-spacing: 1.872px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.faq-item__a {
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  line-height: 21.45px;
  color: var(--ink-2);
}

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 200;
  width: calc(100% - 48px);
  max-width: var(--max);
  background: linear-gradient(135deg, #f5eeff 0%, #efe2ff 60%, #e7d6ff 100%);
  border: 3px solid var(--ink);
  border-radius: 30px;
  padding: 38px 44px;
  filter: drop-shadow(10px 10px 0 var(--violet-5));
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(26px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.cookie-banner__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cookie-banner__blob--1 {
  width: 96px; height: 14px;
  top: 30px; left: 110px;
  background: rgba(255, 255, 255, 0.75);
  transform: rotate(-12deg);
  filter: blur(2px);
}
.cookie-banner__blob--2 {
  width: 130px; height: 16px;
  top: 168px; left: 56%;
  background: rgba(141, 93, 245, 0.18);
  transform: rotate(-8deg);
  filter: blur(3px);
}
.cookie-banner__title {
  position: relative;
  font-family: var(--display);
  font-size: 56px;
  line-height: 1;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 20px;
}
.cookie-banner__text {
  position: relative;
  font-family: var(--body);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 760px;
  margin: 0 0 28px;
}
.cookie-banner__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 14px 26px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border: 3px solid var(--ink);
  cursor: pointer;
  text-align: center;
  background: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.cookie-btn--accept {
  background: var(--pink);
  color: #fff;
  filter: drop-shadow(7px 7px 0 var(--ink));
}
.cookie-btn--learn {
  background: #fff;
  color: var(--ink);
  filter: drop-shadow(7px 7px 0 var(--violet-5));
}
.cookie-btn:hover { transform: translate(-2px, -2px); }
.cookie-btn:active { transform: translate(2px, 2px); filter: none; }

/* ===== Scroll-reveal + entrance animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ===== Floating card bobbing ===== */
@keyframes bob-narrow {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-8deg) translateY(-11px); }
}
@keyframes bob-bubble {
  0%, 100% { transform: rotate(9deg) translateY(0); }
  50% { transform: rotate(9deg) translateY(-13px); }
}
@keyframes bob-sushi {
  0%, 100% { transform: rotate(10deg) translateY(0); }
  50% { transform: rotate(10deg) translateY(-9px); }
}
@keyframes bob-supercar {
  0%, 100% { transform: rotate(-7deg) translateY(0); }
  50% { transform: rotate(-7deg) translateY(-12px); }
}
.float-card--narrow { animation: bob-narrow 5s ease-in-out infinite; }
.float-card--bubble { animation: bob-bubble 6s ease-in-out infinite; }
.float-card--sushi { animation: bob-sushi 5.5s ease-in-out infinite; }
.float-card--supercar { animation: bob-supercar 6.5s ease-in-out infinite; }
.float-card { transition: filter 0.25s ease; }
.float-card:hover { filter: drop-shadow(0 26px 36px rgba(79, 45, 133, 0.32)); }

/* ===== Extra hover effects ===== */
.brand__mark { transition: transform 0.25s ease; }
.brand:hover .brand__mark { transform: rotate(-12deg) scale(1.06); }

.game-card__logo { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.game-card:hover .game-card__logo {
  transform: translateY(-3px) rotate(-3deg);
  box-shadow: 11px 11px 0 0 var(--violet-5);
}
.game-card__logo img { transition: transform 0.4s ease; }
.game-card:hover .game-card__logo img { transform: scale(1.07); }
.game-card__cta { transition: transform 0.25s ease, color 0.2s ease; }
.game-card:hover .game-card__cta { transform: translateX(6px); color: var(--pink); }

.soft-feature { transition: transform 0.2s ease, filter 0.2s ease; }
.soft-feature:hover {
  transform: translate(-2px, -2px);
  filter: drop-shadow(11px 11px 0 rgba(185, 140, 255, 0.6));
}
.soft-feature__icon { transition: transform 0.25s ease; }
.soft-feature:hover .soft-feature__icon { transform: rotate(8deg) scale(1.05); }

.faq-item { transition: transform 0.2s ease, filter 0.2s ease; }
.faq-item:hover {
  transform: translate(-2px, -2px);
  filter: drop-shadow(10px 10px 0 var(--ink));
}

.stat { transition: transform 0.2s ease, border-color 0.2s ease; }
.stat:hover { transform: translateY(-4px); border-color: var(--violet-strong); }

.game-page__image img { transition: transform 0.5s ease; }
.game-page__image:hover img { transform: scale(1.05); }

.footer-links a { position: relative; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .float-card--narrow, .float-card--bubble,
  .float-card--sushi, .float-card--supercar { animation: none !important; }
  .cookie-banner { transition: opacity 0.2s ease !important; }
}

@media (max-width: 1024px) {
  .hero__title { font-size: 84px; line-height: 1.05; }
  .section-head__title { font-size: 56px; line-height: 1.05; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .soft-row { flex-direction: column; }
  .soft-left { flex: 1; }
  .game-page__title { font-size: 56px; line-height: 1.05; letter-spacing: 5px; }
}

@media (max-width: 720px) {
  .container, .site-header__inner { padding-left: 12px; padding-right: 12px; }
  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 12px;
    gap: 12px;
  }
  .nav { gap: 18px; flex-wrap: wrap; }

  .section { padding: 60px 0; }
  .hero { padding: 40px 0 60px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__title { font-size: 56px; line-height: 1.1; letter-spacing: 6px; }
  .hero__text { font-size: 16px; line-height: 1.6; }

  .composition {
    width: 282px;
    height: 447px;
    margin: 0 auto;
  }
  .composition__frame { inset: 85px 66px 71px 74px; border-radius: 168px 42px 172px 39px; }
  .console { width: 215px; height: 176px; }
  .console__screen { top: 32px; left: 32px; right: 32px; height: 64px; }
  .console__dpad { bottom: 41px; left: 29px; width: 29px; height: 29px; }
  .console__dpad::before { left: 10px; width: 9px; height: 29px; }
  .console__dpad::after { top: 10px; width: 29px; height: 9px; }
  .console__strip { bottom: 29px; left: 62px; right: 62px; height: 38px; }
  .console__strip::before, .console__strip::after { top: 12px; width: 9px; height: 9px; }
  .console__strip::before { left: 27px; }
  .console__strip::after { right: 27px; }
  .console__btns { bottom: 44px; right: 32px; grid-template-columns: 12px 12px; gap: 8px; }
  .console__btns span { width: 12px; height: 12px; border-radius: 6px; }
  .float-card { width: 120px; padding: 14px; border-radius: 20px; }
  .float-card img { width: 96px; height: 96px; }

  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
  .section-head__title { font-size: 38px; letter-spacing: 2.5px; line-height: 1.1; word-break: break-word; }
  .game-card__title { font-size: 22px; letter-spacing: 1px; }
  .game-card { padding-right: 22px; }

  .intro-row { flex-direction: column; }
  .intro-dark { padding: 28px 24px 80px; }
  .intro-light { padding: 28px 24px; }
  .stat-row { flex-direction: column; }

  .cards-grid { grid-template-columns: 1fr; gap: 18px; }
  .game-card { padding: 22px 22px 70px; min-height: 290px; }

  .soft-feature { padding: 16px; gap: 16px; flex-direction: column; }
  .soft-feature__icon { width: 64px; height: 64px; font-size: 28px; }

  .quote-box { padding: 28px 24px; min-height: 340px; }
  .quote-box__text { position: relative; top: 0; left: 0; right: 0; font-size: 22px; line-height: 1.3; margin-top: 24px; }
  .quote-box__signature { position: relative; left: 0; right: 0; bottom: 0; margin-top: 24px; }
  .quote-box__bg { font-size: 64px; left: 12px; }

  .faq-item { padding: 20px; gap: 14px; }
  .faq-item__num { font-size: 28px; }
  .faq-item__q { font-size: 16px; }

  .site-footer { padding: 40px 12px 28px; margin-top: 30px; }
  .footer-top { flex-direction: column; align-items: flex-start; }

  .btn { padding: 14px 22px; font-size: 14px; min-height: 48px; letter-spacing: 1.6px; }

  .game-page { grid-template-columns: 1fr; gap: 18px; }
  .game-page__title { font-size: 44px; letter-spacing: 3px; line-height: 1.1; margin-bottom: 24px; }
  .game-page__panel { padding: 24px; }
  .game-page__panel p { font-size: 15px; line-height: 24px; margin-bottom: 22px; }
  .game-page__image { order: -1; }

  .policy { gap: 40px; padding: 40px 0 20px; }
  .policy__title { font-size: 32px; letter-spacing: 1.6px; line-height: 1.15; }
  .policy__body { font-size: 16px; line-height: 26px; }
  .policy__body p { margin-bottom: 22px; }

  .cookie-banner { bottom: 14px; width: calc(100% - 24px); padding: 26px 22px; border-radius: 24px; }
  .cookie-banner__title { font-size: 34px; letter-spacing: 2.5px; margin-bottom: 14px; }
  .cookie-banner__text { font-size: 15px; line-height: 1.5; margin-bottom: 22px; }
  .cookie-banner__actions { gap: 16px; }
  .cookie-btn { width: 100%; padding: 13px 20px; }
  .cookie-banner__blob--1 { left: 60px; top: 22px; }
  .cookie-banner__blob--2 { display: none; }
}
