.theater-stories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.theater-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.theater-card__image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}
.theater-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.theater-card__body h3 {
  margin: 0 0 6px;
}
.theater-card[tabindex] {
  outline: none;
}
.theater-card[tabindex]:focus-visible {
  box-shadow: 0 0 0 2px rgba(255, 45, 45, 0.9);
  border-color: rgba(255, 45, 45, 0.9);
}
.theater-modal[hidden] {
  display: none;
}
.theater-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(5, 6, 10, 0.78);
  backdrop-filter: blur(6px);
}
.theater-modal__backdrop {
  position: absolute;
  inset: 0;
}
.theater-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 96vw);
  max-height: 94vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}
.theater-modal__image {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.theater-modal__image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 64vh;
  object-fit: contain;
}
.theater-modal__body {
  padding: 18px 20px 24px;
  flex: 1 1 auto;
  overflow: auto;
}
.theater-modal__body h3 {
  margin: 0 0 8px;
}
.theater-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease,
    background 0.2s ease;
}
.theater-modal__close:hover,
.theater-modal__close:focus-visible {
  border-color: rgba(255, 45, 45, 0.8);
  background: rgba(255, 45, 45, 0.12);
  box-shadow: 0 12px 30px rgba(255, 45, 45, 0.22);
  transform: translateY(-1px);
}
.list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}
.list li:last-child {
  border-bottom: 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 13px;
}
.badge b {
  color: var(--text);
  font-weight: 600;
}
.carousel {
  position: relative;
  overflow: visible;
  border-radius: var(--r);
}
.carousel-track {
  display: flex;
  gap: 14px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  padding: 14px;
  scrollbar-width: thin;
  scroll-behavior: smooth;
}
.carousel-track::-webkit-scrollbar {
  height: 10px;
}
.carousel-track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}
.book {
  min-width: 260px;
  max-width: 260px;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.book .cover {
  aspect-ratio: 2/3;
  background: rgba(255, 255, 255, 0.03);
}
.book .meta {
  padding: 14px;
}
.book .meta h3 {
  margin: 0 0 6px;
  font-size: 16px;
}
.book .meta p {
  margin: 0 0 10px;
  font-size: 14px;
}
.book .meta .row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.book .meta .year {
  color: var(--muted);
  font-size: 13px;
}
.schedule-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.schedule-title {
  margin: 2px 0 6px;
}
.schedule-lead {
  margin: 0;
  color: var(--muted);
}
.schedule-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.schedule-carousel .carousel-track {
  padding-top: 8px;
}
.broadcast-card {
  min-width: 240px;
  max-width: 240px;
  scroll-snap-align: start;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.16));
  padding: 14px;
  display: grid;
  gap: 8px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.36);
}
.broadcast-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.speaker-topic {
  padding: 0;
}
.speaker-topic-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
}
.speaker-topic-summary::-webkit-details-marker {
  display: none;
}
.speaker-topic-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.speaker-topic-body {
  padding: 0 14px 12px;
}
.speaker-topic-body p {
  margin: 0;
}
.speaker-topic-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  transform: rotate(45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
  flex: 0 0 auto;
}
.speaker-topic[open] .speaker-topic-arrow {
  transform: rotate(225deg);
}
.broadcast-card__state {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
}
.broadcast-card__badge {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  background: rgba(0, 0, 0, 0.25);
}
.broadcast-card__title {
  margin: 0;
  font-size: 18px;
}
.broadcast-card__date,
.broadcast-card__time {
  margin: 0;
  color: var(--muted);
}
.broadcast-card__note {
  margin-top: 6px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 45, 45, 0.1);
  border: 1px solid rgba(255, 45, 45, 0.3);
  color: var(--text);
  font-size: 13px;
}
.broadcast-card.is-past {
  opacity: 0.78;
}
.broadcast-card.is-upcoming .broadcast-card__state {
  background: rgba(255, 45, 45, 0.12);
  border-color: rgba(255, 45, 45, 0.28);
  color: #fff;
}
.promo-card {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 18px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.promo-card__content h2 {
  margin: 6px 0;
}
.promo-card__content p {
  margin: 0 0 12px;
}
.promo-card__visual {
  position: relative;
  height: 100%;
  min-height: 180px;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 45, 45, 0.35), rgba(0, 0, 0, 0.2));
  border: 1px dashed rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  padding: 12px;
}
.promo-card__glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(255, 45, 45, 0.18), transparent 45%);
  filter: blur(6px);
}
.promo-card .eyebrow {
  margin: 0;
}
.promo-card__video {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 16 / 9;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.promo-card__video iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #000;
}
@media (max-width: 880px) {
  .broadcast-card {
    min-width: 220px;
    max-width: 220px;
  }
  .promo-card {
    grid-template-columns: 1fr;
  }
  .schedule-heading {
    gap: 10px;
  }
  .schedule-meta {
    width: 100%;
    justify-content: flex-start;
  }
}
.form {
  display: grid;
  gap: 10px;
}
.input,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  outline: none;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.help {
  color: var(--muted);
  font-size: 13px;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 50px;
  color: var(--muted);
}
.partners {
  padding: 30px 0 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.partners-header {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.partners-sub {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.partner-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.partner-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 45, 45, 0.5);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}
.partner-card img {
  max-height: 54px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.partner-card:hover img,
.partner-card:focus-visible img {
  filter: none;
  opacity: 1;
}
.partner-card--lync img {
  background: #fff;
  border-radius: 10px;
  padding: 8px;
}
.social-media {
  padding: 18px 0 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.social-media-header {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.social-media-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.social-media-link-item-small {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    background 0.2s ease;
}
.social-media-link-item-small:hover,
.social-media-link-item-small:focus-visible {
  border-color: rgba(255, 45, 45, 0.6);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 32px rgba(255, 45, 45, 0.16);
  transform: translateY(-3px);
}
.social-media-icon {
  fill: var(--text);
  transition: fill 0.2s ease, opacity 0.2s ease;
}
.social-media-link-item-small:hover .social-media-icon,
.social-media-link-item-small:focus-visible .social-media-icon {
  fill: var(--text);
}
.footer a {
  color: var(--muted);
}
.footer a:hover {
  color: var(--text);
}
.notice {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}
.success {
  border-color: rgba(0, 255, 120, 0.25);
}
.error {
  border-color: rgba(255, 45, 45, 0.35);
}
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(960px, calc(100% - 24px));
  background: #0b0f16;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.6);
  z-index: 90;
  display: none;
}
.cookie-banner.is-visible {
  display: block;
}
.cookie-banner__body {
  display: grid;
  gap: 12px;
}
.cookie-banner p,
.cookie-banner a,
.cookie-banner strong {
  color: #f5f7ff;
}
.cookie-banner a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-banner a:hover,
.cookie-banner a:focus-visible {
  color: #ffffff;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}
.cookie-banner__actions .btn {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
}
.cookie-banner__actions .btn:not(.primary):hover,
.cookie-banner__actions .btn:not(.primary):focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 45, 45, 0.7);
}
.cookie-banner__preferences {
  border: 1px dashed rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
}
.cookie-banner__option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
}
.cookie-banner .help {
  color: rgba(255, 255, 255, 0.82);
}
.cookie-banner__option input[type='checkbox'] {
  margin-top: 4px;
}
.f1-gallery-section {
  padding-top: 24px;
}
.f1-gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}
.f1-gallery-container .container {
  padding: 0;
}
.f1-gallery-heading {
  max-width: 720px;
  margin-bottom: 18px;
}
.f1-gallery-heading p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}
.f1-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.f1-gallery-card {
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.f1-gallery-card__button {
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  display: block;
  width: 100%;
  text-align: left;
  color: inherit;
}
.f1-gallery-card__button:focus-visible {
  outline: 2px solid rgba(255, 45, 45, 0.9);
  outline-offset: -2px;
}
.f1-gallery-card__image {
  /* 4:3 thumbnail box; crop via object-fit to keep grid even. */
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
}
.f1-gallery-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
  position: absolute;
  inset: 0;
}
@supports not (aspect-ratio: 4 / 3) {
  .f1-gallery-card__image::before {
    content: '';
    display: block;
    padding-top: 75%;
  }
}
.f1-gallery-card.is-clickable:hover .f1-gallery-card__image img,
.f1-gallery-card.is-clickable:focus-within .f1-gallery-card__image img {
  transform: scale(1.05);
}
@media (max-width: 880px) {
  .f1-gallery-container {
    padding: 20px;
  }
  .f1-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .f1-gallery-container {
    padding: 16px;
    border-radius: 14px;
  }
  .f1-gallery-grid {
    grid-template-columns: 1fr;
  }
}
.f1-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.f1-gallery-modal-open {
  overflow: hidden;
}
.f1-gallery-modal[hidden] {
  display: none;
}
.f1-gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 10, 0.85);
}
.f1-gallery-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 1200px);
  max-height: 90vh;
  display: grid;
  gap: 16px;
  justify-items: center;
  padding: 24px 18px 18px;
  border-radius: 18px;
  background: rgba(12, 12, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.f1-gallery-modal__image {
  width: 100%;
  max-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.f1-gallery-modal__image img {
  max-width: 100%;
  max-height: 70vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}
.f1-gallery-modal__caption {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}
.f1-gallery-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 10, 15, 0.7);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.f1-gallery-modal__close:hover,
.f1-gallery-modal__close:focus-visible {
  border-color: rgba(255, 45, 45, 0.8);
  transform: scale(1.05);
}
.f1-gallery-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 10, 15, 0.6);
  color: #fff;
  font-size: 32px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.f1-gallery-modal__nav:hover,
