@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: optional;
  src: url('/assets/fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: optional;
  src: url('/assets/fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

:root {
  --bg: #F3F0EA;
  --panel: #E5E2DB;
  --accent: #D5623E;
  --accent-dark: #c05433;
  --ink: #1C1C1C;
  --white: #ffffff;
  --maxw: 1440px;
  --pad: 5vw;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  background: var(--bg);
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

a { color: var(--ink); text-decoration: none; overflow-wrap: break-word; word-break: break-word; }
a:hover { color: var(--accent); }

h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; word-break: break-word; }

.btn,
button,
a[role="button"] {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad);
}

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

[hidden] { display: none !important; }

/* Keyframes */
@keyframes jt-marquee-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes jt-marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@keyframes jt-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Top disclaimer marquee */
.topbar {
  background: var(--accent);
  color: var(--white);
  overflow: hidden;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 0;
}
.topbar__track {
  display: inline-flex;
  gap: 48px;
  padding-right: 48px;
  animation: jt-marquee-left 30s linear infinite;
  will-change: transform;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 240, 234, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28, 28, 28, 0.06);
}
.header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}
.brand:hover { color: var(--ink); }
.brand svg { width: 26px; height: 26px; flex: 0 0 auto; }
.nav {
  display: flex;
  gap: 12px 28px;
  font-size: 14px;
  font-weight: 600;
}
.nav a { white-space: nowrap; }
.nav a:hover { text-decoration: underline; }
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px 20px;
  min-width: 0;
}
.header__phone { font-size: 14px; font-weight: 700; white-space: nowrap; }
.header__cta {
  background: var(--ink);
  color: var(--white);
  border-radius: 100px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.header__cta:hover { background: var(--accent); color: var(--white); }

.nav-mobile,
.nav-overlay { display: none; }

.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid rgba(28,28,28,0.2);
  border-radius: 50%;
  background: none;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile__close {
  position: absolute;
  top: 22px; right: 22px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(28, 28, 28, 0.2);
  background: none;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.nav-mobile__close:hover { border-color: var(--accent); color: var(--accent); }

/* Main wrapper */
.main { flex: 1 0 auto; }
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section { margin-bottom: 120px; }

.h2 {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0 0 48px 0;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
  align-items: center;
  padding-top: 80px;
  margin-bottom: 120px;
}
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.pill-outline {
  border: 1px solid var(--ink);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero__title {
  font-size: clamp(44px, 6vw, 90px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 32px 0;
}
.hero__text {
  max-width: 80%;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(28, 28, 28, 0.75);
  margin: 0;
}
.hero__visual {
  position: relative;
  min-height: 620px;
}
.hero__img-a {
  position: absolute; top: 0; left: 8%;
  width: 70%; height: 480px;
  border-radius: 200px 200px 0 0;
  overflow: hidden;
  background: var(--panel);
}
.hero__img-b {
  position: absolute; top: 300px; left: 0;
  width: 62%; height: 170px;
  border-radius: 100px;
  overflow: hidden;
  background: var(--accent);
  box-shadow: 0 24px 60px rgba(28, 28, 28, 0.18);
}
.hero__img-c {
  position: absolute; bottom: 0; right: 4%;
  width: 240px; height: 240px;
  border-radius: 50%;
  overflow: hidden;
  border: 12px solid var(--bg);
  box-shadow: 0 24px 60px rgba(28, 28, 28, 0.2);
  background: var(--ink);
}
.hero__img-a img, .hero__img-b img, .hero__img-c img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero__img-c img { animation: jt-spin 60s linear infinite; }

/* About */
.about__lead {
  max-width: 800px;
  margin: 0 auto 80px auto;
  text-align: center;
}
.about__lead p {
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin: 0;
}
.tag-fill {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  border-radius: 100px;
  padding: 4px 22px;
  vertical-align: middle;
  white-space: nowrap;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
}
.about__title-card {
  background: var(--panel);
  border-radius: 32px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
}
.about__title-card .big {
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.arrow-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--ink);
  align-self: flex-start;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
a.arrow-circle:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateX(4px);
}
.about__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.card-accent {
  background: var(--accent);
  color: var(--white);
  border-radius: 32px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-accent h3 { font-size: 20px; font-weight: 800; margin: 0; }
.card-accent p { margin: 0; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.85); }
.about__stats { justify-content: space-between; }
.about__stats .stat {
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.about__stats .stat span { font-size: 15px; font-weight: 600; letter-spacing: 0; }

/* Themes bento */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.bento__cell {
  border-radius: 32px;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.bento__cell h3 { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; margin: 0; }
.bento__cell p { margin: 0; font-size: 14px; line-height: 1.6; }
.bento--dark { background: var(--ink); color: var(--white); grid-column: span 8; }
.bento--dark p { color: rgba(255,255,255,0.75); max-width: 640px; }
.bento--accent { background: var(--accent); color: var(--white); grid-column: span 4; justify-content: flex-end; }
.bento--accent p { color: rgba(255,255,255,0.85); }
.bento--img {
  grid-column: span 4;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  background: var(--ink);
  padding: 0;
}
.bento--tall { grid-row: span 2; }
.bento--img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.bento--img .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,28,28,0) 25%, rgba(28,28,28,0.85) 100%);
  pointer-events: none;
}
.bento--img .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 32px;
  color: var(--white);
  pointer-events: none;
}
.bento--img .cap h3 { margin: 0 0 8px 0; }
.bento--img .cap p { color: rgba(255,255,255,0.85); }

/* Games list */
.games {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
  align-items: start;
}
.games__list { display: flex; flex-direction: column; }
.game-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(28, 28, 28, 0.15);
}
.game-item__num {
  border: 1px solid var(--ink);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.game-item h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 8px 0; }
