:root {
  --bg: #0a0b0e;
  --bg-elevated: #101218;
  --bg-card: #151922;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f4f5f7;
  --muted: #9aa3b2;
  --liga-a: #e31c23;
  --liga-b: #22c55e;
  --liga-c: #f5c518;
  --radius: 18px;
  --font: "Outfit", system-ui, sans-serif;
  --max: 1140px;
}

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

.galerie-page {
  min-height: 100vh;
}

.galerie-page .footer-strip {
  display: none;
}

.galerie-page.is-hub .footer-meta {
  display: none;
}

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

[hidden] {
  display: none !important;
}

button,
a {
  font-family: inherit;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-left: auto;
}

@media (max-width: 720px) {
  .galerie-page .header-partner {
    display: none;
  }
}

.ghost-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}

.ghost-link:hover {
  color: var(--text);
}

.header-chip {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
}

/* —— Views —— */
.view {
  display: none;
  padding: 2.2rem 0 4rem;
}

.view.is-on {
  display: block;
}

/* —— Rubric —— */
.rubric {
  max-width: 40rem;
  margin: 0 0 1.5rem;
}

.rubric-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.55rem;
}

.rubric-index {
  display: inline-grid;
  place-items: center;
  min-width: 2rem;
  height: 1.55rem;
  padding: 0 0.5rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #0a0b0e;
  background: var(--liga-a);
}

.rubric-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--liga-a) 70%, #c8d0dc);
}

.rubric-title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.55rem, 3.6vw, 2.15rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.rubric-lead {
  margin: 0;
  color: var(--muted);
  max-width: 38rem;
}

/* —— Season switch —— */
.season-switch {
  display: flex;
  gap: 0.4rem;
  padding: 0.35rem;
  width: fit-content;
  margin: 0 0 1.5rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.season-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
}

.season-btn.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.season-btn:hover {
  color: var(--text);
}

/* —— Spieltag-Kacheln (keine Fotos im Hub) —— */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.7rem;
  margin: 0 0 1.5rem;
}

.spt-tile {
  --tile-rim: rgba(255, 255, 255, 0.1);
  appearance: none;
  position: relative;
  container-type: size;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  min-height: 168px;
  padding: 0.7rem 0.45rem 0.85rem;
  border: 1px solid var(--tile-rim);
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 20% 0%, rgba(227, 28, 35, 0.16), transparent 52%),
    radial-gradient(90% 70% at 100% 100%, rgba(245, 197, 24, 0.1), transparent 46%),
    radial-gradient(70% 50% at 50% 80%, rgba(34, 197, 94, 0.08), transparent 50%),
    linear-gradient(180deg, #171b24 0%, #101218 100%);
  color: inherit;
  cursor: pointer;
  text-align: center;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    filter 0.28s ease;
}

.spt-aura {
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 180deg,
    rgba(227, 28, 35, 0.18),
    rgba(34, 197, 94, 0.1),
    rgba(245, 197, 24, 0.16),
    rgba(227, 28, 35, 0.18)
  );
  opacity: 0.35;
  filter: blur(28px);
  pointer-events: none;
  transform: rotate(12deg);
}

.spt-tile:hover:not(:disabled) {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(245, 197, 24, 0.12);
}

.spt-tile.is-wait {
  filter: saturate(0.7);
}

.spt-tile.is-wait:disabled {
  cursor: default;
}

.spt-tile.is-ready {
  --tile-rim: rgba(255, 255, 255, 0.16);
}

.spt-tile.is-now {
  --tile-rim: rgba(227, 28, 35, 0.55);
  box-shadow:
    0 0 0 1px rgba(227, 28, 35, 0.25),
    0 0 22px rgba(227, 28, 35, 0.22),
    0 8px 22px rgba(0, 0, 0, 0.28);
  animation: spt-now-glow 4.8s ease-in-out infinite;
}

@keyframes spt-now-glow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(227, 28, 35, 0.3),
      0 0 18px rgba(227, 28, 35, 0.22);
  }
  33% {
    box-shadow:
      0 0 0 1px rgba(34, 197, 94, 0.32),
      0 0 18px rgba(34, 197, 94, 0.2);
  }
  66% {
    box-shadow:
      0 0 0 1px rgba(245, 197, 24, 0.38),
      0 0 18px rgba(245, 197, 24, 0.22);
  }
}

.spt-badge {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  padding: 0.18rem 0.48rem;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--liga-a);
}

.spt-badge--pdf {
  right: auto;
  left: 0.55rem;
  color: #0a0b0e;
  background: var(--liga-c);
}

.spt-kicker,
.spt-sub,
.spt-meta {
  position: relative;
  z-index: 1;
}

.spt-kicker {
  font-size: clamp(0.55rem, 8cqh, 0.68rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--liga-c) 70%, #fff);
}

