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

  :root {
    --bg: #F8F0E3;
    --white: #ffffff;
    --ink: #111111;
    --ink-soft: #444444;
    --ink-muted: #888888;
    --accent: #F16B46;
    --surface: #EFE6D4;
    --border: #DDD4C2;
    --published: #2D6A4F;
    --coming: #1B4370;
    --wip: #6B4C1E;
    --radius: 16px;
    --radius-sm: 10px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    background: rgba(248,240,227,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.5px;
    color: var(--ink);
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--ink); }

  .nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px !important;
    font-weight: 600 !important;
    transition: opacity 0.2s !important;
  }

  .nav-cta:hover { opacity: 0.85; }


  .menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 101;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
    border-radius: 999px;
    transition: transform 0.25s, opacity 0.25s;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* HERO */
  .hero {
    padding-top: 160px;
    padding-bottom: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 48px;
    padding-right: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }

  .hero-image-section {
    width: 100%;
    margin: 0 auto 100px;
  }

  .hero-image-wrap {
    width: 100%;
    padding: 0 48px;
  }

  .hero-image-wrap img {
    display: block;
    width: 100%;
    height: 680px;
    object-fit: cover;
    object-position: center center;
    border-radius: 28px;
    border: 1px solid rgba(17,17,17,0.08);
    box-shadow: 0 28px 80px rgba(0,0,0,0.16);
  }

  .hero-headline {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(48px, 6vw, 80px);
    line-height: 1.0;
    letter-spacing: -2px;
    color: var(--ink);
  }

  .hero-headline .accent { color: var(--accent); }

  .hero-sub {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 420px;
    line-height: 1.6;
    font-weight: 300;
  }

  .hero-cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }



  /* BUTTONS */
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
  }

  .btn-primary:hover { opacity: 0.85; }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
  }

  .btn-ghost:hover { color: var(--accent); }

  /* SECTIONS */
  section { padding: 120px 48px; max-width: 1100px; margin: 0 auto; }

  .section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
  }

  .section-headline {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
  }

  /* ABOUT */
  .about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-body {
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.7;
    font-weight: 300;
  }

  .about-body p + p { margin-top: 16px; }

  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 28px 24px;
  }

  .stat-number {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 48px;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--accent);
  }

  .stat-label {
    font-size: 13px;
    color: var(--ink-muted);
    font-weight: 400;
    line-height: 1.4;
  }

  /* GAMES */
  .games-header { margin-bottom: 64px; }
  .games-category { margin-bottom: 72px; }

  .category-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .category-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
  }

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

  .game-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.07);
  }

  .game-img {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .game-img.dark { background: #1a1a1a; color: #555; }

  .game-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .game-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.5px;
  }

  .game-hook {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.5;
    font-weight: 300;
    flex: 1;
  }

  .game-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 100px;
    width: fit-content;
    margin-top: 4px;
  }

  .status-dot { width: 5px; height: 5px; border-radius: 50%; }

  .status-published { background: #D8EDE3; color: var(--published); }
  .status-published .status-dot { background: var(--published); }

  .status-coming { background: #D8E5F0; color: var(--coming); }
  .status-coming .status-dot { background: var(--coming); }

  .status-wip { background: #EDE0CE; color: var(--wip); }
  .status-wip .status-dot { background: var(--wip); }

  /* ANONYMOUS CARD */
  .game-card-anon {
    position: relative;
    min-height: 360px;
    background: var(--ink);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .game-card-anon:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  }

  .anon-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    background: #2a2a2a;
    display: block;
    z-index: 0;
  }

  .anon-body {
    position: relative;
    z-index: 2;
    padding: 24px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.72) 0%,
      rgba(0,0,0,0.36) 42%,
      rgba(0,0,0,0.02) 100%
    );
  }

  .anon-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
  }

  .anon-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 0 2px 18px rgba(0,0,0,0.35);
  }

  .anon-year {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: var(--white);
    line-height: 1;
    letter-spacing: -2px;
    margin-top: 4px;
    text-shadow: 0 2px 18px rgba(0,0,0,0.35);
  }

  /* NEWSLETTER */
  .newsletter-wrap {
    background: var(--surface);
    border-radius: 24px;
    padding: 80px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .newsletter-sub {
    font-size: 15px;
    color: var(--ink-soft);
    font-weight: 300;
    line-height: 1.6;
    margin-top: 12px;
  }

  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .newsletter-input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--bg);
    outline: none;
    transition: border-color 0.2s;
  }

  .newsletter-input:focus { border-color: var(--accent); }
  .newsletter-input::placeholder { color: var(--ink-muted); }
  .newsletter-note { font-size: 12px; color: var(--ink-muted); }

  /* CONTATTI */
  .contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
  }

  .contact-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 36px 32px;
  }

  .contact-card-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
  }

  .contact-card-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 8px;
  }

  .contact-card-body {
    font-size: 14px;
    color: var(--ink-soft);
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.5;
  }

  .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.2s;
  }

  .contact-link:hover { border-color: var(--accent); }

  .social-links { display: flex; gap: 10px; flex-wrap: wrap; }

  .social-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--bg);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    border: 1px solid var(--border);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }

  .social-pill:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

  /* FOOTER */
  footer {
    border-top: 1px solid var(--border);
    padding: 32px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
  }

  .footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: var(--ink);
    text-decoration: none;
  }

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

  .section-divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    max-width: 1100px;
    margin: 0 auto;
  }


  /* PREMIUM MICRO-INTERACTIONS */
  @keyframes fadeSlideUp {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes heroImageIn {
    from {
      opacity: 0;
      transform: scale(1.025);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .hero-headline,
  .hero-sub,
  .hero-cta-row {
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
  }

  .hero-headline { animation-delay: 0.08s; }
  .hero-sub { animation-delay: 0.22s; }
  .hero-cta-row { animation-delay: 0.34s; }

  .hero-image-wrap img {
    animation: heroImageIn 1.2s ease forwards;
  }

  nav {
    transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  }

  nav.nav-scrolled {
    padding-top: 12px;
    padding-bottom: 12px;
    background: rgba(248,240,227,0.97);
    box-shadow: 0 8px 30px rgba(17,17,17,0.06);
  }

  .btn-primary {
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  }

  .btn-primary:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(241,107,70,0.28);
  }

  .game-img,
  .anon-img {
    overflow: hidden;
  }

  .game-img img,
  .anon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
  }

  .game-card:hover .game-img img,
  .game-card-anon:hover .anon-img img {
    transform: scale(1.04);
  }

  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      scroll-behavior: auto !important;
      transition-duration: 0.01ms !important;
    }

    .reveal {
      opacity: 1;
      transform: none;
    }
  }


  @media (max-width: 768px) {
    nav { padding: 16px 24px; }

    .menu-toggle { display: block; }

    .nav-links {
      position: fixed;
      top: 68px;
      left: 24px;
      right: 24px;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 16px;
      background: rgba(248,240,227,0.98);
      backdrop-filter: blur(14px);
      border: 1px solid var(--border);
      border-radius: 20px;
      box-shadow: 0 18px 50px rgba(17,17,17,0.12);
      opacity: 0;
      pointer-events: none;
      transform: translateY(-10px);
      transition: opacity 0.25s, transform 0.25s;
    }

    .nav-links.is-open {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .nav-links li { width: 100%; }

    .nav-links a {
      display: block;
      width: 100%;
      padding: 14px 16px;
      font-size: 16px;
      border-radius: 12px;
    }

    .nav-links a:hover {
      background: var(--surface);
    }

    .nav-cta {
      display: block;
      text-align: center;
      margin-top: 8px;
    }
    section { padding: 80px 24px; }
    .hero { padding-top: 120px; padding-bottom: 28px; padding-left: 24px; padding-right: 24px; }
    .hero-image-section { margin-bottom: 64px; }
    .hero-image-wrap { padding: 0 24px; }
    .hero-image-wrap img { height: 360px; border-radius: 20px; }
    .about { grid-template-columns: 1fr; gap: 48px; }
    .newsletter-wrap { grid-template-columns: 1fr; padding: 40px 28px; gap: 32px; }
    .contacts-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    footer { flex-direction: column; gap: 16px; text-align: center; padding: 32px 24px; }
  }

  .buy-link {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.2s;
    margin-top: 4px;
  }
  .buy-link:hover { border-color: var(--accent); }

.game-card{
  position:relative;
  overflow:hidden;
}
.game-card .game-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.game-card .game-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.game-card .game-body.overlay{
  position:relative;
  z-index:2;
  min-height:360px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:24px;
  background:linear-gradient(to top,rgba(0,0,0,.72),rgba(0,0,0,.35) 45%,rgba(0,0,0,0));
}
.game-card .game-body.overlay .game-title,
.game-card .game-body.overlay .game-hook,
.game-card .game-body.overlay .game-status{
  color:#fff;
}
.game-card .game-body.overlay .game-status{
  border-color:rgba(255,255,255,.25);
  background:rgba(255,255,255,.12);
}

/* UNIFIED GAME CARDS */
.games-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.game-card,
.game-card-anon {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.game-card .game-img,
.game-card-anon .anon-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  display: block;
}

.game-card .game-img img,
.game-card-anon .anon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.game-card:hover .game-img img,
.game-card-anon:hover .anon-img img {
  transform: scale(1.05);
}

.game-card .game-body,
.game-card-anon .anon-body {
  position: relative;
  z-index: 2;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.76) 0%,
    rgba(0,0,0,0.42) 46%,
    rgba(0,0,0,0.02) 100%
  );
}