.game-item p { margin: 0; font-size: 15px; line-height: 1.65; color: rgba(28, 28, 28, 0.7); }
.games__visual {
  position: sticky;
  top: 120px;
  min-height: 640px;
}
.games__img-a {
  position: absolute; top: 40px; right: 0; left: -80px; height: 380px;
  border-radius: 40px; overflow: hidden;
  border: 12px solid var(--bg);
  box-shadow: 0 24px 60px rgba(28,28,28,0.15);
  background: var(--panel);
}
.games__img-b {
  position: absolute; top: 360px; left: 10%; width: 65%; height: 260px;
  border-radius: 100px; overflow: hidden;
  border: 12px solid var(--bg);
  box-shadow: 0 24px 60px rgba(28,28,28,0.18);
  background: var(--accent);
}
.games__img-a img, .games__img-b img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Gallery marquee */
.gallery { margin-bottom: 120px; overflow: hidden; }
.gallery__rows { display: flex; flex-direction: column; gap: 16px; }
.gallery__row { overflow: hidden; }
.gallery__track {
  display: flex; gap: 16px; width: max-content;
  animation: jt-marquee-left 40s linear infinite;
  will-change: transform;
  padding-right: 16px;
}
.gallery__track--right { animation: jt-marquee-right 50s linear infinite; }
.gallery__track img { height: 240px; object-fit: cover; display: block; }
.g-w340 { width: 340px; border-radius: 32px; }
.g-round { width: 240px; border-radius: 50%; }
.g-pill { width: 340px; border-radius: 120px; }
.g-arch { width: 300px; border-radius: 120px 120px 0 0; }

/* Photo grid (gallery page) */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.photo-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}
.photo-grid img:nth-child(4n+1) { border-radius: 120px 24px 24px 24px; }
.photo-grid img:nth-child(4n) { border-radius: 24px 24px 120px 24px; }

/* FAQ */
.faq { max-width: 960px; margin-left: auto; margin-right: auto; }
.faq-item { border-bottom: 1px solid var(--accent); }
.faq-item__toggle {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  background: none; border: none; cursor: pointer;
  padding: 28px 0;
  text-align: left;
  font-family: inherit;
  color: var(--ink);
}
.faq-item__toggle span:first-child { font-size: clamp(18px, 2.2vw, 24px); font-weight: 700; letter-spacing: -0.01em; }
.faq-item__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item__answer p { margin: 0; padding: 0 60px 28px 0; font-size: 16px; line-height: 1.7; color: rgba(28,28,28,0.7); }