.spt-nr {
  position: relative;
  z-index: 1;
  font-family: "Share Tech Mono", ui-monospace, monospace;
  font-size: clamp(1.7rem, 38cqh, 3.1rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.22);
}

.spt-tile.is-ready .spt-nr {
  color: #f4f5f7;
  text-shadow:
    0 0 18px rgba(227, 28, 35, 0.35),
    0 0 28px rgba(245, 197, 24, 0.18);
}

.spt-tile.is-now .spt-nr {
  color: #fff;
}

.spt-sub,
.spt-meta {
  font-size: clamp(0.58rem, 7.5cqh, 0.72rem);
  font-weight: 650;
  color: var(--muted);
  max-width: 92%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spt-sub:empty {
  display: none;
}

.spt-tile.is-ready .spt-meta {
  color: #dfe4ee;
}

.spt-stripes {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  height: 3px;
  z-index: 2;
}

.spt-stripes i {
  flex: 1;
}
.spt-stripes .a {
  background: var(--liga-a);
}
.spt-stripes .b {
  background: var(--liga-b);
}
.spt-stripes .c {
  background: var(--liga-c);
}

@media (prefers-reduced-motion: reduce) {
  .spt-tile.is-now {
    animation: none;
  }
}

/* —— Album view —— */
.back-btn {
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.45rem 0.85rem;
  margin: 0 0 1.25rem;
  border-radius: 999px;
  cursor: pointer;
}

.back-btn:hover {
  color: var(--text);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 0.85rem;
}

.photo-tile {
  appearance: none;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: center;
}

.photo-stage {
  width: 100%;
}

.photo-frame {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  padding: 8px;
  border-radius: 2px;
  background:
    linear-gradient(
      145deg,
      #f0e2a0 0%,
      #c4a44a 12%,
      #3a3f48 20%,
      #161920 50%,
      #4a4550 78%,
      #0c0e12 100%
    );
  box-shadow:
    inset 1px 1px 0 rgba(255, 236, 180, 0.45),
    inset -1px -1px 0 rgba(0, 0, 0, 0.7),
    0 2px 0 #0a0b0e,
    7px 14px 24px rgba(0, 0, 0, 0.5);
  transform: perspective(900px) rotateX(2deg);
  transform-origin: 50% 100%;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.photo-mat {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 3px;
  background: #050608;
  box-shadow:
    inset 0 0 0 1px rgba(245, 197, 24, 0.22),
    inset 0 1px 4px rgba(0, 0, 0, 0.9);
}

.pdf-mark {
  position: absolute;
  left: 0.4rem;
  bottom: 0.4rem;
  z-index: 2;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a0b0e;
  background: var(--liga-c);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.photo-mat img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}

.photo-tile:hover .photo-frame {
  transform: perspective(900px) rotateX(0deg) translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 210, 0.45),
    inset 0 -1px 0 rgba(0, 0, 0, 0.65),
    0 1px 0 rgba(255, 255, 255, 0.1),
    8px 18px 28px rgba(0, 0, 0, 0.55);
}

.photo-plate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
  width: 100%;
  padding: 0 0.2rem;
}

.photo-plate-kicker {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--liga-c) 78%, #fff);
}

