:root {
  --bg: #09090B;
  --surface: #18181B;
  --text: #FAFAFA;
  --muted: #71717A;
  --primary: #22C55E;
  --secondary: #27272A;
  --accent: #4ADE80;
  --border: rgba(34, 197, 94, 0.3);
  --amber: #FBBF24;
  --danger: #F87171;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  background-image:
    radial-gradient(1100px 480px at 80% -10%, rgba(34, 197, 94, 0.09), transparent 70%),
    radial-gradient(900px 420px at -10% 30%, rgba(74, 222, 128, 0.05), transparent 70%),
    linear-gradient(180deg, #0B0F0C 0%, #09090B 420px);
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, "Cascadia Code", "JetBrains Mono", Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 15px;
  line-height: 1.65;
  padding-bottom: 84px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(250, 250, 250, 0.015) 0 1px, transparent 1px 3px);
  pointer-events: none;
  z-index: 1;
}

main {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

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

a:hover {
  color: var(--primary);
  text-decoration: underline;
}

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

h1, h2, h3 {
  line-height: 1.25;
  letter-spacing: 0.01em;
}

h2 {
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: 10px;
}

p {
  margin-bottom: 12px;
  color: rgba(250, 250, 250, 0.82);
}

ul, ol {
  padding-left: 22px;
  margin-bottom: 14px;
  color: rgba(250, 250, 250, 0.82);
}

li {
  margin-bottom: 6px;
}

code, .mono {
  font-family: inherit;
}

.cmd {
  color: var(--accent);
}

.dim {
  color: var(--muted);
}

.hacker-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  margin-left: 4px;
  vertical-align: -2px;
  background: var(--accent);
  animation: blink 1s steps(1) infinite;
}

.developer-note {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.caret {
  display: inline-block;
  width: 0.6em;
  height: 1.05em;
  margin-left: 3px;
  vertical-align: text-bottom;
  background: var(--accent);
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes typein {
  from { width: 0; }
  to { width: 100%; }
}

.typebox {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  animation: typein 1.4s steps(34) both;
}

.disclosure {
  width: 100%;
  padding: 8px 16px;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  color: #26262B;
  font-weight: 600;
  border: 0;
  background-color: #F4F4F5;
  background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.035) 0 8px, transparent 8px 16px);
  position: relative;
  z-index: 3;
}

.topstrip {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 9, 11, 0.85);
  position: relative;
  z-index: 2;
}

.topstrip .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4px 18px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 12px;
  color: var(--muted);
}

.topstrip .updated {
  color: var(--accent);
}

.topstrip .agebadge {
  color: var(--amber);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.bottomnav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 52px;
  background: #0C0C0F;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 40;
}

.bottomnav .navinner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 2px;
  padding: 4px 10px;
  position: relative;
  min-height: 52px;
}

.navlogo {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  text-decoration: none;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.navlogo img {
  height: 26px;
  width: auto;
}

.navlogo .nl {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--text);
  font-weight: 800;
  white-space: nowrap;
}

.navlink {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 4px 8px;
  color: var(--muted);
  text-decoration: none;
  min-height: 44px;
}

.navlink:hover {
  color: var(--accent);
  text-decoration: none;
}

.navlink .nicon {
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
}

.navlink .nlabel {
  font-size: 10px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.navmore {
  position: relative;
  display: none;
}

.navburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 4px 10px;
  background: none;
  border: 0;
  cursor: pointer;
  min-height: 44px;
}

.navburger span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--accent);
  margin: 2px 0;
}

.navburger .nlabel {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}

.moremenu {
  position: fixed;
  bottom: 64px;
  right: 12px;
  background: var(--secondary);
  border: 1px solid var(--border);
  padding: 6px;
  display: none;
  flex-direction: column;
  min-width: 170px;
  z-index: 45;
}

.moremenu.open {
  display: flex;
}

.hero {
  text-align: center;
  padding: 64px 16px;
  position: relative;
  z-index: 2;
}

