:root {
  --bg: #1C1917;
  --surface: #292524;
  --text: #FAFAF9;
  --muted: #A8A29E;
  --primary: #92400E;
  --secondary: #CA8A04;
  --accent: #65A30D;
  --border: rgba(250,250,249,0.12);
  --font-body: "Courier New", Courier, monospace;
  --font-heading: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --neon: #65A30D;
  --max: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(146, 64, 14, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(101, 163, 13, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #1C1917 0%, #0c0a09 100%);
  position: relative;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

body::after {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 8999;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

.detective {
  letter-spacing: 0.04em;
}

.cyberpunk {
  text-shadow: 0 0 12px rgba(101, 163, 13, 0.35);
}

.gloomy {
  filter: contrast(1.08) brightness(0.96);
}

.cinematic {
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.45);
}

.mystery {
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--secondary);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.disclosure-wrap {
  padding: 10px 16px 0;
  position: relative;
  z-index: 2;
}

.disclosure-box {
  max-width: 800px;
  margin: 10px auto;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--muted);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
  color: var(--text);
  border-radius: 0;
}

.trust-box {
  max-width: 800px;
  margin: 10px auto;
  padding: 8px 16px;
  background: rgba(41, 37, 36, 0.85);
  border: 1px solid rgba(168, 162, 158, 0.45);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
  color: var(--muted);
  border-radius: 0;
  letter-spacing: 0.06em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 800;
  background: rgba(28, 25, 23, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  height: 50px;
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-lockup img {
  width: 32px;
  height: 40px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-desktop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  opacity: 0.6;
  color: var(--text);
  position: relative;
  transition: opacity 0.2s ease;
}

.nav-desktop a:hover,
.nav-desktop a:focus {
  opacity: 1;
  color: var(--neon);
}

.nav-desktop a svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.nav-desktop a[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 10px;
  padding: 4px 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
}

.nav-desktop a[data-tip]:hover::after,
.nav-desktop a[data-tip]:focus::after {
  opacity: 1;
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 8px;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--text);
  width: 100%;
}

.nav-drawer {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px 20px;
  z-index: 799;
}

.nav-drawer.is-open {
  display: block;
}

.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-drawer a {
  display: block;
  padding: 10px 12px;
  color: var(--text);
  border: 1px solid transparent;
  font-size: 0.95rem;
}

.nav-drawer a:hover {
  border-color: var(--border);
  background: rgba(250, 250, 249, 0.04);
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }
  .burger {
    display: none;
  }
  .nav-drawer {
    display: none !important;
  }
}

.scanlines {
  position: relative;
  overflow: hidden;
}

.scanlines::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(101, 163, 13, 0.03) 2px,
    rgba(101, 163, 13, 0.03) 4px
  );
  animation: glitchy-scan 8s linear infinite;
  opacity: 0.6;
}

@keyframes glitchy-scan {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(24px);
  }
}