.f1-gallery-modal__nav:focus-visible {
  border-color: rgba(255, 45, 45, 0.8);
  background: rgba(20, 20, 30, 0.85);
  transform: translateY(-50%) scale(1.05);
}
.f1-gallery-modal__nav--prev {
  left: 12px;
}
.f1-gallery-modal__nav--next {
  right: 12px;
}
@media (max-width: 720px) {
  .f1-gallery-modal__dialog {
    width: 94vw;
    max-height: 92vh;
    padding: 46px 14px 16px;
  }
  .f1-gallery-modal__nav {
    top: auto;
    bottom: 16px;
    transform: none;
  }
  .f1-gallery-modal__nav:hover,
  .f1-gallery-modal__nav:focus-visible {
    transform: scale(1.05);
  }
  .f1-gallery-modal__nav--prev {
    left: 22px;
  }
  .f1-gallery-modal__nav--next {
    right: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .f1-gallery-card__image img,
  .f1-gallery-modal__close,
  .f1-gallery-modal__nav {
    transition: none;
  }
}
@media (max-width: 640px) {
  .cookie-banner {
    bottom: 12px;
    padding: 14px;
  }
  .cookie-banner__actions {
    justify-content: stretch;
  }
  .cookie-banner__actions .btn {
    flex: 1 1 100%;
  }
}

.links-page__container {
  max-width: 680px;
}
.links-card {
  display: grid;
  gap: 14px;
}
.links-card h1 {
  margin-bottom: 0;
}
.links-card p {
  margin-top: 0;
}
.links-list {
  display: grid;
  gap: 12px;
}
.links-list__content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  min-width: 0;
}
.links-list__item {
  width: 100%;
  justify-content: center;
  min-height: 56px;
  font-size: 1.05rem;
}