.game-card .game-title,
.game-card .game-hook,
.game-card .game-status,
.game-card-anon .anon-title,
.game-card-anon .anon-year,
.game-card-anon .anon-eyebrow {
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}

.game-card .game-hook {
  color: rgba(255,255,255,0.82);
}

.game-card .game-status {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
}

.game-card .status-dot {
  background: var(--white);
}

.anon-eyebrow {
  color: rgba(255,255,255,0.72);
}

@media (max-width: 768px) {
  .game-card,
  .game-card-anon {
    min-height: 380px;
  }

  .game-card .game-body,
  .game-card-anon .anon-body {
    min-height: 380px;
  }
}

/* FINAL CARD TEXT POSITION FIX */
.game-card,
.game-card-anon {
  position: relative;
  overflow: hidden;
}

.game-card .game-img,
.game-card-anon .anon-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.game-card .game-img img,
.game-card-anon .anon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.game-card .game-body,
.game-card-anon .anon-body {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  min-height: 100% !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  gap: 8px !important;
  padding: 24px !important;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.42) 42%,
    rgba(0,0,0,0.02) 100%
  ) !important;
}

.game-card .game-title,
.game-card .game-hook,
.game-card .game-status,
.game-card-anon .anon-title,
.game-card-anon .anon-year,
.game-card-anon .anon-eyebrow {
  color: var(--white) !important;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}