@keyframes pulse-neon {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

@keyframes flicker-edge {
  0%,
  92%,
  100% {
    opacity: 1;
  }
  93% {
    opacity: 0.65;
  }
  95% {
    opacity: 1;
  }
}

.hero {
  padding: 48px 16px 56px;
  background: var(--bg);
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-left: -12px;
  padding-left: 0;
  max-width: 16ch;
  color: var(--text);
  animation: flicker-edge 6s infinite;
}

.hero .subtitle {
  margin-top: 18px;
  margin-left: 48px;
  max-width: 42ch;
  color: var(--muted);
  font-size: 1rem;
}

.hero-meta {
  margin-top: 24px;
  margin-left: 48px;
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 700px) {
  .hero h1 {
    margin-left: 0;
    text-align: center;
    max-width: none;
  }
  .hero .subtitle,
  .hero-meta {
    margin-left: 0;
    text-align: center;
    max-width: none;
  }
}

.section {
  padding: 56px 16px;
  position: relative;
  z-index: 1;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  color: var(--text);
}

.section p {
  color: var(--muted);
  margin-bottom: 12px;
}

.offers {
  position: relative;
  background-color: var(--surface);
  background-image:
    linear-gradient(rgba(28, 25, 23, 0.82), rgba(28, 25, 23, 0.9)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

.offers-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .offers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.offer-card {
  background: #12100f;
  border: 1px solid rgba(250, 250, 249, 0.14);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.offer-card:hover {
  border-color: rgba(101, 163, 13, 0.55);
  transform: translateY(-2px);
}

.offer-logo-wrap {
  width: 120px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.offer-logo-wrap .offer-logo,
.offer-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: none;
}

.offer-card .offer-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #FAFAF9;
  text-transform: uppercase;
}

.offer-card .offer-bonus {
  color: #FACC15;
  font-size: clamp(0.75rem, 2.4vw, 0.95rem);
  font-weight: 700;
  line-height: 1.35;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.offer-card .offer-terms {
  font-size: 11px;
  color: #A8A29E;
}

.offer-card .offer-desc {
  font-size: 12px;
  color: #78716C;
  margin: 0;
}

.offer-card .offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 10px 18px;
  background: #65A30D;
  color: #0c0a09;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  width: 100%;
  text-decoration: none;
}

.offer-card .offer-cta:hover {
  background: #84CC16;
  color: #0c0a09;
}

.decor-img {
  max-width: min(500px, 100%);
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: cover;
}

.decor-wrap {
  max-width: 100%;
  overflow: hidden;
  width: 100%;
}

@media (max-width: 480px) {
  .decor-wrap {
    max-width: 100%;
    overflow: hidden;
  }
  .decor-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
  }
  .offer-logo-wrap {
    width: 100px;
    height: 58px;
  }
  .offer-logo-wrap .offer-logo,
  .offer-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }
}

.site-footer {
  background: #0c0a09;
  border-top: 1px solid var(--border);
  padding: 40px 16px 28px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-brand img {
  width: 36px;
  height: 44px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 20px;
  list-style: none;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.footer-badges a,
.footer-badges span {
  display: inline-flex;
}

.footer-badges img {
  height: 42px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.footer-company {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-risk {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
  max-width: 70ch;
}

.footer-mx {
  font-size: 11px;
  color: rgba(168, 162, 158, 0.9);
  line-height: 1.55;
  max-width: 75ch;
  margin-bottom: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.footer-copy {
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
}

.age-overlay,
.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.78);
}

.age-overlay[hidden],
.cookie-overlay[hidden] {
  display: none !important;
}

.age-modal,
.cookie-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  max-width: 420px;
  width: 100%;
  padding: 24px;
  text-align: center;
}

.age-modal h2,
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.age-modal p,
.cookie-modal p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.btn {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--primary);
  color: var(--text);
  padding: 10px 16px;
  font-family: var(--font-body);
  cursor: pointer;
  font-size: 0.9rem;
}

.btn-accent {
  background: var(--accent);
  color: #0c0a09;
  border-color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: var(--muted);
}

.legal-page {
  padding: 40px 16px 64px;
  position: relative;
  z-index: 1;
}

.legal-page .section-inner {
  max-width: 800px;
}

.legal-page h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.legal-page h2 {
  font-size: 1.2rem;
  margin: 28px 0 10px;
  color: var(--secondary);
}

.legal-page h3 {
  font-size: 1rem;
  margin: 18px 0 8px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  margin-bottom: 10px;
}

.legal-page ul {
  padding-left: 1.25rem;
  margin-bottom: 12px;
}

.contact-form {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 480px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-error {
  color: #F87171;
  font-size: 12px;
  display: none;
}

.form-error.is-visible {
  display: block;
}

.form-success {
  padding: 20px;
  border: 1px solid var(--accent);
  background: rgba(101, 163, 13, 0.1);
  color: var(--text);
  display: none;
}

.form-success.is-visible {
  display: block;
}

.topic-hero {
  padding: 40px 16px 32px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(146, 64, 14, 0.25), transparent 60%);
}

.topic-content {
  padding: 40px 16px 64px;
}

.topic-content .section-inner {
  max-width: 860px;
}

.topic-content h2 {
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--secondary);
}

.topic-content p {
  color: var(--muted);
  margin-bottom: 14px;
}

.go-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  text-align: center;
}

.go-box {
  max-width: 420px;
}

.spinner {
  width: 42px;
  height: 42px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  margin: 0 auto 18px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.go-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
}

