/* ==========================================================================
   Dartfighters Greifswald — Option B: Full Custom Redesign
   ========================================================================== */

:root {
  --bg: #080b10;
  --bg-raised: #111820;
  --bg-card: #161f2c;
  --bg-card-hover: #1c2838;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f2f5f9;
  --text-muted: #8b9cb3;
  --navy: #235b83;
  --navy-glow: #3d8fd4;
  --red: #e63946;
  --red-glow: #ff5a67;
  --green: #2ecc71;
  --gold: #f4c430;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --font-display: "Bebas Neue", "Impact", sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --reveal-duration: 0.9s;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

  /*
   * Keep the sponsor marquee moving even when the OS asks for reduced motion.
   * The global rule above would otherwise freeze it into a centered wrap.
   */
  .sponsors__track {
    animation: marquee 40s linear infinite !important;
    animation-duration: 40s !important;
    animation-iteration-count: infinite !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    width: max-content !important;
    max-width: none !important;
    margin: 0 !important;
  }

  /*
   * Keep scroll-reveal slides working even with OS "reduce motion".
   * The global transition kill above would otherwise leave only a static fade.
   */
  .reveal {
    transition-duration: 0.9s !important;
  }

  .hero-reveal {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .reveal--delay-1 { transition-delay: 0.12s !important; }
  .reveal--delay-2 { transition-delay: 0.24s !important; }
  .reveal--delay-3 { transition-delay: 0.36s !important; }
  .reveal--delay-4 { transition-delay: 0.48s !important; }
  .reveal--delay-5 { transition-delay: 0.6s !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10001;
  background: var(--red);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

section[id],
.cta-band[id] {
  scroll-margin-top: 5.5rem;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
}

/* Ambient background */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.ambient__orb--1 {
  width: 500px; height: 500px;
  background: var(--navy);
  top: -100px; right: -100px;
}

.ambient__orb--2 {
  width: 400px; height: 400px;
  background: var(--red);
  bottom: 20%; left: -150px;
  opacity: 0.15;
}

.ambient__orb--3 {
  width: 300px; height: 300px;
  background: var(--green);
  bottom: -50px; right: 20%;
  opacity: 0.1;
}

.site { position: relative; z-index: 1; }

/* Prototype label */
.prototype-tag {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--red), var(--navy));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.5rem 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: opacity 0.3s, transform 0.3s;
}

.prototype-tag.is-hidden {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.prototype-tag__close {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  border-radius: 50%;
  color: #fff;
  font-size: 0.65rem;
  transition: background 0.2s;
}

.prototype-tag__close:hover { background: rgba(0,0,0,0.45); }

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  /* Avoid backdrop-filter here: it creates a containing block so
     position:fixed mobile menus get clipped to the header height. */
  transition: background 0.3s var(--ease), box-shadow 0.3s;
}

.nav.is-scrolled {
  background: rgba(8, 11, 16, 0.94);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.nav__inner {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}

.nav__logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__menu-close-item {
  display: none !important;
}

.nav__menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 3rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(230, 57, 70, 0.95);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.nav__menu-close:hover,
.nav__menu-close:focus-visible {
  background: #ff5a67;
  border-color: transparent;
  outline: none;
}

.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav__links a:hover,
.nav__links a.is-active { color: var(--text); }

.nav__links a.is-active {
  position: relative;
}

.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
}

.nav__cta {
  background: var(--red);
  color: #fff !important;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.nav__cta.is-active::after {
  display: none;
}

.nav__cta:hover {
  background: var(--red-glow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
}

.nav__toggle {
  display: none;
  position: relative;
  z-index: 10002;
  color: var(--text);
  font-size: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
}

body.menu-open .nav {
  z-index: 10001;
}

.nav__toggle:focus-visible {
  outline: 2px solid var(--navy-glow);
  outline-offset: 2px;
}

/* Font Awesome ignores HTML [hidden] without this */
.nav__toggle [hidden] {
  display: none !important;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  --hero-box-opacity: 0.42;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media video,
.hero__media img,
.hero__poster,
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__poster {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}

.hero__video.is-ready {
  opacity: 1;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  /* Lighter scrim so the desktop video stays visible behind the text box */
  background:
    linear-gradient(to top, rgba(8, 11, 16, 0.72) 0%, rgba(8, 11, 16, 0.28) 45%, rgba(8, 11, 16, 0.18) 100%),
    linear-gradient(to right, rgba(8, 11, 16, 0.45) 0%, rgba(8, 11, 16, 0.12) 55%, transparent 100%);
}

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

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1.25rem 1.1rem 1.4rem;
  border-radius: 18px;
  background: rgba(5, 8, 14, var(--hero-box-opacity));
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65);
}

.hero__badge i { color: var(--green); }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  max-width: 14ch;
  color: #fff;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.85),
    0 8px 28px rgba(0, 0, 0, 0.55);
}