.game-card .game-hook {
  color: rgba(255,255,255,0.84) !important;
  flex: 0 0 auto !important;
  margin: 0 0 4px 0 !important;
}

.game-card .game-status {
  margin-top: 4px !important;
  background: rgba(255,255,255,0.14) !important;
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
}

.game-card .status-dot {
  background: var(--white) !important;
}


/* FINAL PREMIUM POLISH */
:root {
  --ease-out: cubic-bezier(.16,1,.3,1);
}

.nav-logo,
.nav-links a,
.btn-primary,
.social-pill,
.contact-link,
.buy-link {
  will-change: transform;
}

.nav-logo {
  transition: transform .25s var(--ease-out), color .25s var(--ease-out);
}

.nav-logo:hover {
  transform: translateY(-1px);
  color: var(--accent);
}

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: translateX(-120%);
  transition: transform .55s var(--ease-out);
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

.hero-image-wrap {
  perspective: 1200px;
}

.hero-image-wrap img {
  transform-origin: center;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}

.hero-image-wrap:hover img {
  transform: scale(1.012);
  box-shadow: 0 34px 90px rgba(0,0,0,0.19);
}

.game-card,
.game-card-anon,
.stat-card,
.contact-card,
.newsletter-wrap {
  transition:
    transform .35s var(--ease-out),
    box-shadow .35s var(--ease-out),
    border-color .35s var(--ease-out);
}

.game-card:hover,
.game-card-anon:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 60px rgba(0,0,0,.16);
}

.stat-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0,0,0,.08);
}

.nav-links a {
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease-out);
}

.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.game-card .game-title,
.game-card-anon .anon-title {
  transition: transform .35s var(--ease-out);
}

.game-card:hover .game-title,
.game-card-anon:hover .anon-title {
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .hero-image-wrap:hover img,
  .game-card:hover,
  .game-card-anon:hover,
  .stat-card:hover,
  .contact-card:hover,
  .game-card:hover .game-title,
  .game-card-anon:hover .anon-title {
    transform: none;
  }
}


/* OFFICIAL QBRO LOGO */
.nav-logo {
  display: inline-flex;
  align-items: center;
  height: 32px;
}

.nav-logo img {
  display: block;
  height: 28px;
  width: auto;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  font-size: 0;
}

.footer-logo::before {
  content: "";
  display: block;
  width: 74px;
  height: 25px;
  background: url("../images/qbro-logo.png") center / contain no-repeat;
}

@media (max-width: 768px) {
  .nav-logo img {
    height: 24px;
  }
}


/* LEGAL PAGES + COOKIE CONSENT */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.footer-links a {
  font-size: 13px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .2s;
}

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

.footer-copy {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--ink-muted);
}

.legal-page {
  max-width: 840px;
  margin: 0 auto;
  padding: 160px 48px 96px;
}

.legal-page h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.legal-page h2 {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 48px 0 16px;
}

.legal-page p,
.legal-page li {
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.75;
}

.legal-page ul {
  padding-left: 22px;
  margin-top: 12px;
}

.legal-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  margin: 32px 0;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  max-width: 900px;
  margin: 0 auto;
  padding: 18px;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  background: rgba(248,240,227,0.96);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 20px 70px rgba(0,0,0,.16);
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-copy strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  margin-bottom: 4px;
}