#AD {
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
  letter-spacing: 0.08em;
}

.cta-link {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 18px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

.cta-link:hover {
  background: rgba(101, 163, 13, 0.12);
  color: var(--neon);
}

.updated {
  font-size: 12px;
  color: var(--muted);
}

.info-block {
  padding: 56px 16px;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
}

.info-block .section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.info-block h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  margin-bottom: 14px;
}

.info-block p {
  color: var(--muted);
  margin-bottom: 12px;
}

.layout-split {
  display: grid;
  gap: 28px;
  align-items: center;
}

@media (min-width: 800px) {
  .layout-split {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.layout-steps {
  counter-reset: step;
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.layout-steps li {
  position: relative;
  padding: 14px 14px 14px 56px;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  color: var(--muted);
}

.layout-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 14px;
  font-family: var(--font-heading);
  color: var(--neon);
  font-size: 1.2rem;
}

.layout-quote {
  display: grid;
  gap: 20px;
}

.layout-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--secondary);
  border-left: 4px solid var(--primary);
  padding: 12px 0 12px 20px;
  text-transform: uppercase;
  line-height: 1.25;
}

@media (min-width: 800px) {
  .layout-quote {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

.game-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

@media (min-width: 700px) {
  .game-tiles {
    grid-template-columns: repeat(4, 1fr);
  }
}

.game-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 16px 12px;
  text-align: center;
  color: var(--text);
  font-size: 0.85rem;
}

.game-tile strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--accent);
  margin-bottom: 6px;
  font-size: 1rem;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.stat-band div {
  background: rgba(146, 64, 14, 0.25);
  border: 1px solid var(--border);
  padding: 16px 10px;
  text-align: center;
}

.stat-band strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--secondary);
}

.stat-band span {
  font-size: 11px;
  color: var(--muted);
}

@media (max-width: 600px) {
  .stat-band {
    grid-template-columns: 1fr;
  }
}

.zigzag {
  display: grid;
  gap: 20px;
}

.zigzag-row {
  display: grid;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: rgba(41, 37, 36, 0.55);
  border: 1px solid var(--border);
}

@media (min-width: 760px) {
  .zigzag-row {
    grid-template-columns: 140px 1fr;
  }
  .zigzag-row:nth-child(even) {
    direction: rtl;
  }
  .zigzag-row:nth-child(even) > * {
    direction: ltr;
  }
}

.zig-label {
  font-family: var(--font-heading);
  color: var(--neon);
  font-size: 1.1rem;
  text-align: center;
}

.check-rail {
  display: grid;
  gap: 20px;
}

@media (min-width: 800px) {
  .check-rail {
    grid-template-columns: 1fr 280px;
  }
}

.check-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.check-list li {
  padding: 12px 12px 12px 36px;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 16px;
  width: 10px;
  height: 10px;
  background: var(--accent);
}

.rail-panel {
  background: linear-gradient(180deg, rgba(101, 163, 13, 0.12), transparent);
  border: 1px solid var(--border);
  padding: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.timeline {
  display: grid;
  gap: 0;
  margin-top: 16px;
  border-left: 2px solid var(--primary);
  padding-left: 20px;
}

.timeline article {
  position: relative;
  padding: 0 0 22px;
}

.timeline article::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(101, 163, 13, 0.5);
}

.timeline h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--text);
}

.callout-center {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 28px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.35);
}

.callout-center h2 {
  margin-bottom: 14px;
}

.panel-split {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--border);
}

@media (min-width: 800px) {
  .panel-split {
    grid-template-columns: 1fr 1fr;
  }
}

.panel-dark {
  background: #0c0a09;
  padding: 28px 20px;
}

.panel-light {
  background: var(--surface);
  padding: 28px 20px;
}

.bg-decor-band {
  position: relative;
  overflow: hidden;
}

.bg-decor-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
}

#info-3.bg-decor-band::before {
  background-image: url("/images/decorative/decor_1.jpg");
}

.bg-decor-band .section-inner {
  position: relative;
  z-index: 1;
}

.inline-decor {
  margin: 16px 0;
}

.not-found {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 16px;
}

.not-found h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  margin-bottom: 12px;
}
