
:root {
  --bg: #070707;
  --bg-2: #0b0b0e;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.05);
  --surface-3: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f7fb;
  --text-muted: #b8bfd2;
  --text-soft: #eaf0ff;

  --pink: #ff335f;
  --cyan: #22c8ff;
  --violet: #6b5cff;
  --magenta: #d34cff;
  --green: #49ff4a;
  --orange: #ff9a00;
  --yellow: #ffe600;
  --coral: #ff6f61;

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --shadow-card: 0 30px 60px -20px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  --shadow-soft: 0 20px 40px -25px rgba(0, 0, 0, 0.7);

  --container: 1376px;
}


*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
background: radial-gradient(84.63% 275.94% at 10% 20%, rgba(255, 51, 95, 0.22) 0%, rgba(255, 51, 95, 0.00) 18%), radial-gradient(92.23% 300.71% at 90% 12%, rgba(34, 200, 255, 0.20) 0%, rgba(34, 200, 255, 0.00) 16%), radial-gradient(76.47% 249.34% at 84% 72%, rgba(73, 255, 74, 0.16) 0%, rgba(73, 255, 74, 0.00) 20%), radial-gradient(89.78% 292.72% at 16% 86%, rgba(211, 76, 255, 0.12) 0%, rgba(211, 76, 255, 0.00) 18%), linear-gradient(180deg, #070707 0%, #0B0B0E 50%, #090909 100%);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, p { margin: 0; }

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


.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 51, 95, 0.22) 0%, rgba(255, 51, 95, 0) 18%),
    radial-gradient(circle at 90% 8%, rgba(34, 200, 255, 0.20) 0%, rgba(34, 200, 255, 0) 18%),
    radial-gradient(circle at 6% 55%, rgba(73, 255, 74, 0.16) 0%, rgba(73, 255, 74, 0) 16%),
    radial-gradient(circle at 95% 60%, rgba(107, 92, 255, 0.22) 0%, rgba(107, 92, 255, 0) 18%),
    radial-gradient(circle at 50% 85%, rgba(211, 76, 255, 0.18) 0%, rgba(211, 76, 255, 0) 16%),
    var(--bg);
  background-attachment: fixed;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(8, 8, 8, 0.72);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(255, 51, 95, 0.6) 0%, rgba(255, 51, 95, 0) 60%),
    radial-gradient(120% 120% at 100% 100%, rgba(107, 92, 255, 0.6) 0%, rgba(107, 92, 255, 0) 60%),
    #0b0b0e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px -10px rgba(255, 51, 95, 0.5);
  display: grid;
  place-items: center;
  position: relative;
}
.brand-mark span {
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  background: linear-gradient(135deg, #fff, #b8bfd2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-name {
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.brand-name--sm { font-size: 18px; }

.site-nav {
  display: flex;
  gap: 26px;
}
.site-nav a {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color .2s ease;
}
.site-nav a:hover { color: var(--text); }


.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.01em;
  text-transform: lowercase;
  width: fit-content;
}
.pill-eyebrow { padding-right: 18px; }
.pill-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--orange) 50%, var(--yellow));
  box-shadow: 0 0 14px rgba(255, 154, 0, 0.6);
}
.pill-dot--violet {
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  box-shadow: 0 0 14px rgba(107, 92, 255, 0.6);
}
.pill-dot--cyan {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 0 14px rgba(34, 200, 255, 0.55);
}