.hero .kicker {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px #FFFFFF;
  line-height: 1.05;
}

.hero .sub {
  margin: 22px auto 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 1rem;
}

.hero .subline {
  color: var(--accent);
  font-size: 13px;
  margin-top: 14px;
}

.section {
  position: relative;
  z-index: 2;
  padding: 44px 0;
}

.section .wrap {
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.35), transparent);
}

.secnum {
  color: var(--primary);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.infoblock {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--primary);
  padding: 22px;
}

.infogrid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: start;
}

.infogrid .aside {
  background: var(--secondary);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px;
}

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

.infocard {
  background: var(--secondary);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 14px;
}

.infocard h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.infocard p {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.termframe {
  background: #0B0B0D;
  border: 1px solid var(--border);
  padding: 16px;
  font-size: 0.85rem;
  line-height: 1.9;
  overflow-x: auto;
  white-space: pre;
  color: rgba(250, 250, 250, 0.85);
}

.termframe .tline {
  display: block;
}

.termframe .tlabel {
  color: var(--muted);
}

.termframe .tgood {
  color: var(--primary);
}

.termframe .twarn {
  color: var(--amber);
}

.band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.band > .bandtext {
  padding: 26px;
}

.band > .bandvisual {
  position: relative;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  background-color: var(--surface);
}

.band > .bandvisual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 9, 11, 0.25), rgba(9, 9, 11, 0.75));
}

.band > .bandvisual .caption {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.75);
  border-left: 2px solid var(--accent);
  padding-left: 8px;
}

.stepline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.step {
  flex: 1 1 160px;
  background: var(--secondary);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-top: 2px solid var(--primary);
  padding: 14px;
}

.step .stepn {
  display: block;
  color: var(--accent);
  font-size: 12px;
  margin-bottom: 6px;
  letter-spacing: 0.16em;
}

.step h3 {
  font-size: 0.95rem;
}

.step p {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: var(--muted);
}

.quoteblock {
  border-left: 4px solid var(--primary);
  padding: 18px 22px;
  background: rgba(34, 197, 94, 0.05);
  font-size: 1.05rem;
  color: var(--text);
}

.quoteblock p {
  margin-bottom: 8px;
  color: var(--text);
}

.quoteblock .attr {
  font-size: 0.8rem;
  color: var(--muted);
}

.mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
  margin-top: 18px;
}

.mosaic .mimg {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--surface);
}

.mosaic .mimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 500px;
  max-height: 320px;
}

.mosaic .m1 {
  grid-column: 1 / 3;
}

.mosaic .m2 {
  grid-column: 1;
}

.mosaic .m3 {
  grid-column: 2;
}

.ctalink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 16px;
  border: 1px solid var(--primary);
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.04em;
  background: rgba(34, 197, 94, 0.06);
}

.ctalink:hover {
  background: rgba(34, 197, 94, 0.14);
  text-decoration: none;
  color: var(--primary);
}

.offers {
  position: relative;
  z-index: 2;
  padding: 44px 0;
  background-image: url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

.offers::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 9, 11, 0.94), rgba(9, 9, 11, 0.86));
}

.offers .wrap {
  position: relative;
}

.offergrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.offer-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.offer-logo {
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #FFFFFF;
  margin-bottom: 12px;
}

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

.offer-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.offer-bonus {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  overflow-wrap: break-word;
  margin-bottom: 4px;
}

.offer-terms {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 10px;
}