.cookie-copy p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s, opacity .2s, background .2s;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-primary {
  background: var(--accent);
  color: var(--white);
}

.cookie-secondary {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--border);
}

@media (max-width: 768px) {
  .site-footer {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    text-align: center;
  }

  .footer-brand,
  .footer-links {
    align-items: center;
    justify-content: center;
  }

  .legal-page {
    padding: 120px 24px 72px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
  }
}


/* QBRO CUSTOM NEWSLETTER + PHP/BREVO BRIDGE */
.qbro-newsletter-form {
  position: relative;
}

.qbro-newsletter-form .qbro-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.qbro-newsletter-submit[disabled] {
  opacity: .82;
  cursor: wait;
}

.qbro-newsletter-submit.is-success {
  background: #2D6A4F !important;
}

.newsletter-note.is-success {
  color: #2D6A4F !important;
}

.newsletter-note.is-error {
  color: #F16B46 !important;
}


/* GAME DETAIL PAGE — ANTIVERSE */
.game-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.game-card-link .game-card {
  height: 100%;
}

.game-detail-page {
  background: #F8F0E3;
  color: #101010;
}

.antiverse-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(72px, 9vw, 132px) clamp(22px, 5vw, 72px) clamp(56px, 7vw, 92px);
  border-bottom: 1px solid rgba(0,0,0,.11);
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: #0B3B2E;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.antiverse-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(64px, 12vw, 172px);
  line-height: .78;
  letter-spacing: -.07em;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: #07281F;
}

.antiverse-subtitle {
  margin: 0 0 22px;
  font-size: clamp(24px, 3.2vw, 46px);
  line-height: .95;
  color: #0B3B2E;
  letter-spacing: -.04em;
}

.antiverse-lead {
  max-width: 620px;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.45;
  color: rgba(0,0,0,.72);
}

.antiverse-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(11,59,46,.42);
  color: #0B3B2E;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(11,59,46,.06);
}

.antiverse-hero-art {
  border-radius: clamp(28px, 4vw, 58px);
  overflow: hidden;
  background: #111;
  box-shadow: 0 28px 60px rgba(0,0,0,.18);
}

.antiverse-hero-art img {
  width: 100%;
  height: min(68vh, 640px);
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.antiverse-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  align-items: stretch;
  min-height: 560px;
}

.antiverse-strip-img {
  overflow: hidden;
}

.antiverse-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

.antiverse-strip-copy {
  padding: clamp(42px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #102A22;
  color: #F8F0E3;
}

.antiverse-strip-copy .section-headline {
  color: #F8F0E3;
}

.antiverse-strip-copy p:not(.section-label) {
  max-width: 620px;
  color: rgba(248,240,227,.76);
  font-size: 18px;
  line-height: 1.55;
}

.antiverse-section {
  padding: clamp(56px, 7vw, 96px) clamp(22px, 5vw, 72px);
}

.antiverse-mechanics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.antiverse-mechanic-card {
  padding: clamp(26px, 3vw, 38px);
  border-radius: 28px;
  background: rgba(255,255,255,.36);
  border: 1px solid rgba(0,0,0,.1);
}

.mechanic-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: #0B3B2E;
  color: #F8F0E3;
  font-size: 28px;
  font-weight: 800;
}

.antiverse-mechanic-card:nth-child(2) .mechanic-icon {
  background: #D33B19;
}

.antiverse-mechanic-card:nth-child(3) .mechanic-icon {
  background: #251635;
}

.antiverse-mechanic-card h3,
.antiverse-feature-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -.03em;
}

.antiverse-mechanic-card p,
.antiverse-feature-card p {
  margin: 0;
  color: rgba(0,0,0,.67);
  line-height: 1.55;
}

.antiverse-dark-section {
  padding: clamp(56px, 7vw, 104px) clamp(22px, 5vw, 72px);
  background:
    linear-gradient(rgba(4,14,12,.73), rgba(4,14,12,.82)),
    url("../images/antiverse-cover-placeholder.png") center / cover;
  color: #F8F0E3;
}

.antiverse-dark-section .section-headline {
  color: #F8F0E3;
}

.antiverse-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.antiverse-feature-card {
  min-height: 240px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(5, 23, 19, .72);
  border: 1px solid rgba(103, 210, 134, .32);
  backdrop-filter: blur(8px);
}

.antiverse-feature-card p {
  color: rgba(248,240,227,.72);
}

.antiverse-info-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .55fr);
  background: #F8F0E3;
  border-bottom: 1px solid rgba(0,0,0,.1);
}

.antiverse-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  padding: clamp(38px, 6vw, 86px) clamp(22px, 5vw, 72px);
}

