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

:root {
  --bg: #0A0A0A;
  --surface: #141414;
  --text: #F5F5F5;
  --muted: #BDBDBD;
  --primary: #A3E635;
  --secondary: #38BDF8;
  --accent: #F43F5E;
  --border: rgba(245, 245, 245, 0.12);
  --white: #FFFFFF;
  --max-width: 1200px;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 300;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

body.no-scroll {
  overflow: hidden;
}

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

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

.disclosure-bar {
  background: #F8F8F8;
  background-image: repeating-linear-gradient(
    45deg,
    #F8F8F8,
    #F8F8F8 8px,
    rgba(0, 0, 0, 0.03) 8px,
    rgba(0, 0, 0, 0.03) 16px
  );
  color: #333333;
  font-size: 12px;
  text-align: center;
  padding: 8px 16px;
  width: 100%;
  line-height: 1.55;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--bg);
  border-bottom: 1px solid rgba(245, 245, 245, 0.06);
  height: 58px;
}

.navbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
}

.navbar__logo img {
  height: 32px;
  width: auto;
}

.navbar__links {
  display: flex;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.navbar__links a {
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.navbar__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.navbar__links a:hover {
  color: var(--text);
  text-decoration: none;
}

.navbar__links a:hover::after {
  transform: scaleX(1);
}

.navbar__toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 40px;
  height: 36px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.navbar__toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
}

.nav-drawer {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100vh;
  background: var(--surface);
  z-index: 1100;
  transition: left 0.3s ease;
  border-right: 1px solid var(--border);
  padding: 80px 0 24px;
}

.nav-drawer.is-open {
  left: 0;
}

.nav-drawer ul {
  list-style: none;
}

.nav-drawer li {
  border-left: 3px solid transparent;
  transition: border-color 0.2s ease;
}

.nav-drawer li:hover {
  border-left-color: var(--accent);
}

.nav-drawer a {
  display: block;
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: 0.04em;
  padding: 14px 24px;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.hero-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  min-height: 300px;
}

.hero-grid__headline {
  background: var(--white);
  color: var(--bg);
  padding: 40px 32px;
  display: flex;
  align-items: flex-end;
}

.hero-grid__headline h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-grid__image-top {
  background: var(--surface);
  overflow: hidden;
  min-height: 150px;
}

.hero-grid__image-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  max-height: none;
}

.hero-grid__image-bottom {
  background: var(--surface);
  overflow: hidden;
  min-height: 150px;
}

.hero-grid__image-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  max-height: none;
}

.hero-grid__subtitle {
  background: var(--surface);
  padding: 32px;
  display: flex;
  align-items: center;
}

.hero-grid__subtitle p {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

.section-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

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

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.82);
}

.offers-section .section-wrap {
  position: relative;
  z-index: 1;
}

.offers-section .section-title {
  color: var(--white);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.offer-card {
  background: linear-gradient(145deg, #1a1a1a 0%, #111111 100%);
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s ease;
}

.offer-card:hover {
  border-color: rgba(163, 230, 53, 0.35);
}

.offer-card__logo-wrap {
  width: 180px;
  height: 84px;
  background: #FFFFFF;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.offer-card__bonus-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-card__bonus {
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  word-break: break-word;
  overflow-wrap: break-word;
}

.offer-card__terms {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.offer-card__desc {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.offer-card__cta {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  margin-top: auto;
}

.offer-card__cta:hover {
  background: var(--primary);
  color: var(--bg);
  text-decoration: none;
}

.info-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.info-section:nth-child(even) {
  background: var(--surface);
}

.layout-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.layout-split__visual {
  display: flex;
  justify-content: center;
}

.decor-img {
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.layout-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.stat-box {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 24px 16px;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 6px;
}

.stat-box span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.layout-editorial {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
}

.layout-editorial__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  align-self: start;
}

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

.info-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 24px;
}

.info-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--primary);
}

.info-card p {
  font-size: 14px;
  color: var(--muted);
}

.layout-list-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 24px 0;
}

.layout-list-cols ul {
  list-style: none;
}

.layout-list-cols li {
  padding: 10px 0 10px 20px;
  border-left: 2px solid var(--primary);
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--muted);
}

.layout-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 24px 0;
}

.timeline-item {
  padding: 20px 0 20px 24px;
  border-left: 2px solid var(--border);
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 24px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.layout-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0;
}

.checklist-col ul {
  list-style: none;
}

.checklist-col li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.layout-games {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.game-tile {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 28px 12px;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.game-tile:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.layout-magazine {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 40px;
  align-items: start;
}

.pull-quote {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--primary);
  border-left: 3px solid var(--primary);
  padding: 16px 0 16px 24px;
  line-height: 1.5;
}

.layout-band {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 32px;
  margin-top: 20px;
}

.layout-band p {
  font-size: 14px;
  color: var(--muted);
}

.cta-link {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 28px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, color 0.2s ease;
}

.cta-link:hover {
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
}

.info-section p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 15px;
}

.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
  margin-top: auto;
}

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

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer__logo {
  height: 32px;
  width: auto;
  margin-bottom: 12px;
}

.footer__tagline {
  font-size: 13px;
  color: var(--muted);
  max-width: 280px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.footer__links a {
  color: var(--muted);
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--primary);
  text-decoration: none;
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.footer__badges img {
  height: 40px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer__badges a:hover img {
  opacity: 1;
}

.footer__legal {
  padding: 24px 0 16px;
}

.footer__legal p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

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

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate.is-hidden {
  display: none;
}

.age-gate__box {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
  max-width: 440px;
  text-align: center;
}

.age-gate__box h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.age-gate__box p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.btn--primary {
  background: var(--primary);
  color: var(--bg);
}

.btn--secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  z-index: 1500;
  padding: 20px 24px;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__inner p {
  font-size: 13px;
  color: var(--muted);
  flex: 1;
  min-width: 240px;
}

.cookie-banner__inner a {
  color: var(--primary);
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  background: var(--white);
  color: var(--bg);
  padding: 64px 0 48px;
}

.page-hero__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.page-content h1 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 24px;
}

.page-content h2 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin: 32px 0 16px;
  color: var(--primary);
}