.hero__title span {
  /* Solid accent color — gradient fill was nearly invisible on busy video */
  color: #7ec8ff;
  -webkit-text-fill-color: #7ec8ff;
  background: none;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 1),
    0 2px 4px rgba(0, 0, 0, 0.95),
    0 8px 24px rgba(0, 0, 0, 0.65),
    0 0 28px rgba(61, 143, 212, 0.35);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #d5deea;
  max-width: 520px;
  margin: 0 0 2.5rem;
  line-height: 1.7;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.9),
    0 4px 16px rgba(0, 0, 0, 0.55);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
}

.btn--primary {
  background: var(--red);
  color: #fff;
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(230, 57, 70, 0.45);
}

.btn--ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-strong);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.btn:focus-visible {
  outline: 2px solid var(--navy-glow);
  outline-offset: 3px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  color: #fff;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.85),
    0 6px 18px rgba(0, 0, 0, 0.45);
}

.hero__stat-label {
  font-size: 0.78rem;
  color: #c5d0df;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85);
}

.hero .btn-next-section {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  transition: border-color 0.2s;
}

.hero .btn-next-section::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  animation: scrollHint 1.6s ease infinite;
}

@keyframes scrollHint {
  0%, 100% { top: 8px; opacity: 1; }
  50% { top: 20px; opacity: 0.25; }
}

.hero .btn-next-section:hover { border-color: var(--red); }

/* --------------------------------------------------------------------------
   Sections shared
   -------------------------------------------------------------------------- */

.section {
  padding: 6rem 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.section--alt { background: var(--bg-raised); }

.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-glow);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  line-height: 1;
}

.section__desc {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 0 3rem;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   Feature bento grid
   -------------------------------------------------------------------------- */

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.bento__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}

.bento__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--red));
  opacity: 0;
  transition: opacity 0.3s;
}

.bento__card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}

.bento__card:hover::before { opacity: 1; }

.bento__card--large { grid-column: span 7; }
.bento__card--small { grid-column: span 5; }
.bento__card--medium { grid-column: span 4; }

.bento__icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(35, 91, 131, 0.2);
  border-radius: 12px;
  color: var(--navy-glow);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.bento__card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.bento__card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.bento__card--image {
  padding: 0;
  min-height: 280px;
}

.bento__card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.5s var(--ease);
}

.bento__card--image:hover img {
  opacity: 1;
  transform: scale(1.03);
}

/* --------------------------------------------------------------------------
   About split
   -------------------------------------------------------------------------- */

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 480px) 1fr;
  gap: 3rem;
  align-items: center;
}

.about-split__visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 480px;
}

.about-split__visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}

.about-split__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  pointer-events: none;
}