.antiverse-facts div {
  padding: 22px 0;
}

.antiverse-facts span {
  display: block;
  margin-bottom: 9px;
  color: rgba(0,0,0,.52);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}

.antiverse-facts strong {
  display: block;
  color: #0B3B2E;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1;
  letter-spacing: -.04em;
}

.antiverse-character {
  min-height: 410px;
  background: #F05A3A;
  overflow: hidden;
}

.antiverse-character img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.antiverse-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.antiverse-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  background: #111;
}

.antiverse-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(52px, 7vw, 96px) clamp(22px, 5vw, 72px);
  background: #0B3B2E;
  color: #F8F0E3;
}

.antiverse-final-cta h2 {
  margin: 0 0 12px;
  font-family: "Syne", sans-serif;
  font-size: clamp(36px, 5vw, 78px);
  line-height: .92;
  letter-spacing: -.055em;
}

.antiverse-final-cta p:not(.section-label) {
  margin: 0;
  max-width: 650px;
  color: rgba(248,240,227,.72);
  font-size: 18px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .antiverse-hero,
  .antiverse-strip,
  .antiverse-info-band,
  .antiverse-final-cta {
    grid-template-columns: 1fr;
  }

  .antiverse-hero-art img {
    height: 420px;
    min-height: 0;
  }

  .antiverse-mechanics-grid,
  .antiverse-feature-grid,
  .antiverse-facts,
  .antiverse-gallery {
    grid-template-columns: 1fr;
  }

  .antiverse-final-cta .btn-primary {
    width: 100%;
  }
}


/* ANTIVERSE CINEMATIC PAGE */
.game-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.nav-links a.is-active {
  color: var(--orange);
}

.antiverse-cinematic-page main {
  overflow: hidden;
}

.antiverse-cinematic-page .btn-primary {
  background: var(--orange);
  color: #fff;
}

.av-back {
  display: inline-flex;
  margin-bottom: 26px;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.av-back:hover {
  color: white;
}

.av-hero {
  position: relative;
  min-height: 92vh;
  margin: 0;
  padding: clamp(110px, 12vw, 170px) clamp(20px, 5vw, 72px) clamp(42px, 8vw, 96px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 0 0 42px 42px;
}

.av-hero-bg,
.av-full img,
.av-final img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.av-hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 42%, rgba(255, 92, 45, .06), transparent 32%),
    linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.38) 48%, rgba(0,0,0,.18)),
    linear-gradient(0deg, rgba(0,0,0,.52), transparent 48%);
}

.av-hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  color: white;
}

.av-hero h1 {
  margin: 0 0 18px;
  font-family: "Syne", sans-serif;
  font-size: clamp(70px, 16vw, 205px);
  line-height: .72;
  letter-spacing: -0.09em;
  color: white;
}

.av-kicker {
  margin: 0 0 24px;
  font-family: "Syne", sans-serif;
  font-size: clamp(30px, 5vw, 72px);
  line-height: .9;
  letter-spacing: -0.06em;
  color: white;
}

.av-lead {
  max-width: 640px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.78);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.48;
}

.av-actions {
  justify-content: flex-start;
  gap: 14px;
}

.av-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,.42);
  color: white;
}

.av-secondary:hover {
  background: rgba(255,255,255,.08);
  color: white;
  border-color: rgba(255,255,255,.72);
}

.av-statline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(44px, 6vw, 78px) clamp(20px, 5vw, 72px);
}

.av-statline div {
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.av-statline span {
  display: block;
  color: rgba(20,20,20,.45);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 8px;
}

.av-statline strong {
  font-family: "Syne", sans-serif;
  font-size: clamp(26px, 3.6vw, 54px);
  line-height: .88;
  letter-spacing: -0.06em;
  color: var(--green);
}

.av-split,
.av-guardians {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(24px, 5vw, 76px);
  align-items: center;
  padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 72px);
}

.av-copy p:not(.section-label) {
  color: rgba(20,20,20,.66);
  line-height: 1.7;
  max-width: 590px;
}

.av-image,
.av-guardian-images img,
.av-gallery-grid img {
  margin: 0;
  overflow: hidden;
  border-radius: 38px;
}

.av-image img {
  width: 100%;
  min-height: clamp(420px, 48vw, 720px);
  object-fit: cover;
  display: block;
  border-radius: 38px;
}

.av-full,
.av-final {
  position: relative;
  min-height: 78vh;
  margin: clamp(18px, 3vw, 34px) clamp(20px, 5vw, 72px);
  border-radius: 42px;
  overflow: hidden;
}

.av-full::after,
.av-final::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.72), rgba(0,0,0,.12) 55%, rgba(0,0,0,.1));
}