.hero-img--game{
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
border: 1px solid rgba(255, 255, 255, 0.08);
background: rgba(255, 255, 255, 0.05);
padding: 32px;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  color: #fff;
border-radius: 999px;
border: 1px solid rgba(0, 0, 0, 0.00);
background: linear-gradient(90deg, #FF335F 0%, #6B5CFF 100%);
box-shadow: 0 16px 30px 0 rgba(107, 92, 255, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 48px -16px rgba(255, 51, 95, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.12) inset; }
.btn-ghost {
  border-radius: 999px;
  color: var(--text);
  background: var(--surface);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--surface-3); border-color: rgba(255, 255, 255, 0.24); }
.btn-sm { padding: 11px 18px; font-size: 14px; border-radius: 12px; }


.h2 {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text);
}
.h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text);
}
.muted { color: var(--text-muted); font-size: 17px; line-height: 1.55; }
.lede { font-size: clamp(22px, 2.2vw, 30px); line-height: 1.32; color: var(--text-soft); font-weight: 500; letter-spacing: -0.005em; }
.grad-text {
  background: linear-gradient(95deg, #ffe600 0%, #ff9a00 38%, #ff335f 75%, #d34cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}


.hero { padding: 52px 0 60px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 8px 0;
  align-self: center;
}
.hero-title {
  font-size: clamp(56px, 7vw, 98px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.hero-lead { color: var(--text-muted); font-size: 18px; max-width: 620px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(255, 51, 95, 0.12), rgba(107, 92, 255, 0.10) 50%, rgba(34, 200, 255, 0.10));
  padding: 1px;
}
.hero-card {
  position: relative;
  border-radius: calc(var(--radius-xl) - 1px);
  background:
    radial-gradient(80% 60% at 50% 50%, rgba(20, 20, 28, 0.95), rgba(7, 7, 9, 0.95)),
    var(--bg);
  width: 100%;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 40% at 15% 25%, rgba(255, 51, 95, 0.18), transparent 70%),
    radial-gradient(40% 40% at 85% 30%, rgba(73, 255, 74, 0.15), transparent 70%),
    radial-gradient(40% 40% at 25% 80%, rgba(255, 154, 0, 0.16), transparent 70%),
    radial-gradient(40% 40% at 80% 80%, rgba(34, 200, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.hero-tile {
  position: absolute;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
  z-index: 2;
}
.hero-tile img {
  width: 100%;
  height: 100%;
  border-radius: 27px;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}
.hero-tile--tl { left: 4%; top: 12%; width: 210px; height: 210px; transform: rotate(-3deg); }
.hero-tile--tr { right: 4%; top: 18%; width: 236px; height: 236px; transform: rotate(4deg); }
.hero-tile--bl { left: 18%; bottom: 7%; width: 198px; height: 198px; transform: rotate(2deg); }
.hero-tile--br { right: 7%; bottom: 4%; width: 172px; height: 172px; transform: rotate(-3deg); }

.hero-plate {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 396px;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(20, 20, 24, 0.85), rgba(8, 8, 12, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(6px);
  z-index: 3;
}
.hero-plate span {
  font-size: clamp(56px, 6vw, 84px);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, #b8bfd2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


.section { padding: 60px 0; position: relative; }
.section-head {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin-bottom: 40px;
}
.lead-wide { max-width: 760px; font-size: 17px; }


.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}


.panel {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border);
  padding: 36px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.panel-lg { padding: 36px; display: flex; flex-direction: column; gap: 24px; }
.panel-pov {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mini-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mini-card {
  padding: 19px 19px 23px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}
.mini-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.005em;
}
.mini-card p { color: var(--text-muted); font-size: 15px; line-height: 1.5; }

.panel-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.panel-glow--violet { top: -40px; right: -40px; background: radial-gradient(circle, rgba(107, 92, 255, 0.28), rgba(107, 92, 255, 0)); }
.panel-glow--left { left: -40px; right: auto; top: auto; bottom: -40px; }


.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.game-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid var(--border);
  padding: 19px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.game-card:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.18); }

.game-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.genre {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #0a0a0a;
  align-self: center;
  margin-top: 26px;
}
.genre-orange { background: linear-gradient(135deg, #ffe600, #ff9a00); }
.genre-violet { background: linear-gradient(135deg, #8a7bff, #d34cff); color: #fff; }
.genre-yellow { background: linear-gradient(135deg, #fff066, #ffe600); }
.genre-pink   { background: linear-gradient(135deg, #ff6f61, #ff335f); color: #fff; }
.genre-green  { background: linear-gradient(135deg, #b1ff63, #49ff4a); }
.genre-cyan   { background: linear-gradient(135deg, #7befff, #22c8ff); }

.game-logo {
  width: 86px;
  height: 86px;
  border-radius: 22px;
  padding: 11px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border-strong);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.6);
  display: grid;
  place-items: center;
}
.game-logo img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  image-rendering: -webkit-optimize-contrast;
}

.game-card .muted { font-size: 15.5px; }

.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-row li {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
}

.game-foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-soft);
  transition: gap .2s ease, color .2s ease;
}
.link-arrow:hover { color: var(--pink); gap: 12px; }
.link-arrow span { transition: transform .2s ease; }
.link-arrow:hover span { transform: translateX(2px); }
.rating { color: var(--green); font-weight: 700; font-size: 15px; }

.card-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  right: -30px;
  bottom: -40px;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}
.card-glow--orange { background: radial-gradient(circle, rgba(255, 154, 0, 0.5), transparent 70%); }
.card-glow--violet { background: radial-gradient(circle, rgba(211, 76, 255, 0.45), transparent 70%); }
.card-glow--yellow { background: radial-gradient(circle, rgba(255, 230, 0, 0.4), transparent 70%); }
.card-glow--pink   { background: radial-gradient(circle, rgba(255, 51, 95, 0.5), transparent 70%); }
.card-glow--green  { background: radial-gradient(circle, rgba(73, 255, 74, 0.4), transparent 70%); }
.card-glow--cyan   { background: radial-gradient(circle, rgba(34, 200, 255, 0.45), transparent 70%); }


.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  padding: 27px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.why-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: block;
  margin-bottom: 8px;
  opacity: 0.85;
background: linear-gradient(135deg, #FF335F 0%, #22C8FF 100%);
mix-blend-mode: screen;
}

.why-card h4 { font-size: 21px; font-weight: 700; letter-spacing: -0.005em; }
.why-card p { color: var(--text-muted); font-size: 15.5px; line-height: 1.55; }


.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-list details {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0 20px;
  transition: border-color .2s ease, background .2s ease;
}
.faq-list details[open] { background: var(--surface-2); border-color: rgba(255, 255, 255, 0.14); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.005em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 22px;
  height: 22px;
  position: relative;
  display: inline-block;
  flex: 0 0 22px;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--text-soft);
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list details[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-list details p {
  color: var(--text-muted);
  font-size: 15.5px;
  padding: 0 0 22px;
  line-height: 1.6;
  max-width: 620px;
}


.cta-panel {
  position: relative;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border);
  padding: 39px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  overflow: hidden;
}
.cta-copy { display: flex; flex-direction: column; gap: 20px; max-width: 1140px; }
.cta-copy .h2 { letter-spacing: -0.02em; }
.contact-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.contact-row li {
  padding: 11px 15px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 14.5px;
  color: var(--text-soft);
  font-weight: 500;
}
.cta-btn { padding: 17px 24px; }


.site-footer {
  margin-top: 70px;
  padding: 26px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--border);
}
.footer-meta { display: flex; flex-direction: column; gap: 6px; color: var(--text-muted); font-size: 14.5px; margin-top: 20px; }
.footer-meta p { line-height: 1.5; }
.socials { display: flex; gap: 12px; margin-top: 24px; }
.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text-soft);
  font-weight: 700;
  font-size: 14px;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.socials a:hover { background: var(--surface-3); border-color: rgba(255, 255, 255, 0.2); color: var(--text); }

.footer-nav { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 18px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; justify-content: flex-end; }
.footer-links a { color: var(--text-muted); font-size: 14.5px; font-weight: 500; transition: color .2s ease; }
.footer-links a:hover { color: var(--text); }
.copyright { color: var(--text-muted); font-size: 14.5px; }


.cookies {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 56px;
  border-radius: 34px;
  border: 4px solid rgba(178, 153, 255, 0.24);
  background:
    radial-gradient(84.63% 275.94% at 10% 20%, rgba(255, 51, 95, 0.22) 0%, rgba(255, 51, 95, 0.00) 18%),
    radial-gradient(92.23% 300.71% at 90% 12%, rgba(34, 200, 255, 0.20) 0%, rgba(34, 200, 255, 0.00) 16%),
    radial-gradient(76.47% 249.34% at 84% 72%, rgba(73, 255, 74, 0.16) 0%, rgba(73, 255, 74, 0.00) 20%),
    radial-gradient(89.78% 292.72% at 16% 86%, rgba(211, 76, 255, 0.12) 0%, rgba(211, 76, 255, 0.00) 18%),
    linear-gradient(180deg, #070707 0%, #0B0B0E 50%, #090909 100%);
  box-shadow: 0 40px 120px -30px rgba(0, 0, 0, 0.9);
  transition: opacity .35s ease, transform .35s ease;
}
.cookies-inner { display: flex; flex-direction: column; gap: 24px; }
.cookies-title {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}
.cookies-text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 640px;
  margin: 0;
}
.cookies-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.cookies-btn {
  flex: 1 1 0;
  min-width: 220px;
  padding: 18px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  font-family: inherit;
}
.cookies-btn--accept {
  border: none;
  background: linear-gradient(90deg, #FF3A6A 0%, #B544FF 50%, #7C5BFF 100%);
  box-shadow: 0 18px 40px -16px rgba(181, 68, 255, 0.6), 0 8px 24px -10px rgba(255, 58, 106, 0.45);
}
.cookies-btn--accept:hover { transform: translateY(-1px); box-shadow: 0 22px 50px -16px rgba(181, 68, 255, 0.75), 0 10px 28px -10px rgba(255, 58, 106, 0.6); }
.cookies-btn--reject {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.cookies-btn--reject:hover { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.32); }
.cookies.is-hidden { opacity: 0; transform: translateY(20px); pointer-events: none; }

@media (max-width: 720px) {
  .cookies { padding: 32px 24px; border-radius: 28px; left: 12px; right: 12px; bottom: 12px; }
  .cookies-actions { flex-direction: column; }
  .cookies-btn { width: 100%; min-width: 0; }
}


.legal { padding: 60px 0 100px; }
.legal-wrap { max-width: 880px; }
.legal-hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 48px;
}
.legal-title {
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--text);
  margin: 6px 0 0;
}
.legal-updated {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.legal-lead {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 740px;
  margin: 4px 0 0;
}

.legal-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border);
  padding: 36px 40px;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  overflow: hidden;
}
.legal-card > * { position: relative; z-index: 1; }

.legal-h2 {
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 16px;
}
.legal-h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--text);
  margin: 22px 0 10px;
}
.legal-card p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 12px;
}
.legal-card p:last-child { margin-bottom: 0; }
.legal-card strong { color: var(--text-soft); font-weight: 600; }
.legal-card a {
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: color .2s ease, border-color .2s ease;
}
.legal-card a:hover { color: var(--violet); border-bottom-color: var(--violet); }

.legal-list {
  list-style: none;
  margin: 6px 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-list li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}
.legal-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  box-shadow: 0 0 10px rgba(107, 92, 255, 0.55);
}

.legal-meta {
  list-style: none;
  padding: 0;
  margin: 6px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--text-soft);
  font-size: 15.5px;
  line-height: 1.55;
}
.legal-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 15px !important;
  color: var(--text-muted);
}