.about-split__quote {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.about-split__text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   League dashboard
   -------------------------------------------------------------------------- */

.league-dash {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.league-dash__tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.35rem;
  padding: 1.25rem 1.25rem 0;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.league-dash__tabs::-webkit-scrollbar { display: none; }

.league-tab {
  flex-shrink: 0;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}

.league-tab:focus-visible {
  outline: 2px solid var(--navy-glow);
  outline-offset: -2px;
}

.league-tab:hover { color: var(--text); }

.league-tab.is-active {
  background: var(--bg-raised);
  color: var(--text);
  border: 1px solid var(--border);
  border-bottom-color: var(--bg-raised);
  margin-bottom: -1px;
}

.league-dash__body { padding: 1.5rem; }

.league-panel { display: none; }
.league-panel.is-active { display: block; animation: fadeUp 0.35s var(--ease); }

.league-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.league-table-wrap .league-table { margin: 0; }
.league-table-wrap .league-table th:first-child,
.league-table-wrap .league-table td:first-child { position: sticky; left: 0; background: var(--bg-card); z-index: 1; }
.league-table-wrap .league-table th:nth-child(2),
.league-table-wrap .league-table td:nth-child(2) { min-width: 180px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.league-panel__header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.league-panel__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.league-panel__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.league-panel__link {
  color: var(--navy-glow) !important;
  font-weight: 600;
  font-size: 0.85rem;
}

.league-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.league-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.league-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
}

.league-table tbody tr {
  transition: background 0.2s;
}

.league-table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}

.league-table tr.is-us {
  background: rgba(35, 91, 131, 0.18);
}

.league-table tr.is-us td:first-child {
  border-left: 3px solid var(--red);
  padding-left: calc(1rem - 3px);
}

.league-table tr.is-us td:nth-child(2) {
  font-weight: 700;
  color: var(--text);
}

.league-table .pos--1 td:first-child::before {
  content: "★ ";
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   News cards
   -------------------------------------------------------------------------- */

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

.news-card--link {
  display: block;
  color: inherit;
}

.news-card--link:focus-visible {
  outline: 2px solid var(--navy-glow);
  outline-offset: 3px;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.news-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: start;
}

.news-card--featured .news-card__title {
  font-size: 1.35rem;
}

.news-card__img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-card);
  position: relative;
}

.news-card--featured .news-card__img {
  aspect-ratio: 16 / 9;
  align-self: start;
  width: 100%;
  min-height: 0;
}

.news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease);
}

.news-card:hover .news-card__img img {
  transform: scale(1.05);
}

.news-card__body { padding: 1.5rem; }

.news-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.news-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 0.75rem;
}

.news-card__excerpt {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Gallery bento
   -------------------------------------------------------------------------- */

.gallery-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 1rem;
}

.gallery-bento__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

.gallery-bento__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-bento__item:hover img { transform: scale(1.06); }

.gallery-bento__item--hero {
  grid-column: span 2;
  grid-row: span 2;
}

/* --------------------------------------------------------------------------
   Sponsors marquee
   -------------------------------------------------------------------------- */

.sponsors {
  --sponsor-logo-size: 92px;
  --sponsor-logo-max-w: calc(var(--sponsor-logo-size) * 2.5);
  --sponsor-tile-w: calc(var(--sponsor-logo-size) * 3.05);
  --sponsor-tile-h: calc(var(--sponsor-logo-size) + 56px);
  --sponsor-tile-pad: calc(var(--sponsor-logo-size) * 0.28);
  padding: 5rem 0 4.75rem;
  border-top: 1px solid rgba(61, 143, 212, 0.18);
  border-bottom: 1px solid rgba(61, 143, 212, 0.18);
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(ellipse 70% 80% at 50% 40%, rgba(35, 91, 131, 0.28), transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 80%, rgba(230, 57, 70, 0.08), transparent 55%),
    linear-gradient(180deg, var(--bg-raised) 0%, var(--bg) 100%);
}

.sponsors__header {
  text-align: center;
  margin-bottom: 2.25rem;
}

.sponsors__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--text);
  text-shadow: 0 0 40px rgba(61, 143, 212, 0.25);
}