.av-full-text {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 5vw, 72px);
  right: clamp(24px, 5vw, 72px);
  bottom: clamp(28px, 5vw, 72px);
  color: white;
}

.av-full-text h2 {
  max-width: 980px;
  margin: 0;
  color: white;
  font-family: "Syne", sans-serif;
  font-size: clamp(46px, 9vw, 138px);
  line-height: .82;
  letter-spacing: -0.08em;
}

.av-rules {
  padding: clamp(70px, 9vw, 130px) 0;
}

.av-rule-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 4vw, 54px);
  padding: 0 clamp(20px, 5vw, 72px);
}

.av-rule-list article {
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.av-rule-list span {
  display: inline-block;
  margin-bottom: 18px;
  font-family: "Syne", sans-serif;
  font-size: 48px;
  line-height: .9;
  letter-spacing: -0.06em;
  color: var(--orange);
}

.av-rule-list h3 {
  margin: 0 0 14px;
  font-family: "Syne", sans-serif;
  font-size: clamp(28px, 3vw, 48px);
  line-height: .9;
  letter-spacing: -0.06em;
  color: var(--green);
}

.av-rule-list p {
  margin: 0;
  color: rgba(20,20,20,.64);
  line-height: 1.65;
}

.av-guardian-images {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 18px;
}

.av-guardian-images img {
  width: 100%;
  height: clamp(440px, 54vw, 760px);
  object-fit: cover;
  display: block;
}

.av-guardian-images img:first-child {
  margin-top: 72px;
}

.av-gallery {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 72px);
}

.av-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.av-gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.av-final {
  min-height: 560px;
  display: flex;
  align-items: flex-end;
}

.av-final-content {
  position: relative;
  z-index: 2;
  padding: clamp(30px, 5vw, 70px);
  max-width: 760px;
  color: white;
}

.av-final-content .section-headline {
  color: white;
}

.av-final-content p:not(.section-label) {
  color: rgba(255,255,255,.74);
  line-height: 1.65;
  margin-bottom: 28px;
}