/* Contact form */
.contact-card {
  background: var(--ink);
  color: var(--white);
  border-radius: 40px;
  padding: 60px;
}
.contact-card h2 {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0 0 48px 0;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 32px; }
.form-grid input,
.form-grid textarea {
  background: none; border: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 16px;
  padding: 12px 0;
  font-family: inherit;
}
.form-grid textarea { resize: vertical; min-height: 90px; }
.form-grid input::placeholder,
.form-grid textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-grid input:focus,
.form-grid textarea:focus { outline: none; border-bottom-color: var(--accent); }
.form-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.form-full { grid-column: 1 / -1; }
.form-check {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; color: rgba(255,255,255,0.7); cursor: pointer;
}
.form-check input {
  appearance: none; -webkit-appearance: none;
  width: 20px; height: 20px; aspect-ratio: 1;
  flex: 0 0 20px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 4px; background: none; cursor: pointer;
}
.form-check input:checked { background: var(--accent); border-color: var(--accent); }
.btn-submit {
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 24px;
  font-size: 18px; font-weight: 800; letter-spacing: 0.06em;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn-submit:hover { background: var(--accent-dark); transform: translateY(-2px); }

/* Contact info page block */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.contact-info__card {
  background: var(--panel);
  border-radius: 32px;
  padding: 32px;
}
.contact-info__card h3 { margin: 0 0 8px 0; font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(28,28,28,0.5); }
.contact-info__card a, .contact-info__card p { font-size: 18px; font-weight: 700; margin: 0; }

/* Legal / article content */
.legal-content { padding-top: 40px; }
.legal-content h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 32px 0;
}
.legal-content h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 48px 0 16px 0;
}
.legal-content h3 { font-size: 20px; font-weight: 800; margin: 32px 0 12px 0; }
.legal-content p { font-size: 16px; line-height: 1.8; color: rgba(28,28,28,0.8); margin: 0 0 16px 0; }
.legal-content ul { padding-left: 22px; margin: 0 0 16px 0; }
.legal-content li { font-size: 16px; line-height: 1.8; color: rgba(28,28,28,0.8); margin-bottom: 8px; }
.legal-content a { color: var(--accent); font-weight: 700; }

/* Page intro */
.page-intro { padding-top: 60px; margin-bottom: 80px; }
.page-intro h1 {
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 28px 0;
}
.page-intro p { max-width: 720px; font-size: 17px; line-height: 1.75; color: rgba(28,28,28,0.75); margin: 0 0 16px 0; }

/* Feature image + text row */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 100px;
}
.feature__media {
  border-radius: 40px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 24px 60px rgba(28,28,28,0.15);
}
.feature__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature--reverse .feature__media { order: 2; }
.feature h2 { font-size: clamp(28px, 3vw, 44px); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 20px 0; }
.feature p { font-size: 16px; line-height: 1.75; color: rgba(28,28,28,0.75); margin: 0; }