.sponsors__viewport {
  position: relative;
  overflow: hidden;
  padding: 0.75rem 0 1rem;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.sponsors__viewport.is-dragging {
  cursor: grabbing;
}

.sponsors__viewport.is-dragging .sponsors__tile,
.sponsors__viewport.is-dragging .sponsors__tile:hover,
.sponsors__viewport.is-dragging .sponsors__tile:hover .sponsors__logo {
  pointer-events: none;
  transform: none !important;
  transition: none !important;
  box-shadow:
    0 0 0 1px rgba(61, 143, 212, 0.35),
    0 0 28px rgba(61, 143, 212, 0.22),
    0 10px 28px rgba(0, 0, 0, 0.35);
}

.sponsors__viewport::before,
.sponsors__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(140px, 14vw);
  z-index: 2;
  pointer-events: none;
}

.sponsors__viewport::before {
  left: 0;
  background: linear-gradient(to right, rgba(8, 11, 16, 0.95), transparent);
}

.sponsors__viewport::after {
  right: 0;
  background: linear-gradient(to left, rgba(8, 11, 16, 0.95), transparent);
}

.sponsors__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1.75rem;
  width: max-content;
  max-width: none;
  margin: 0;
  padding: 0.75rem 0;
  animation: marquee 40s linear infinite;
  will-change: transform;
  transition: none;
}

.sponsors__track:hover { animation-play-state: paused; }

/* JS marquee takes over — disable CSS animation to avoid fighting transforms */
.sponsors__track.is-js-marquee {
  animation: none !important;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.sponsors__tile {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--sponsor-tile-w);
  height: var(--sponsor-tile-h);
  padding: var(--sponsor-tile-pad) calc(var(--sponsor-tile-pad) * 1.2);
  background: linear-gradient(180deg, #ffffff 0%, #eef3f8 100%);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 0 0 1px rgba(61, 143, 212, 0.35),
    0 0 28px rgba(61, 143, 212, 0.22),
    0 10px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.sponsors__tile:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow:
    0 0 0 1px rgba(61, 143, 212, 0.55),
    0 0 40px rgba(61, 143, 212, 0.4),
    0 18px 40px rgba(0, 0, 0, 0.4);
}

.sponsors__tile:focus-visible {
  outline: 2px solid var(--navy-glow);
  outline-offset: 4px;
}

.sponsors__logo {
  max-height: var(--sponsor-logo-size);
  max-width: var(--sponsor-logo-max-w);
  width: auto;
  height: auto;
  object-fit: contain;
  filter: contrast(1.05);
  transition: transform 0.3s var(--ease);
}

.sponsors__tile:hover .sponsors__logo {
  transform: scale(1.06);
}

/* --------------------------------------------------------------------------
   Team
   -------------------------------------------------------------------------- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s var(--ease);
}

.team-card:hover { transform: translateY(-4px); }

.team-card__img {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.team-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1rem 1rem 0.25rem;
  margin: 0;
}

.team-card__role { margin: 0; }

.team-card--photo-only .team-card__img {
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
}

.team-card--photo-only {
  background: transparent;
  border: none;
}

.team-card--photo-only:hover {
  transform: translateY(-4px);
}

.team-card--photo-only .team-card__img img {
  border-radius: var(--radius);
}

.team-card__role {
  font-size: 0.78rem;
  color: var(--navy-glow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-bottom: 1.25rem;
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-band__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(35,91,131,0.3), rgba(230,57,70,0.15)),
    url('https://www.dartfighters-greifswald.de/wp-content/uploads/2024/09/DSC_0519_hintergrund.jpg') center/cover;
  opacity: 0.35;
}

.cta-band__content {
  position: relative;
  z-index: 1;
}

.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.cta-band__text {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 2rem;
}

/* --------------------------------------------------------------------------
   Contact + footer
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.contact-card__spaced { margin-top: 1.5rem; }

.contact-card p { color: var(--text-muted); margin: 0 0 0.5rem; }

.contact-card a {
  color: var(--navy-glow);
  font-weight: 600;
}

.social-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-row a {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}

.social-row a:hover {
  color: var(--text);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}

.footer__legal a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__legal a:hover { color: var(--text); }

/* --------------------------------------------------------------------------
   Legal pages (Impressum, Datenschutz)
   -------------------------------------------------------------------------- */

.legal-page {
  padding: 8rem 0 4rem;
}

.legal-page__content {
  max-width: 760px;
}

.legal-page__content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 2rem;
}