.legal-company { background: linear-gradient(180deg, rgba(107, 92, 255, 0.10) 0%, rgba(255, 255, 255, 0.02) 100%); border-color: rgba(107, 92, 255, 0.22); }
.legal-contact { background: linear-gradient(180deg, rgba(255, 51, 95, 0.08) 0%, rgba(107, 92, 255, 0.06) 100%); border-color: rgba(211, 76, 255, 0.22); }

.legal-table-wrap {
  margin: 14px 0 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  color: var(--text-soft);
}
.legal-table thead th {
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(107, 92, 255, 0.14), rgba(107, 92, 255, 0.04));
  border-bottom: 1px solid var(--border);
}
.legal-table tbody td {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  line-height: 1.5;
  vertical-align: top;
}
.legal-table tbody td:first-child { color: var(--text-soft); font-weight: 500; }
.legal-table tbody tr:first-child td { border-top: 0; }

@media (max-width: 720px) {
  .legal-table, .legal-table thead, .legal-table tbody, .legal-table tr, .legal-table td, .legal-table th { display: block; }
  .legal-table thead { display: none; }
  .legal-table tbody tr { padding: 10px 0; border-top: 1px solid var(--border); }
  .legal-table tbody tr:first-child { border-top: 0; }
  .legal-table tbody td { padding: 4px 18px; border: 0; }
  .legal-table tbody td:first-child { padding-top: 12px; font-weight: 600; color: var(--text); }
  .legal-table tbody td:last-child { padding-bottom: 12px; }
}

@media (max-width: 720px) {
  .legal { padding: 36px 0 80px; }
  .legal-hero { margin-bottom: 32px; }
  .legal-card { padding: 26px 22px; }
  .legal-h2 { font-size: 22px; }
  .legal-h3 { font-size: 17px; }
}


@media (max-width: 1100px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 460px; }
  .hero-card { min-height: 460px; }
  .split-grid { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; padding: 28px; }
  .cta-btn { justify-self: start; }
  .site-nav { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-nav { text-align: left; align-items: flex-start; }
  .footer-links { justify-content: flex-start; }
  .mini-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .games-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(44px, 11vw, 64px); }
  .panel, .panel-lg { padding: 24px; }
  .hero-tile--tl { width: 130px; height: 130px; }
  .hero-tile--tr { width: 150px; height: 150px; }
  .hero-tile--bl { width: 120px; height: 120px; }
  .hero-tile--br { width: 110px; height: 110px; }
  .hero-plate { width: 70%; }
}