/* Theme / game detail cards list */
.detail-list { display: flex; flex-direction: column; gap: 16px; }
.detail-card {
  background: var(--panel);
  border-radius: 28px;
  padding: 32px 36px;
}
.detail-card h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 10px 0; }
.detail-card p { font-size: 15px; line-height: 1.7; color: rgba(28,28,28,0.75); margin: 0; }

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.review-card {
  background: var(--ink);
  color: var(--white);
  border-radius: 28px;
  padding: 36px;
}
.review-card p { font-size: 17px; line-height: 1.7; margin: 0 0 20px 0; color: rgba(255,255,255,0.9); font-style: italic; }
.review-card .who { font-size: 14px; font-weight: 700; color: var(--accent); font-style: normal; }

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 40px 0;
  flex-shrink: 0;
}
.footer__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
  padding-bottom: 56px;
}
.footer__brand { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.footer__brand .name { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; color: var(--white); }
.footer__brand p { margin: 0; font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer__age { display: flex; align-items: center; gap: 12px; }
.footer__age .badge { background: var(--accent); color: var(--white); font-weight: 800; font-size: 14px; border-radius: 100px; padding: 8px 16px; }
.footer__age span:last-child { font-size: 13px; color: rgba(255,255,255,0.7); }
.footer__col { display: flex; flex-direction: column; gap: 14px; }
.footer__col .head { font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 6px; }
.footer__col a { color: rgba(255,255,255,0.8); font-size: 14px; }
.footer__col a:hover { color: var(--accent); }
.footer__news { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.footer__news .row { display: flex; flex-wrap: wrap; gap: 10px; }
.footer__news input {
  flex: 1; min-width: 0;
  background: none; border: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  color: var(--white); font-size: 14px; padding: 10px 0; font-family: inherit;
}
.footer__news input::placeholder { color: rgba(255,255,255,0.4); }
.footer__news button {
  background: var(--accent); color: var(--white); border: none; border-radius: 100px;
  padding: 10px 22px; font-size: 12px; font-weight: 800; letter-spacing: 0.08em; cursor: pointer; font-family: inherit;
}
.footer__news button:hover { background: var(--accent-dark); }
.footer__news label { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; color: rgba(255,255,255,0.55); cursor: pointer; line-height: 1.5; }
.footer__news label input {
  appearance: none; -webkit-appearance: none;
  width: 16px; height: 16px; aspect-ratio: 1; flex: 0 0 16px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 3px; background: none; cursor: pointer; margin-top: 2px; padding: 0;
}
.footer__news label input:checked { background: var(--accent); border-color: var(--accent); }
.footer__badges {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.footer__badges span {
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
}
.footer__disclaimer { margin: 0; padding: 28px 0; font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); }
.footer__org {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 28px 0;
  font-size: 13px; line-height: 1.9; color: rgba(255,255,255,0.6);
  text-align: center;
}
.footer__org strong { color: rgba(255,255,255,0.85); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
}
.footer__rg { display: flex; flex-wrap: wrap; gap: 24px; font-size: 13px; font-weight: 600; }
.footer__rg a { color: rgba(255,255,255,0.7); }
.footer__rg a:hover { color: var(--accent); }
.footer__copy { font-size: 13px; color: rgba(255,255,255,0.5); }

/* Cookie banner */
.cookie {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 300;
  max-width: 380px;
  background: var(--ink);
  color: var(--white);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.cookie p { margin: 0 0 16px 0; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.8); }
.cookie a { color: var(--accent); font-weight: 700; }
.cookie__actions { display: flex; gap: 10px; }
.cookie__actions button {
  flex: 1;
  border-radius: 100px;
  padding: 12px 16px;
  font-size: 13px; font-weight: 800; letter-spacing: 0.04em;
  cursor: pointer;
  font-family: inherit;
  border: 1px solid rgba(255,255,255,0.3);
}
.cookie__accept { background: var(--accent); color: var(--white); border-color: var(--accent) !important; }
.cookie__accept:hover { background: var(--accent-dark); }
.cookie__reject { background: none; color: var(--white); }
.cookie__reject:hover { background: rgba(255,255,255,0.08); }

/* Toast */
.toast {
  position: fixed;
  top: 24px; left: 50%;
  transform: translateX(-50%) translateY(-140%);
  z-index: 400;
  background: #3f7a4e;
  color: var(--white);
  border-radius: 100px;
  padding: 16px 32px;
  font-size: 15px; font-weight: 700;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* Support chat */
.chat-toggle {
  position: fixed;
  right: 20px; bottom: calc(20px + var(--cookie-h, 0px));
  z-index: 250;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(213,98,62,0.45);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.chat-toggle { transition: transform 0.2s ease, box-shadow 0.2s ease, bottom 0.3s ease; }
.chat-toggle:hover { transform: scale(1.06); box-shadow: 0 20px 48px rgba(213,98,62,0.55); }
.chat-toggle svg { width: 28px; height: 28px; }
.chat-panel {
  position: fixed;
  right: 20px; bottom: calc(92px + var(--cookie-h, 0px));
  z-index: 260;
  width: 360px; max-width: calc(100vw - 40px);
  height: 460px; max-height: calc(100vh - 120px);
  background: var(--bg);
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.3);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.chat-head {
  background: var(--ink);
  color: var(--white);
  padding: 18px 20px;
  display: flex; align-items: center; gap: 12px;
}
.chat-head .ava {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; flex-shrink: 0;
}
.chat-head .who { font-weight: 800; font-size: 15px; }
.chat-head .status { font-size: 12px; color: rgba(255,255,255,0.6); }
.chat-head .close { margin-left: auto; background: none; border: none; color: var(--white); font-size: 24px; cursor: pointer; line-height: 1; }
.chat-body { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.chat-msg { max-width: 80%; padding: 12px 16px; border-radius: 18px; font-size: 14px; line-height: 1.5; }
.chat-msg.bot { background: var(--panel); color: var(--ink); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg.user { background: var(--accent); color: var(--white); align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-foot { display: flex; gap: 8px; padding: 14px; border-top: 1px solid rgba(28,28,28,0.1); }
.chat-foot input {
  flex: 1; min-width: 0;
  border: 1px solid rgba(28,28,28,0.15);
  border-radius: 100px;
  padding: 12px 16px;
  font-size: 14px; font-family: inherit;
  background: var(--white);
}
.chat-foot input:focus { outline: none; border-color: var(--accent); }
.chat-foot button {
  background: var(--accent); color: var(--white); border: none;
  border-radius: 50%; width: 44px; height: 44px; flex-shrink: 0;
  cursor: pointer; font-size: 18px;
}

/* ===== Responsive ===== */
@media (max-width: 1220px) {
  .nav, .header__phone { display: none; }
  .burger { display: flex; }
  .nav-mobile {
    position: fixed;
    top: 0; right: 0;
    z-index: 200;
    width: min(320px, 82vw);
    height: 100vh;
    background: var(--bg);
    box-shadow: -24px 0 60px rgba(0,0,0,0.15);
    padding: 100px 32px 32px;
    display: flex; flex-direction: column; gap: 8px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
    overflow-y: auto;
  }
  .nav-mobile.active { transform: translateX(0); }
  .nav-mobile a { font-size: 20px; font-weight: 700; padding: 12px 0; border-bottom: 1px solid rgba(28,28,28,0.08); }
  .nav-mobile .header__phone { display: block; font-size: 18px; margin-top: 16px; }
  .nav-overlay {
    display: block;
    position: fixed; inset: 0; z-index: 190;
    background: rgba(28,28,28,0.4);
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .nav-overlay.active { opacity: 1; visibility: visible; }
}

@media (max-width: 960px) {
  .games { grid-template-columns: 1fr; }
  .games__visual { position: static; min-height: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
  .games__img-a, .games__img-b { position: static; inset: auto; width: 100%; height: 260px; }
}

@media (max-width: 820px) {
  .section, .hero, .gallery { margin-bottom: 80px; }
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 48px; }
  .hero__text { max-width: 100%; }
  .hero__visual { min-height: 460px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__title-card { min-height: 240px; }
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
  .bento__cell { justify-content: flex-start; }
  .bento--dark { grid-column: 1 / -1; }
  .bento--accent { grid-column: 1 / -1; }
  .bento--img { grid-column: 1 / -1; grid-row: auto; height: 300px; }
  .bento--img.bento--tall { grid-row: auto; height: 340px; }
  .contact-card { padding: 36px 28px; }
  .form-grid { grid-template-columns: 1fr; gap: 28px; }
  .feature { grid-template-columns: 1fr; gap: 28px; }
  .feature--reverse .feature__media { order: 0; }
  .games__visual { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  :root { --pad: 20px; }
  .header__cta { display: none; }
  .brand { font-size: 17px; }
  .brand svg { width: 22px; height: 22px; }
  .about__cards { grid-template-columns: 1fr; }
  .form-pair { grid-template-columns: 1fr; gap: 28px; }
  .bento { grid-template-columns: 1fr; }
  .bento--dark, .bento--accent, .bento--img { grid-column: span 1; }
  .cookie { right: 12px; left: 12px; bottom: 12px; max-width: none; }
  .faq-item__answer p { padding-right: 0; }
  .contact-card { border-radius: 28px; }
}

@media (max-width: 360px) {
  .hero__title { font-size: 38px; }
  .brand { font-size: 15px; }
  .chat-panel { height: 70vh; }
}

@media (prefers-reduced-motion: reduce) {
  .topbar__track, .gallery__track, .hero__img-c img { animation: none !important; }
  html { scroll-behavior: auto; }
}