@media (max-width: 980px) {
  .av-statline,
  .av-rule-list,
  .av-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .av-guardian-images img:first-child {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .av-hero {
    min-height: 86vh;
    border-radius: 0 0 28px 28px;
  }

  .av-statline,
  .av-rule-list,
  .av-gallery-grid,
  .av-guardian-images {
    grid-template-columns: 1fr;
  }

  .av-full,
  .av-final {
    margin-left: 16px;
    margin-right: 16px;
    border-radius: 28px;
    min-height: 560px;
  }

  .av-image img,
  .av-guardian-images img,
  .av-gallery-grid img {
    border-radius: 28px;
  }
}


/* ANTIVERSE FEEDBACK FIXES */
.antiverse-cinematic-page .games-header,
.antiverse-cinematic-page .av-copy,
.antiverse-cinematic-page .av-full-text,
.antiverse-cinematic-page .av-final-content {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.antiverse-cinematic-page .games-header .section-headline,
.antiverse-cinematic-page .av-copy .section-headline,
.antiverse-cinematic-page .av-copy p,
.antiverse-cinematic-page .av-final-content p {
  margin-left: auto;
  margin-right: auto;
}

.av-hero {
  min-height: auto !important;
  padding: clamp(120px, 13vw, 170px) clamp(20px, 5vw, 72px) clamp(28px, 4vw, 54px) !important;
  display: block !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.av-hero-bg,
.av-hero-shade {
  display: none !important;
}

.av-hero-content {
  max-width: 1040px !important;
  margin: 0 auto !important;
  text-align: center !important;
  color: var(--black) !important;
}

.av-back {
  color: rgba(20,20,20,.55) !important;
  justify-content: center;
}

.av-back:hover {
  color: var(--orange) !important;
}

.av-hero h1 {
  color: var(--black) !important;
  font-size: clamp(72px, 15vw, 190px) !important;
}

.av-kicker {
  color: var(--green) !important;
}

.av-lead {
  color: rgba(20,20,20,.72) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.av-actions {
  justify-content: center !important;
}

.av-secondary {
  color: var(--black) !important;
  border-color: rgba(20,20,20,.22) !important;
}

.av-secondary:hover {
  color: var(--green) !important;
  border-color: var(--green) !important;
  background: transparent !important;
}

.av-hero-image-section {
  padding: 0 clamp(20px, 5vw, 72px) clamp(54px, 7vw, 92px);
}

.av-hero-image-wrap {
  border-radius: 42px;
  overflow: hidden;
  min-height: clamp(440px, 58vw, 760px);
  max-height: 820px;
  box-shadow: 0 28px 80px rgba(0,0,0,.16);
}

.av-hero-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.av-split,
.av-guardians {
  grid-template-columns: 1fr !important;
  text-align: center;
}

.av-image {
  max-width: 1040px;
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
}

.av-image img {
  min-height: clamp(360px, 42vw, 640px) !important;
}

.av-full {
  min-height: clamp(520px, 68vw, 820px) !important;
}

.av-full-text {
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%);
  width: min(1100px, calc(100% - 48px));
  bottom: clamp(30px, 5vw, 72px);
}

.av-full-text h2 {
  margin-left: auto;
  margin-right: auto;
}

.av-rule-list article {
  text-align: center;
}

.av-guardian-images {
  max-width: 1040px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: stretch;
}

.av-guardian-images img,
.av-guardian-images img:first-child {
  margin-top: 0 !important;
  height: clamp(340px, 38vw, 520px) !important;
  object-fit: cover;
}

.av-gallery .games-header {
  text-align: center;
}

.av-gallery-grid img {
  border-radius: 30px;
}

.av-final {
  min-height: clamp(480px, 58vw, 680px) !important;
  align-items: center !important;
  justify-content: center !important;
}

.av-final::after {
  background: linear-gradient(0deg, rgba(0,0,0,.62), rgba(0,0,0,.28)) !important;
}

.av-final-content {
  padding: clamp(30px, 5vw, 70px);
  max-width: 880px !important;
}

.av-final-content .btn-primary {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 720px) {
  .av-hero-image-wrap {
    border-radius: 28px;
    min-height: 420px;
  }

  .av-guardian-images {
    grid-template-columns: 1fr !important;
  }

  .av-guardian-images img,
  .av-guardian-images img:first-child {
    height: 420px !important;
  }
}


/* ANTIVERSE HEIGHT + CTA FIXES */
.antiverse-cinematic-page .av-actions .btn-primary,
.antiverse-cinematic-page .av-final-content .btn-primary {
  background: var(--orange) !important;
  color: #fff !important;
  border-color: var(--orange) !important;
  box-shadow: 0 18px 44px rgba(241, 107, 70, .28);
}

.antiverse-cinematic-page .av-actions .btn-primary:hover,
.antiverse-cinematic-page .av-final-content .btn-primary:hover {
  color: #fff !important;
  transform: translateY(-2px);
}

.av-hero {
  padding-bottom: clamp(42px, 6vw, 84px) !important;
}

.av-hero-image-section {
  padding-left: clamp(20px, 4vw, 56px) !important;
  padding-right: clamp(20px, 4vw, 56px) !important;
  padding-bottom: clamp(90px, 10vw, 150px) !important;
}

.av-hero-image-wrap {
  width: min(92vw, 1320px);
  margin: 0 auto;
  min-height: 0 !important;
  height: clamp(240px, 32vw, 390px) !important;
  max-height: 390px !important;
  border-radius: 38px !important;
}

.av-hero-image-wrap img {
  min-height: 0 !important;
  height: 100% !important;
  object-fit: cover;
}

.av-split,
.av-guardians {
  padding-top: clamp(85px, 10vw, 150px) !important;
  padding-bottom: clamp(85px, 10vw, 150px) !important;
}

.av-image {
  max-width: min(92vw, 1320px) !important;
}

.av-image img {
  min-height: 0 !important;
  height: clamp(240px, 32vw, 390px) !important;
  max-height: 390px !important;
  border-radius: 38px !important;
}

.av-full,
.av-final {
  width: min(92vw, 1320px);
  margin-left: auto !important;
  margin-right: auto !important;
  min-height: 0 !important;
  height: clamp(260px, 34vw, 430px) !important;
  max-height: 430px !important;
  border-radius: 38px !important;
}

.av-full-text {
  bottom: clamp(24px, 4vw, 48px) !important;
}

.av-full-text h2 {
  font-size: clamp(38px, 7vw, 104px) !important;
}

.av-rules {
  padding-top: clamp(90px, 10vw, 150px) !important;
  padding-bottom: clamp(90px, 10vw, 150px) !important;
}

.av-guardian-images {
  max-width: min(92vw, 1100px) !important;
  gap: 20px !important;
}

.av-guardian-images img,
.av-guardian-images img:first-child {
  height: clamp(260px, 30vw, 390px) !important;
  max-height: 390px !important;
  border-radius: 34px !important;
}

.av-gallery {
  padding-top: clamp(90px, 10vw, 150px) !important;
  padding-bottom: clamp(90px, 10vw, 150px) !important;
}

.av-gallery-grid {
  width: min(92vw, 1320px);
  margin-left: auto;
  margin-right: auto;
}

.av-gallery-grid img {
  aspect-ratio: 16 / 10 !important;
  border-radius: 30px !important;
}

.av-final {
  margin-top: clamp(40px, 5vw, 80px) !important;
  margin-bottom: clamp(50px, 7vw, 100px) !important;
}

.av-final-content {
  padding: clamp(22px, 4vw, 54px) !important;
}

@media (max-width: 720px) {
  .av-hero-image-wrap,
  .av-image img,
  .av-full,
  .av-final {
    height: 260px !important;
    border-radius: 28px !important;
  }

  .av-guardian-images img,
  .av-guardian-images img:first-child {
    height: 260px !important;
    border-radius: 28px !important;
  }

  .av-gallery-grid img {
    aspect-ratio: 16 / 10 !important;
  }
}


/* ANTIVERSE FINAL REFINEMENT */
.antiverse-cinematic-page {
  --av-hero-image-h: clamp(210px, 24vw, 320px);
}

/* Force orange newsletter CTA over every previous rule */
.antiverse-cinematic-page a.btn-primary,
.antiverse-cinematic-page .av-actions a.btn-primary,
.antiverse-cinematic-page .av-final-content a.btn-primary {
  background: var(--orange) !important;
  color: #fff !important;
  border-color: var(--orange) !important;
  box-shadow: 0 14px 36px rgba(241, 107, 70, .25) !important;
}

.antiverse-cinematic-page a.btn-primary:hover {
  color: #fff !important;
  background: var(--orange) !important;
}

/* Header aligned like home: compact, centered, image already visible */
.av-hero {
  padding-top: clamp(84px, 9vw, 118px) !important;
  padding-bottom: clamp(16px, 2.2vw, 28px) !important;
}

.av-hero-content {
  width: min(980px, calc(100% - 32px)) !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.av-back {
  margin-bottom: 16px !important;
}

.av-hero .section-label {
  margin-left: auto !important;
  margin-right: auto !important;
}

.av-hero h1 {
  font-size: clamp(54px, 10vw, 128px) !important;
  line-height: .78 !important;
  margin-bottom: 12px !important;
  text-align: center !important;
}

.av-kicker {
  font-size: clamp(24px, 3.8vw, 48px) !important;
  margin-bottom: 16px !important;
  text-align: center !important;
}

.av-lead {
  max-width: 590px !important;
  font-size: clamp(15px, 1.25vw, 18px) !important;
  line-height: 1.45 !important;
  margin-bottom: 22px !important;
  text-align: center !important;
}

.av-actions {
  justify-content: center !important;
}

.av-hero-image-section {
  padding-top: 0 !important;
  padding-bottom: clamp(54px, 7vw, 92px) !important;
}

.av-hero-image-wrap {
  width: min(92vw, 1240px) !important;
  height: var(--av-hero-image-h) !important;
  min-height: 0 !important;
  max-height: 320px !important;
  margin: 0 auto !important;
  border-radius: 36px !important;
}

.av-hero-image-wrap img {
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
}

/* Keep all big media panoramic, not poster-like */
.av-image img,
.av-full,
.av-final {
  height: clamp(210px, 25vw, 330px) !important;
  min-height: 0 !important;
  max-height: 330px !important;
  border-radius: 36px !important;
}

.av-gallery {
  padding-top: clamp(42px, 6vw, 74px) !important;
  padding-bottom: clamp(66px, 8vw, 110px) !important;
}

.av-gallery .games-header {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.av-gallery-grid {
  width: min(92vw, 1240px) !important;
  margin: 0 auto !important;
}

.av-gallery-grid img {
  aspect-ratio: 16 / 7 !important;
  height: auto !important;
  border-radius: 30px !important;
  object-fit: cover !important;
}

.av-split {
  padding-top: clamp(52px, 7vw, 96px) !important;
}

.av-split .av-copy {
  text-align: center !important;
}

.av-split .av-copy p,
.av-split .av-copy .section-headline {
  margin-left: auto !important;
  margin-right: auto !important;
}

.av-rules {
  padding-top: clamp(62px, 8vw, 110px) !important;
  padding-bottom: clamp(70px, 9vw, 120px) !important;
}

.av-rule-list article {
  text-align: center !important;
}

.av-final {
  width: min(92vw, 1240px) !important;
  margin-top: clamp(32px, 5vw, 70px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.av-final-content {
  text-align: center !important;
  max-width: 760px !important;
}

.av-final-content p,
.av-final-content .section-headline {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Remove any leftover layout space for deleted cinematic/guardian sections */
.av-full,
.av-guardians {
  display: none !important;
}

@media (max-width: 720px) {
  .av-hero {
    padding-top: 88px !important;
  }

  .av-hero h1 {
    font-size: clamp(52px, 18vw, 78px) !important;
  }

  .av-hero-image-wrap,
  .av-image img,
  .av-final {
    height: 220px !important;
    border-radius: 28px !important;
  }

  .av-gallery-grid img {
    aspect-ratio: 16 / 9 !important;
  }
}