.photo-plate-title {
  font-size: clamp(0.78rem, 1.15vw, 0.98rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #f4f5f7;
  text-wrap: balance;
}

.photo-plate-title em {
  font-style: normal;
  font-weight: 700;
  margin: 0 0.18em;
  color: var(--liga-c);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78em;
}

.rubric--album .rubric-title {
  text-transform: uppercase;
  letter-spacing: -0.045em;
}

.carousel {
  display: none;
}

/* —— Lightbox —— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.4rem;
  padding: 2.5rem 0.6rem 1.2rem;
  background: rgba(4, 5, 8, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lb-stage {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.lb-stage img {
  max-height: min(78vh, 860px);
  width: auto;
  max-width: 100%;
  border-radius: 12px;
  object-fit: contain;
}

.lb-stage figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  justify-content: space-between;
  width: min(100%, 720px);
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.lb-dl {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.lb-close,
.lb-prev,
.lb-next {
  appearance: none;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  border-radius: 999px;
}

.lb-close {
  position: absolute;
  top: 0.7rem;
  right: 0.8rem;
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.5rem;
}

.lb-prev,
.lb-next {
  width: 2.6rem;
  height: 2.6rem;
  font-size: 1.6rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  z-index: 90;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: #1b2130;
  border: 1px solid var(--border);
  font-size: 0.88rem;
  font-weight: 650;
}

.toast[hidden] {
  display: none;
}

.galerie-page .site-footer {
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .logo-text {
    font-size: 0.78rem;
  }

  .spt-tile {
    min-height: 150px;
  }
}

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

  .header-chip {
    display: none;
  }

  .season-switch {
    width: 100%;
  }

  .season-btn {
    flex: 1;
    justify-content: center;
    padding: 0.5rem 0.4rem;
    font-size: 0.82rem;
  }
}

/* —— PC: Hub ohne Scroll, alles im ersten Screen —— */
@media (min-width: 900px) {
  .galerie-page.is-hub,
  .galerie-page.is-album {
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .galerie-page.is-hub .site-header,
  .galerie-page.is-album .site-header {
    flex-shrink: 0;
  }

  .galerie-page.is-hub .header-inner,
  .galerie-page.is-album .header-inner {
    min-height: 52px;
  }

  .galerie-page.is-hub .logo-img,
  .galerie-page.is-album .logo-img {
    width: 36px;
    height: 36px;
  }

  .galerie-page.is-hub main,
  .galerie-page.is-album main {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .galerie-page.is-hub #view-hub.is-on,
  .galerie-page.is-album #view-album.is-on {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 0.65rem 0 0.4rem;
  }

  .galerie-page.is-album #view-album.is-on {
    padding: 0.4rem 0 0.2rem;
  }

  .galerie-page.is-hub .hub-wrap,
  .galerie-page.is-album .album-wrap {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    width: min(100% - 2rem, 1180px);
  }

  .galerie-page.is-hub .hub-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem;
    margin: 0 0 0.75rem;
    flex-shrink: 0;
  }

  .galerie-page.is-hub .hub-toolbar .rubric {
    margin: 0;
    max-width: none;
    flex: 1;
    min-width: 0;
  }

  .galerie-page.is-hub .rubric-meta,
  .galerie-page.is-album .rubric-meta {
    margin: 0 0 0.2rem;
  }

  .galerie-page.is-hub .rubric-title {
    font-size: 1.45rem;
    margin: 0 0 0.15rem;
  }

  .galerie-page.is-hub .rubric-lead,
  .galerie-page.is-album .rubric-lead {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .galerie-page.is-hub .season-switch {
    margin: 0;
    flex-shrink: 0;
  }

  .galerie-page.is-hub .season-btn {
    padding: 0.42rem 0.75rem;
    font-size: 0.82rem;
  }

  .galerie-page.is-hub .album-grid {
    flex: 1;
    min-height: 0;
    margin: 0;
    gap: 0.6rem;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .galerie-page.is-hub .spt-tile {
    min-height: 0;
    height: 100%;
    padding: 0.45rem 0.4rem 0.7rem;
  }

  .galerie-page.is-hub .site-footer,
  .galerie-page.is-album .site-footer {
    flex-shrink: 0;
    padding: 0.38rem 0;
    font-size: 0.74rem;
  }

  .galerie-page.is-album .back-btn {
    flex-shrink: 0;
    align-self: flex-start;
    width: auto;
    margin: 0 0 0.2rem;
  }

  .galerie-page.is-album .rubric--album {
    flex-shrink: 0;
    margin: 0;
  }

  .galerie-page.is-album .rubric--album .rubric-lead {
    display: none;
  }

  .galerie-page.is-album .rubric-title {
    font-size: 1.45rem;
    margin: 0 0 0.15rem;
  }

  .galerie-page.is-album .album-wrap {
    width: min(100% - 2rem, 1380px);
  }

  .galerie-page.is-album .photo-grid {
    display: none;
  }

  .galerie-page.is-album .carousel {
    display: flex;
    flex: 1;
    min-height: 0;
    flex-direction: column;
    gap: 0.35rem;
  }

  .galerie-page.is-album .arena {
    position: relative;
    flex: 1;
    min-height: 0;
    container-type: size;
    overflow: hidden;
    isolation: isolate;
  }

  .arena-glow {
    position: absolute;
    left: 50%;
    top: 46%;
    width: min(54cqh, 48%);
    height: min(54cqh, 62%);
    transform: translate(-50%, -50%);
    background: conic-gradient(
      from 200deg,
      rgba(227, 28, 35, 0.42),
      rgba(34, 197, 94, 0.22),
      rgba(245, 197, 24, 0.4),
      rgba(227, 28, 35, 0.42)
    );
    filter: blur(42px);
    opacity: 0.7;
    pointer-events: none;
    animation: arena-spin 14s linear infinite;
  }

  .arena-spot {
    position: absolute;
    inset: -8% 10% 30%;
    background: radial-gradient(
      ellipse 70% 80% at 50% 0%,
      rgba(255, 236, 190, 0.16),
      transparent 68%
    );
    pointer-events: none;
  }

  .arena-floor {
    position: absolute;
    left: 50%;
    bottom: 2%;
    width: 72%;
    height: 22%;
    transform: translateX(-50%);
    background: radial-gradient(
      ellipse at center,
      rgba(245, 197, 24, 0.16),
      rgba(227, 28, 35, 0.05) 42%,
      transparent 70%
    );
    pointer-events: none;
  }

  @keyframes arena-spin {
    to {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }

  .coverflow {
    position: absolute;
    inset: 0 4.2rem;
    perspective: 1800px;
    transform-style: preserve-3d;
  }

  .cover-card {
    appearance: none;
    position: absolute;
    top: 48%;
    left: 50%;
    width: min(70cqh, 42cqi);
    aspect-ratio: 1;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transform: translate(-50%, -50%) translateZ(-280px) scale(0.55);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition:
      transform 0.62s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.45s ease,
      filter 0.45s ease;
  }

  .cover-card .photo-frame {
    width: 100%;
    height: 100%;
    padding: 11px;
    transform: none;
  }

  .cover-card[data-off="0"] {
    transform: translate(-50%, -50%) translateZ(80px) rotateX(4deg);
    opacity: 1;
    pointer-events: auto;
    z-index: 6;
    filter: none;
  }

  .cover-card[data-off="-1"] {
    transform: translate(-50%, -50%) translateX(-62%) rotateY(48deg) translateZ(-40px) scale(0.82);
    opacity: 0.78;
    pointer-events: auto;
    z-index: 5;
    filter: brightness(0.72) saturate(0.85);
  }

  .cover-card[data-off="1"] {
    transform: translate(-50%, -50%) translateX(62%) rotateY(-48deg) translateZ(-40px) scale(0.82);
    opacity: 0.78;
    pointer-events: auto;
    z-index: 5;
    filter: brightness(0.72) saturate(0.85);
  }

  .cover-card[data-off="-2"] {
    transform: translate(-50%, -50%) translateX(-102%) rotateY(58deg) translateZ(-160px) scale(0.62);
    opacity: 0.38;
    pointer-events: auto;
    z-index: 3;
    filter: brightness(0.5) saturate(0.7);
  }

  .cover-card[data-off="2"] {
    transform: translate(-50%, -50%) translateX(102%) rotateY(-58deg) translateZ(-160px) scale(0.62);
    opacity: 0.38;
    pointer-events: auto;
    z-index: 3;
    filter: brightness(0.5) saturate(0.7);
  }

  .cover-card.is-center .photo-frame {
    box-shadow:
      inset 1px 1px 0 rgba(255, 236, 180, 0.55),
      inset -1px -1px 0 rgba(0, 0, 0, 0.7),
      0 0 0 1px rgba(245, 197, 24, 0.28),
      0 0 28px rgba(227, 28, 35, 0.22),
      12px 28px 40px rgba(0, 0, 0, 0.55);
    animation: cover-breathe 4.8s ease-in-out infinite;
  }

  @keyframes cover-breathe {
    0%,
    100% {
      filter: brightness(1);
    }
    50% {
      filter: brightness(1.06);
    }
  }

  .carousel-caption {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    margin: 0;
    min-height: 2.6rem;
  }

  .carousel-caption .photo-plate-title {
    font-size: clamp(1.15rem, 2vw, 1.7rem);
  }

  .carousel-arrow {
    appearance: none;
    position: absolute;
    top: 48%;
    z-index: 8;
    width: 3rem;
    height: 3rem;
    margin-top: -1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(10, 11, 14, 0.55);
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
  }

  .carousel-arrow--prev {
    left: 0.15rem;
  }

  .carousel-arrow--next {
    right: 0.15rem;
  }

  .carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(245, 197, 24, 0.5);
    transform: scale(1.08);
  }

  .carousel-strip {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    flex-shrink: 0;
    max-width: 100%;
    overflow-x: auto;
    padding: 0.15rem 0 0.25rem;
    scrollbar-width: thin;
  }

  .carousel-thumb {
    appearance: none;
    flex: 0 0 3.55rem;
    width: 3.55rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s, transform 0.2s;
  }

  .carousel-thumb .photo-frame {
    padding: 4px;
    transform: none;
  }

  .carousel-thumb.is-active {
    opacity: 1;
    transform: translateY(-3px);
  }

  .carousel-thumb.is-active .photo-frame {
    box-shadow:
      inset 1px 1px 0 rgba(255, 236, 180, 0.5),
      0 0 0 1px rgba(245, 197, 24, 0.55),
      0 0 16px rgba(245, 197, 24, 0.28);
  }

  .carousel-thumb:hover {
    opacity: 1;
  }

  @media (prefers-reduced-motion: reduce) {
    .arena-glow,
    .cover-card.is-center .photo-frame {
      animation: none;
    }
    .cover-card {
      transition: none;
    }
  }
}