.legal-page__content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 1.25rem;
}

.legal-page__content strong {
  color: var(--text);
}

.legal-page__content a {
  color: var(--navy-glow);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page__back {
  margin-top: 2.5rem;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Twitch live embed
   -------------------------------------------------------------------------- */

.twitch-live[hidden] {
  display: none !important;
}

.twitch-live__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.twitch-live__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(145, 70, 255, 0.2);
  border: 1px solid rgba(145, 70, 255, 0.45);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.twitch-live__badge i {
  color: #ff4d4d;
  font-size: 0.5rem;
  animation: twitchPulse 1.4s ease infinite;
}

@keyframes twitchPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.twitch-live__title {
  margin-top: 0;
}

.twitch-live__desc {
  max-width: 640px;
  margin-inline: auto;
}

.twitch-live__player {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 960px;
  margin-inline: auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: #0e0a14;
  box-shadow: var(--shadow);
}

.twitch-live__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.twitch-live__link-wrap {
  text-align: center;
  margin-top: 1rem;
}

.twitch-live__link-wrap[hidden] {
  display: none !important;
}

.twitch-live__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #bf94ff;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.twitch-live__link:hover { color: #fff; }

.nav__links .nav__live {
  color: #bf94ff;
}

.nav__links .nav__live.is-active {
  color: #fff;
}

.twitch-toast {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 95;
  width: min(360px, calc(100vw - 2.5rem));
  padding: 1.15rem 1.15rem 1rem;
  border-radius: var(--radius);
  background: rgba(14, 10, 20, 0.96);
  border: 1px solid rgba(145, 70, 255, 0.45);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(145, 70, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem) scale(0.98);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}

.twitch-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.twitch-toast[hidden] {
  display: none !important;
}

.twitch-toast__close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}

.twitch-toast__close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.twitch-toast__body {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding-right: 1.5rem;
}

.twitch-toast__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  background: rgba(145, 70, 255, 0.2);
  color: #bf94ff;
  font-size: 1.25rem;
}

.twitch-toast__title {
  margin: 0 0 0.35rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
}

.twitch-toast__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.twitch-toast__cta {
  display: block;
  margin-top: 0.9rem;
  text-align: center;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-pill);
  background: #9146ff;
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s, transform 0.2s;
}

.twitch-toast__cta:hover {
  background: #7c3aed;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .twitch-toast {
    left: 1rem;
    right: 1rem;
    bottom: 5.5rem;
    width: auto;
  }
}

/* --------------------------------------------------------------------------
   Back to top
   -------------------------------------------------------------------------- */

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 22, 32, 0.92);
  color: var(--text);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.75rem);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s, color 0.2s, border-color 0.2s;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  color: #fff;
  border-color: var(--navy-glow);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--navy-glow);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */

.section,
.sponsors,
.cta-band,
.twitch-live {
  overflow-x: hidden;
  overflow-x: clip;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 48px, 0);
  transition:
    opacity var(--reveal-duration) var(--reveal-ease),
    transform var(--reveal-duration) var(--reveal-ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--up {
  transform: translate3d(0, 56px, 0);
}

.reveal--left {
  transform: translate3d(-72px, 24px, 0);
}

.reveal--right {
  transform: translate3d(72px, 24px, 0);
}

.reveal--zoom {
  transform: translate3d(0, 36px, 0) scale(0.92);
}

.reveal--up.is-visible,
.reveal--left.is-visible,
.reveal--right.is-visible,
.reveal--zoom.is-visible {
  transform: none;
}

.reveal--delay-1 { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }
.reveal--delay-3 { transition-delay: 0.36s; }
.reveal--delay-4 { transition-delay: 0.48s; }
.reveal--delay-5 { transition-delay: 0.6s; }

/* Hero copy must paint immediately for LCP — never start at opacity:0 */
.hero-reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-reveal.is-animated {
    animation: heroIn 0.9s var(--reveal-ease) both;
  }
}

