:root {
  --bg: #19031e;
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.8);
  --text-mute: rgba(255, 255, 255, 0.6);
  --card: rgba(255, 255, 255, 0.07);
  --grad-start: #f600f6;
  --grad-end: #ca5b00;
  --radius-card: 26px;
  --radius-lg: 30px;
  --container: 1200px;
  --side-pad: 84px;
  font-family: 'Goldman', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Goldman', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ====== Editorial elements (text-only, non-conversion) ====== */
.text-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-weight: 400;
  display: inline;
  padding: 0;
  border: 0;
  background: none;
  border-radius: 0;
}
.text-link:hover { opacity: 0.75; }

.breadcrumb {
  font-size: 13px;
  color: var(--text-mute);
  padding: 18px 0 0;
}
.breadcrumb a { color: var(--text-soft); text-decoration: underline; text-underline-offset: 2px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span[aria-current="page"] { color: #fff; }

.editorial-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-size: 13px;
  color: var(--text-mute);
  padding: 6px 0 4px;
}
.editorial-meta strong { color: var(--text-soft); font-weight: 700; }

.editorial-note {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}
.editorial-note .text-link { color: #fff; }

.editorial-sources {
  margin-top: 18px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.editorial-sources h3 {
  font-family: 'Goldman', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: #fff;
  letter-spacing: 0.5px;
}
.editorial-sources ul { display: flex; flex-direction: column; gap: 6px; }
.editorial-sources li { color: var(--text-soft); font-size: 14px; }
.editorial-sources li a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.editorial-board {
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  margin-top: 24px;
}
.editorial-board h3 {
  font-family: 'Goldman', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: #fff;
  letter-spacing: 0.5px;
}
.editorial-board p { color: var(--text-soft); font-size: 14px; line-height: 1.6; }

.site-footer__attribution {
  text-align: center;
  width: 100%;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-mute);
  font-size: 13px;
}
.site-footer__attribution strong { color: var(--text-soft); font-weight: 700; }

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

.muted { color: var(--text-soft); }

.heading-gradient {
  font-family: 'Goldman', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(to right, var(--grad-start), var(--grad-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin: 0;
}

.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px 40px;
  border-radius: 60px;
  background: linear-gradient(to right, var(--grad-start), var(--grad-end));
  color: #fff;
  font-family: 'Goldman', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  border: 0;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.btn-gradient:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(246, 0, 246, 0.25); }
.btn-gradient--sm { padding: 14px 28px; font-size: 13px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 60px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-family: 'Goldman', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.7); }

/* ====== Header ====== */
.site-header {
  position: relative;
  z-index: 5;
  padding: 20px 0;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.logo__icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.logo__name {
  font-family: 'Goldman', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 24px;
  color: #fff;
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}
.nav-primary a {
  color: #fff;
  transition: opacity .18s ease;
}
.nav-primary a:hover { opacity: 0.7; }

/* ====== Hero ====== */
.hero {
  padding: 50px 0 70px;
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 473px);
  gap: 40px;
  align-items: center;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 720px;
}
.hero__title {
  font-size: 70px;
}
.hero__text {
  color: #fff;
  max-width: 620px;
}
.hero__art img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.hero .btn-gradient { align-self: flex-start; }

/* ====== Advantages ====== */
.advantages {
  padding: 50px 0 60px;
}
.advantages__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.advantages__intro {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.advantages__intro h2 {
  font-size: 60px;
}
.advantages__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 217px;
}
.advantages__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advantages__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.advantages__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.feature-card__icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.feature-card__title {
  font-size: 22px;
  font-weight: 700;
}
.feature-card__text {
  color: var(--text-soft);
  font-size: 14px;
}

/* ====== Games ====== */
.games {
  background: linear-gradient(to right, var(--grad-start), var(--grad-end));
  padding: 50px var(--side-pad);
}
.games__inner {
  padding: 0;
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.games__content {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .games__content {
    flex-direction: column-reverse;
    gap: 40px;
    padding: 0;
  }
}

.games__img{
  border-radius: 26px;
  overflow: hidden;
  min-width: 350px;
  max-width: 350px;
width: 100%;
}

.games__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.games__block{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.games__link{
  display: inline-block;
  color: #FFF;
text-align: justify;
font-family: Goldman;
font-size: 14px;
font-weight: 700;
text-transform: uppercase;
border-radius: 60px;
border: 3px solid #FFF;
background: linear-gradient(90deg, #F600F6 0%, #CA5B00 100%);
padding: 22px 40px;
width: fit-content;
}

.games__intro {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 420px;
  flex-shrink: 0;
}
.games__title {
  font-family: 'Goldman', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  font-size: 60px;
  line-height: 1;
  margin: 0;
}
.games__text {
  color: var(--text-soft);
  font-size: 14px;
}
.games__grid {
  display: grid;
  grid-template-columns: repeat(3, 220px);
  gap: 20px;
}
.game-tile {
  display: block;
  width: 220px;
  height: 220px;
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.game-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.game-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* ====== Gallery ====== */
.gallery {
  padding: 80px 0 60px;
}
.gallery__intro {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 895px;
  margin-bottom: 30px;
}
.gallery__intro h2 {
  font-size: 60px;
}
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.gallery__item {
  margin: 0;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ====== Contact ====== */
.contact {
  padding: 60px 0 80px;
}


.contact__inner {
  display: flex;
  gap: 30px;
  align-items: flex-end;
  justify-content: space-between;
}
.contact__copy {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1 1 auto;
  max-width: 748px;
}
.contact__copy h2 {
  font-size: 60px;
}

.contact__copy-game{
  max-width: 100%;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-soft);
}
.contact__details a { color: inherit; }
.contact__details a:hover { color: #fff; }
.contact__details strong { font-weight: 700; }

.contact__art {
  flex-shrink: 0;
  width: 300px;
  height: 300px;
}
.contact__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ====== Footer ====== */
.site-footer {
  padding: 30px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
.site-footer__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.nav-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
}
.nav-footer a {
  color: #fff;
  transition: opacity .18s ease;
}
.nav-footer a:hover { opacity: 0.7; }

.site-footer__copy {
  color: var(--text-mute);
  font-size: 14px;
}

.site-footer__social {
  display: flex;
  gap: 15px;
  align-items: center;
}
.site-footer__social a {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease;
}
.site-footer__social a:hover { transform: translateY(-2px); }
.site-footer__social img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ====== Cookies ====== */
.cookies {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 0, 12, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: opacity .35s ease;
}
.cookies.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.cookies__card {
  width: 100%;
  max-width: 520px;
  background: #19031e;
  border: 2px solid #4ea0ff;
  border-radius: 28px;
  padding: 36px 36px 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.cookies__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
}
.cookies__icon svg { width: 100%; height: 100%; display: block; }
.cookies__title {
  font-family: 'Goldman', sans-serif;
  font-weight: 700;
  font-size: 28px;
  text-transform: none;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.1;
}
.cookies__text {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 28px;
}
.cookies__text a { color: #fff; text-decoration: underline; }
.cookies__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookies__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 24px;
  border-radius: 60px;
  font-family: 'Goldman', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 0;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.cookies__btn--primary {
  background: linear-gradient(to right, var(--grad-start), var(--grad-end));
  color: #fff;
}
.cookies__btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(246, 0, 246, 0.3);
}
.cookies__btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
}
.cookies__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ====== Responsive ====== */
@media (max-width: 1100px) {
  :root { --side-pad: 40px; }
  .hero__title { font-size: 56px; }
  .heading-gradient,
  .games__title,
  .advantages__intro h2,
  .gallery__intro h2,
  .contact__copy h2 { font-size: 48px; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { max-width: 420px; }

  .advantages__grid { grid-template-columns: 1fr; }
  .advantages__row { grid-template-columns: 1fr 1fr; }

  .games { padding: 50px 40px; }
  .games__inner { flex-direction: column; align-items: flex-start; gap: 40px; }
  .games__intro { max-width: none; }
  .games__grid { grid-template-columns: repeat(3, 1fr); width: 100%; }
  .game-tile { width: 100%; height: auto; aspect-ratio: 1 / 1; }

  .contact__inner { flex-direction: column; align-items: flex-start; }
  .contact__art { width: 220px; height: 220px; align-self: center; }
}

@media (max-width: 991px) {
  body { font-size: 14px; }
  :root { --side-pad: 20px; }

  .hero { padding: 30px 0 50px; }
  .hero__title { font-size: 40px; }
  .heading-gradient,
  .games__title,
  .advantages__intro h2,
  .gallery__intro h2,
  .contact__copy h2 { font-size: 36px; }

  .site-header__inner { flex-direction: column; gap: 16px; }
  .nav-primary { flex-wrap: wrap; justify-content: center; }

  .advantages__row { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item { height: 220px; }

  .games { padding: 40px 20px; }
  .games__grid { grid-template-columns: repeat(2, 1fr); }

  .btn-gradient { padding: 18px 28px; }

  .site-footer__inner { flex-direction: column; }
  .site-footer__social { align-self: flex-start; }

  .cookies { padding: 16px; }
  .cookies__card { padding: 28px 24px 24px; border-radius: 24px; }
  .cookies__title { font-size: 24px; }
  .cookies__icon { width: 56px; height: 56px; margin-bottom: 18px; }
  .cookies__btn { padding: 18px 20px; font-size: 14px; }
}

@media (max-width: 480px) {
  .games__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 32px; }
  .site-footer__social a { width: 60px; height: 60px; }
}