.page-content h3 {
  font-size: 1rem;
  font-weight: 500;
  margin: 20px 0 10px;
}

.page-content p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 15px;
}

.page-content ul {
  margin: 12px 0 20px 20px;
  color: var(--muted);
  font-size: 15px;
}

.page-content li {
  margin-bottom: 8px;
}

.contact-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form.is-hidden {
  display: none;
}

.form-group label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--sans);
}

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

.form-error {
  color: var(--accent);
  font-size: 12px;
  margin-top: 6px;
  min-height: 18px;
}

.contact-success {
  background: var(--surface);
  border: 1px solid var(--primary);
  padding: 24px;
  color: var(--primary);
  font-size: 15px;
  margin-top: 24px;
}

.contact-success.is-hidden {
  display: none;
}

.sub-hero-strip {
  background: var(--white);
  color: var(--bg);
  padding: 56px 24px;
  text-align: center;
}

.sub-hero-strip h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto 16px;
}

.sub-hero-strip p {
  font-size: 14px;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
}

.sub-layout-sidebar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
}

.sub-sidebar {
  border-right: 1px solid var(--border);
  padding-right: 32px;
}

.sub-sidebar nav {
  position: sticky;
  top: 80px;
}

.sub-sidebar a {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.sub-sidebar a:hover {
  color: var(--primary);
  text-decoration: none;
}

.sub-body h2 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 36px 0 16px;
  color: var(--text);
}

.sub-body h3 {
  font-size: 1rem;
  margin: 24px 0 12px;
  color: var(--secondary);
}

.sub-body p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.7;
}

.sub-body ul {
  margin: 12px 0 20px 20px;
  color: var(--muted);
}

.sub-body li {
  margin-bottom: 8px;
}

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

.sub-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px;
  text-align: center;
}

.sub-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--primary);
  font-weight: 400;
}

.sub-stat span {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sub-image-rail {
  float: right;
  max-width: 280px;
  margin: 0 0 20px 32px;
}

.sub-image-rail img {
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.sub-split {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.sub-split__content h2 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin: 28px 0 14px;
}

.sub-split__content p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 15px;
}

.sub-split__visual {
  background: var(--surface);
  border: 1px solid var(--border);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.sub-mosaic {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.sub-mosaic__header {
  text-align: center;
  margin-bottom: 40px;
}

.sub-mosaic__header h1 {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.sub-mosaic__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.sub-mosaic__panel {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
}

.sub-mosaic__panel h2 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--primary);
}

.sub-mosaic__panel p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.sub-columns {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.sub-columns__intro {
  max-width: 640px;
  margin-bottom: 40px;
}

.sub-columns__intro h1 {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.sub-columns__intro p {
  color: var(--muted);
  font-size: 15px;
}

.sub-columns__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sub-col-block {
  border-top: 2px solid var(--primary);
  padding-top: 20px;
}

.sub-col-block h2 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.sub-col-block p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
}

.sub-callout {
  background: var(--surface);
  border-left: 3px solid var(--secondary);
  padding: 20px 24px;
  margin: 28px 0;
}

.sub-callout p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.sub-info-banner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 24px 0;
  overflow: hidden;
}

.sub-info-banner img {
  width: 100%;
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
  border: 1px solid var(--border);
  display: block;
}

.redirect-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 24px;
}

.redirect-box {
  text-align: center;
  max-width: 420px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 2px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 24px;
}

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

.redirect-box h1 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.redirect-box p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.redirect-ad {
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  margin: 16px 0;
}

.redirect-note {
  font-size: 12px;
  line-height: 1.6;
}

.redirect-note a {
  color: var(--primary);
}

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.error-page h1 {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 16px;
}

.error-page p {
  color: var(--muted);
  margin-bottom: 24px;
}

.is-hidden {
  display: none;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .layout-split,
  .layout-editorial,
  .layout-cards,
  .layout-list-cols,
  .layout-checklist,
  .layout-magazine,
  .layout-stats,
  .layout-games,
  .sub-layout-sidebar,
  .sub-split,
  .sub-mosaic__grid,
  .sub-columns__grid,
  .sub-stat-band {
    grid-template-columns: 1fr;
  }

  .layout-editorial__label {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .sub-image-rail {
    float: none;
    max-width: 100%;
    margin: 0 0 24px;
  }

  .navbar__toggle {
    display: flex;
  }

  .navbar__links {
    display: none;
  }

  .offer-card__logo-wrap {
    width: 160px;
    height: 72px;
  }

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

  .hero-grid {
    padding: 24px 16px;
    overflow: hidden;
  }

  .hero-grid__image-top,
  .hero-grid__image-bottom {
    max-width: 100%;
    overflow: hidden;
  }

  .hero-grid__image-top img,
  .hero-grid__image-bottom img {
    max-width: 100%;
    max-height: 240px;
  }

  .decor-img,
  .sub-image-rail img,
  .sub-split__visual img {
    max-width: 100%;
    max-height: 220px;
  }

  .sub-image-rail {
    max-width: 100%;
  }

  .sub-split__visual {
    max-width: 100%;
    overflow: hidden;
    min-height: 200px;
  }

  .sub-info-banner img {
    max-width: 100%;
    max-height: 200px;
  }
}