@keyframes heroIn {
  from { transform: translate3d(0, 16px, 0); }
  to { transform: translate3d(0, 0, 0); }
}

/* Ordnungen */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.rule-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}

.rule-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}

.rule-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.rule-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 1rem;
  line-height: 1.6;
}

.rule-card__link {
  color: var(--navy-glow);
  font-weight: 600;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.rule-card__link:hover { color: var(--text); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .bento__card--large,
  .bento__card--small,
  .bento__card--medium { grid-column: span 12; }

  .about-split { grid-template-columns: 1fr; }
  .about-split__visual { max-width: 560px; justify-self: center; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card--featured { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-bento { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-bento__item--hero { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section[id], .cta-band[id] { scroll-margin-top: 4.5rem; }

  .nav {
    overflow: visible;
  }

  .nav__toggle { display: flex; align-items: center; justify-content: center; }

  /* When moved to <body> by JS, still works as full-screen overlay */
  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: 100dvh;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
    background: rgba(8, 11, 16, 0.97);
    z-index: 10000;
    margin: 0;
    padding: max(5.5rem, calc(env(safe-area-inset-top, 0px) + 5rem)) 1.5rem max(2rem, env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    list-style: none;
  }

  .nav__links.is-open { display: flex; }

  /* Hide header hamburger while overlay is open so in-menu close is usable */
  body.menu-open .nav__toggle {
    opacity: 0;
    pointer-events: none;
  }

  .nav__menu-close-item {
    display: flex !important;
    position: absolute;
    top: max(1.1rem, env(safe-area-inset-top, 0px));
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: auto;
    max-width: none;
    z-index: 5;
    list-style: none;
  }

  .nav__links li {
    width: 100%;
    max-width: 20rem;
    text-align: center;
    flex-shrink: 0;
  }

  .nav__links a {
    font-size: 1.1rem;
    display: inline-block;
    padding: 0.35rem 0.5rem;
  }

  .nav__links .nav__cta {
    margin-top: 0.5rem;
    padding: 0.85rem 2rem;
    font-size: 1rem;
  }

  .hero {
    min-height: 92svh;
    padding: 7rem 0 4rem;
    background: #05070b;
  }

  /* Slightly smaller video frame on phones for less visual noise */
  .hero__media {
    inset: 4.5rem 0.85rem 18%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  }

  .hero__media::after {
    background:
      linear-gradient(to top, rgba(8, 11, 16, 0.9) 0%, rgba(8, 11, 16, 0.55) 50%, rgba(8, 11, 16, 0.45) 100%),
      linear-gradient(to right, rgba(8, 11, 16, 0.7) 0%, rgba(8, 11, 16, 0.3) 70%, transparent 100%);
  }

  .hero__content {
    z-index: 4;
    width: calc(100% - 1.5rem);
    margin: 0 auto;
    padding: 1.1rem 1rem 1.25rem;
    /* Keep text readable on mobile poster (no video) */
    background: rgba(5, 8, 14, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero__title {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .hero__title span {
    color: #9ad4ff;
    -webkit-text-fill-color: #9ad4ff;
  }

  .hero__stats {
    gap: 1.25rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero__stat-value { font-size: 2rem; }

  .section { padding: 4rem 0; }

  .gallery-bento { grid-template-columns: 1fr; }
  .gallery-bento__item--hero { grid-column: span 1; }

  .league-table { font-size: 0.78rem; }
  .league-table th, .league-table td { padding: 0.6rem 0.65rem; }

  .prototype-tag {
    left: 1rem;
    right: 1rem;
    justify-content: center;
    font-size: 0.62rem;
  }

  .sponsors {
    --sponsor-logo-max-w: calc(var(--sponsor-logo-size) * 2.2);
    --sponsor-tile-w: calc(var(--sponsor-logo-size) * 2.6);
    --sponsor-tile-h: calc(var(--sponsor-logo-size) + 44px);
  }
}