.offer-desc {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.offer-cta {
  margin-top: auto;
  display: inline-block;
  text-align: center;
  padding: 10px 12px;
  border: 1px solid var(--primary);
  background: rgba(34, 197, 94, 0.1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}

.offer-cta:hover {
  background: rgba(34, 197, 94, 0.22);
  color: var(--text);
  text-decoration: none;
}

.compliance {
  position: relative;
  z-index: 2;
  background: var(--secondary);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 1px dashed var(--border);
  padding: 26px 22px;
  margin: 30px auto 10px;
}

.compliance h2 {
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.compliance ul {
  columns: 2;
  column-gap: 30px;
  font-size: 0.85rem;
}

.compliance li {
  break-inside: avoid;
  margin-bottom: 8px;
}

.sitefooter {
  position: relative;
  z-index: 2;
  background: #0B0B0E;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding: 34px 0 30px;
}

.sitefooter .fbrand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.sitefooter .fbrand .fname {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text);
}

.sitefooter .fbrand .fname em {
  font-style: normal;
  color: var(--primary);
}

.footlogos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footlogos a, .footlogos .fstatic {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footlogos img {
  height: 42px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
}

.fnotice {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 900px;
}

.fnotice strong {
  color: rgba(250, 250, 250, 0.9);
}

.flinks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.fcompany {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.fupdated {
  font-size: 0.78rem;
  color: var(--accent);
}

.fjis {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 12px;
}

.fjis a {
  color: var(--accent);
}

.ageoverlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 7, 0.9);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.ageoverlay.open {
  display: flex;
}

.agebox {
  background: var(--surface);
  border: 1px solid var(--border);
  max-width: 440px;
  width: 100%;
  padding: 28px 24px;
}

.agebox .ah {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.agebox .ah .caret {
  margin-left: 6px;
}

.agebox p {
  font-size: 0.85rem;
  margin-bottom: 10px;
  color: var(--muted);
}

.agebox .agebtns {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.agebox button {
  flex: 1;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 10px;
  cursor: pointer;
  border: 1px solid var(--primary);
  background: rgba(34, 197, 94, 0.12);
  color: var(--accent);
}

.agebox button[data-age-gate="decline"] {
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--muted);
}

.agebox button:hover {
  background: rgba(34, 197, 94, 0.22);
}

.agebox button[data-age-gate="decline"]:hover {
  background: rgba(255, 255, 255, 0.06);
}

.agebox .ajis {
  margin-top: 14px;
  font-size: 11px;
}

.cookiebar {
  position: fixed;
  bottom: 64px;
  left: 0;
  width: 100%;
  z-index: 60;
  background: var(--secondary);
  border-top: 1px solid var(--border);
  display: none;
}

.cookiebar.active {
  display: block;
}

.cookiebar .cwrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  font-size: 0.8rem;
  color: rgba(250, 250, 250, 0.8);
}

.cookiebar .cmsg {
  flex: 1 1 320px;
}

.cookiebar .cbtns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookiebar button {
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 9px 14px;
  cursor: pointer;
  border: 1px solid var(--primary);
  background: rgba(34, 197, 94, 0.12);
  color: var(--accent);
}

.cookiebar button.cookie-reject {
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--muted);
}

.cookiebar a {
  color: var(--accent);
  text-decoration: underline;
}

.pagebar {
  position: relative;
  z-index: 2;
  background: var(--surface);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 34px 0 26px;
}

.pagebar h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.pagebar .psub {
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 0;
}

.pagebar .prompt {
  color: var(--primary);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 10px;
}

.article {
  position: relative;
  z-index: 2;
  padding: 36px 0 20px;
}

.article h2 {
  margin-top: 30px;
}

.article h3 {
  margin-top: 22px;
}

.article p {
  max-width: 820px;
}

.article ul, .article ol {
  max-width: 820px;
}

.statband {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.statband .stat {
  flex: 1 1 140px;
  background: var(--secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--primary);
  padding: 14px;
  text-align: left;
}

.statband .stat .sv {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.statband .stat .sl {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pullquote {
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  background: rgba(34, 197, 94, 0.05);
  padding: 20px 24px;
  margin: 26px 0;
  font-size: 1.05rem;
}

.pullquote p {
  color: var(--text);
  margin-bottom: 0;
}

.minitable {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 0.85rem;
}

.minitable th, .minitable td {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.minitable th {
  background: var(--secondary);
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.minitable td {
  color: rgba(250, 250, 250, 0.82);
}

.callout {
  border: 1px dashed var(--border);
  background: rgba(34, 197, 94, 0.04);
  padding: 16px 18px;
  margin: 20px 0;
  font-size: 0.85rem;
}

.callout p {
  margin-bottom: 0;
  color: rgba(250, 250, 250, 0.85);
}

.contactform {
  max-width: 560px;
  margin-top: 10px;
}

.contactform .field {
  margin-bottom: 16px;
}

.contactform label {
  display: block;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.contactform input, .contactform textarea {
  width: 100%;
  background: #0B0B0D;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 12px;
}

.contactform input:focus, .contactform textarea:focus {
  outline: none;
  border-color: var(--primary);
}

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

.formerror {
  color: var(--danger);
  font-size: 0.78rem;
  margin-top: 6px;
}

.formsuccess {
  border: 1px solid var(--primary);
  background: rgba(34, 197, 94, 0.07);
  padding: 18px;
  color: var(--accent);
  font-size: 0.9rem;
}

.legaldoc {
  position: relative;
  z-index: 2;
  padding: 36px 0 20px;
}

.legaldoc h1 {
  font-size: clamp(1.6rem, 3.6vw, 2.3rem);
  margin-bottom: 18px;
}

.legaldoc h2 {
  margin-top: 26px;
  font-size: 1.15rem;
}

.legaldoc p {
  max-width: 860px;
  font-size: 0.92rem;
}

.legaldoc ul {
  max-width: 860px;
  font-size: 0.92rem;
}

.gopage {
  position: relative;
  z-index: 2;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 16px;
  gap: 18px;
}

.spinner {
  width: 46px;
  height: 46px;
  border: 3px solid rgba(34, 197, 94, 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

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

.gopage .gomsg {
  max-width: 520px;
  font-size: 0.95rem;
  color: rgba(250, 250, 250, 0.85);
}

.gopage .adlabel {
  border: 1px solid var(--amber);
  color: var(--amber);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 4px 10px;
}

.gopage .gonotes {
  font-size: 0.72rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

.gopage .gonotes a {
  color: var(--accent);
}

.notfound {
  position: relative;
  z-index: 2;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 16px;
  gap: 16px;
}

.notfound .code {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px var(--primary);
  line-height: 1;
}

.notfound p {
  max-width: 480px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .offergrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .infogrid {
    grid-template-columns: 1fr;
  }

  .band {
    grid-template-columns: 1fr;
  }

  .band > .bandvisual {
    min-height: 180px;
  }

  .compliance ul {
    columns: 1;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 14px;
  }

  .hero {
    padding: 32px 12px;
  }

  .hero h1 {
    -webkit-text-stroke: 1px #FFFFFF;
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .typebox {
    animation: none;
    white-space: normal;
    width: auto;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .mosaic {
    grid-template-columns: 1fr;
  }

  .mosaic .m1, .mosaic .m2, .mosaic .m3 {
    grid-column: auto;
  }

  .mosaic .mimg img {
    max-height: 200px;
  }

  .navinner > .navlink {
    display: none;
  }

  .navinner > .navlink.navshow {
    display: flex;
  }

  .navlogo {
    display: none;
  }

  .moremenu .navlink {
    display: flex;
  }

  .navburger {
    display: flex;
  }

  .navmore {
    display: block;
  }

  .bottomnav .navinner {
    justify-content: flex-start;
    gap: 0;
  }

  .cookiebar {
    bottom: 56px;
  }
}

@media (max-width: 520px) {
  .offergrid {
    grid-template-columns: 1fr;
  }

  .offer-logo {
    height: 56px;
  }

  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .topstrip .wrap {
    justify-content: center;
    text-align: center;
  }

  .agebox .agebtns {
    flex-direction: column;
  }

  .minitable {
    font-size: 0.78rem;
  }

  .minitable th, .minitable td {
    padding: 8px;
  }
}
