/* ============================================================
   BilimFestV1 - Cosmos tarzı evren sahnesi
   Tüm kurallar .bilimfestv1-page altında izoledir.
   ============================================================ */

.bilimfestv1-page {
  --bfv1-navy: #0e1b4d;
  --bfv1-red: #f82249;
  --bfv1-red-hover: #d81b3f;
  --bfv1-paper: #ffffff;
  --bfv1-paper-alt: #f6f7fd;
  --bfv1-ink: #2f3138;
  --bfv1-ink-dim: #5a6070;
  --bfv1-card: #ffffff;
  --bfv1-card-line: #e4e7f2;
  --bfv1-bg: #071018;
  --bfv1-bg-soft: #0a1424;
  --bfv1-surface: rgba(255, 255, 255, 0.08);
  --bfv1-line: rgba(255, 255, 255, 0.18);
  --bfv1-text: #f7f8fc;
  --bfv1-text-dim: #c5cbe0;
  --bfv1-cyan: #7eb8ff;
  --bfv1-blue: #2d6cdf;
  --bfv1-uzay: #7eb8ff;
  --bfv1-mat: #f4b942;
  --bfv1-doga: #3cb371;
  --bfv1-tek: #2d6cdf;
  --bfv1-tas: #f82249;
  --bfv1-radius: 18px;
  --bfv1-font-display: 'Raleway', sans-serif;

  background: var(--bfv1-paper);
  color: var(--bfv1-ink);
  font-family: 'Open Sans', sans-serif;
  overflow-x: hidden;
}

.bilimfestv1-page h1,
.bilimfestv1-page h2,
.bilimfestv1-page h3 {
  font-family: var(--bfv1-font-display);
}

.bfv1-hero h1,
.bfv1-hero h2,
.bfv1-hero h3 {
  color: var(--bfv1-text);
}

/* ============================================================
   HERO / EVREN SAHNESİ
   ============================================================ */

.bfv1-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

/* --- Gökyüzü katmanları --- */
.bfv1-sky {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bfv1-nebula {
  position: absolute;
  inset: -6%;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(248, 34, 73, 0.16) 0%, transparent 50%),
    radial-gradient(ellipse at 18% 20%, rgba(14, 27, 77, 0.55) 0%, transparent 45%),
    url('../img/bilimfestv1/nebula.jpg') center / cover no-repeat;
  animation: bfv1-nebula-drift 60s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes bfv1-nebula-drift {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1.02); }
  to   { transform: translate3d(1.5%, 1%, 0) scale(1.06); }
}

.bfv1-stars { position: absolute; inset: 0; }

.bfv1-star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  opacity: 0.7;
  animation: bfv1-twinkle var(--tw, 4s) ease-in-out var(--twd, 0s) infinite;
}

@keyframes bfv1-twinkle {
  0%, 100% { opacity: 0.15; }
  50%      { opacity: 0.9; }
}

.bfv1-constellations {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.bfv1-const-line {
  fill: none;
  stroke: rgba(140, 190, 255, 0.35);
  stroke-width: 1;
  stroke-dasharray: 5 7;
  animation: bfv1-const-pulse 7s ease-in-out infinite;
}

.bfv1-const-line--slow { animation-duration: 11s; }

.bfv1-const-dots circle { fill: rgba(190, 215, 255, 0.7); }

@keyframes bfv1-const-pulse {
  0%, 100% { opacity: 0.25; }
  50%      { opacity: 0.8; }
}

/* --- Yörünge sistemi --- */
.bfv1-universe {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  will-change: transform, opacity;
}

.bfv1-core-halo {
  position: absolute;
  width: 68vmin;
  height: 68vmin;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(248, 34, 73, 0.16) 0%,
      rgba(14, 27, 77, 0.28) 42%,
      transparent 70%);
  animation: bfv1-halo-pulse 6s ease-in-out infinite;
}

@keyframes bfv1-halo-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%      { transform: scale(1.07); opacity: 1; }
}

.bfv1-ring {
  position: absolute;
  border: 1px solid var(--bfv1-line);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(79, 124, 255, 0.06) inset;
}

.bfv1-ring--1 { width: 88vmin;  height: 88vmin; }
.bfv1-ring--2 { width: 118vmin; height: 118vmin; border-style: dashed; opacity: 0.8; }
.bfv1-ring--3 { width: 150vmin; height: 150vmin; opacity: 0.55; }

/* Gezegen taşıyıcıları: her düğüm kendi yörüngesinde döner */
.bfv1-orbits { position: absolute; inset: 0; display: grid; place-items: center; }

.bfv1-orbit {
  position: absolute;
  width: var(--orbit, 88vmin);
  height: var(--orbit, 88vmin);
  animation: bfv1-spin var(--speed, 60s) linear infinite;
  animation-delay: var(--sd, 0s);
  pointer-events: none;
  will-change: transform;
}

.bfv1-orbit--1 { --orbit: 88vmin;  --speed: 46s; --sd: -6s;  }
.bfv1-orbit--2 { --orbit: 118vmin; --speed: 74s; --sd: -30s; }
.bfv1-orbit--3 { --orbit: 118vmin; --speed: 74s; --sd: -66s; }
.bfv1-orbit--4 { --orbit: 150vmin; --speed: 98s; --sd: -12s; }
.bfv1-orbit--5 { --orbit: 150vmin; --speed: 98s; --sd: -58s; }

@keyframes bfv1-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes bfv1-spin-reverse {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

.bfv1-node {
  --accent: var(--bfv1-cyan);
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  width: 56px;
  height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: 50%;
  background: rgba(10, 14, 39, 0.85);
  border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent);
  box-shadow: 0 0 10px color-mix(in srgb, var(--accent) 28%, transparent);
  color: var(--accent);
  font-size: 1.25rem;
  text-decoration: none;
  pointer-events: auto;
  cursor: default;
  animation: bfv1-spin-reverse var(--speed, 60s) linear infinite;
  animation-delay: var(--sd, 0s);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}

.bfv1-node svg {
  width: 1.15em;
  height: 1.15em;
  display: block;
  fill: currentColor;
  overflow: visible;
}

.bfv1-node svg ellipse {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
}

.bfv1-node:hover,
.bfv1-node:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--accent) 40%, transparent);
  outline: none;
}

.bfv1-node-label {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--bfv1-text-dim);
  background: rgba(5, 8, 22, 0.75);
  border: 1px solid var(--bfv1-line);
  border-radius: 999px;
  padding: 3px 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bfv1-node:hover .bfv1-node-label,
.bfv1-node:focus-visible .bfv1-node-label {
  opacity: 1;
}

.bfv1-node--uzay { --accent: var(--bfv1-uzay); }
.bfv1-node--mat  { --accent: var(--bfv1-mat); }
.bfv1-node--doga { --accent: var(--bfv1-doga); }
.bfv1-node--tek  { --accent: var(--bfv1-tek); }
.bfv1-node--tas  { --accent: var(--bfv1-tas); }

/* --- Merkez içerik --- */
.bfv1-hero-ui {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 110px 20px 80px;
  max-width: 780px;
  will-change: transform, opacity;
}

.bfv1-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bfv1-text-dim);
  margin-bottom: 8px;
}

.bfv1-title {
  margin-bottom: 6px;
}

.bfv1-title-logo {
  display: block;
  width: min(100%, 520px);
  height: auto;
  margin-inline: auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 2px 18px rgba(0, 0, 0, 0.45));
}

.bfv1-lead {
  font-family: var(--bfv1-font-display);
  font-size: clamp(1.15rem, 2.8vw, 1.7rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.3;
  color: var(--bfv1-red);
  margin: 0 0 8px;
  text-shadow: 0 2px 14px rgba(248, 34, 73, 0.35);
}

.bfv1-tagline {
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  color: var(--bfv1-text-dim);
  font-weight: 300;
  margin-bottom: 22px;
}

.bfv1-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin-bottom: 30px;
}

.bfv1-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--bfv1-text);
  background: var(--bfv1-surface);
  border: 1px solid var(--bfv1-line);
  border-radius: 999px;
  padding: 7px 16px;
}

.bfv1-meta-item i { color: var(--bfv1-red); }

/* --- Geri sayım --- */
.bfv1-countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(64px, 96px));
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.bfv1-count-box {
  background: rgba(10, 14, 39, 0.7);
  border: 1px solid var(--bfv1-line);
  border-radius: 14px;
  padding: 12px 6px 10px;
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.bfv1-count-num {
  display: block;
  font-family: var(--bfv1-font-display);
  font-size: clamp(1.5rem, 4.6vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  text-shadow: none;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.bfv1-count-label {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bfv1-text-dim);
  margin-top: 3px;
}

.bfv1-count-status {
  font-family: var(--bfv1-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bfv1-doga);
  margin-bottom: 26px;
}

/* --- Giriş butonu --- */
.bfv1-enter-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--bfv1-font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--bfv1-red);
  border: none;
  border-radius: 999px;
  padding: 14px 34px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(248, 34, 73, 0.35);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.bfv1-enter-btn:hover,
.bfv1-enter-btn:focus-visible {
  transform: translateY(-3px);
  background: var(--bfv1-red-hover);
  box-shadow: 0 14px 28px rgba(248, 34, 73, 0.42);
  outline: none;
}

.bfv1-scroll-hint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--bfv1-text-dim);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  animation: bfv1-hint-bob 2.4s ease-in-out infinite;
}

@keyframes bfv1-hint-bob {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.6; }
  50%      { transform: translate(-50%, 8px); opacity: 1; }
}

/* ============================================================
   İÇERİK BÖLÜMLERİ
   ============================================================ */

.bfv1-content {
  position: relative;
  z-index: 3;
  background: var(--bfv1-paper);
  color: var(--bfv1-ink);
}

.bfv1-section { padding: 84px 0; }

.bfv1-section--alt {
  background: var(--bfv1-paper-alt);
  border-top: 1px solid var(--bfv1-card-line);
  border-bottom: 1px solid var(--bfv1-card-line);
}

.bfv1-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.bfv1-section-kicker {
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bfv1-red);
  margin-bottom: 10px;
}

.bfv1-section-head h2 {
  font-size: clamp(1.7rem, 4.4vw, 2.5rem);
  font-weight: 800;
  color: var(--bfv1-navy);
  margin-bottom: 12px;
}

.bfv1-section-sub {
  color: var(--bfv1-ink-dim);
  font-size: 0.98rem;
  margin: 0;
}

/* --- Etkinlik özeti --- */
.bfv1-summary { max-width: 760px; margin: 0 auto; text-align: center; }

.bfv1-summary-poster {
  max-width: 420px;
  margin: 0 auto 28px;
}

.bfv1-summary-poster .bfv1-map-frame img {
  max-height: none;
}

.bfv1-summary p {
  color: var(--bfv1-ink-dim);
  line-height: 1.75;
  margin-bottom: 16px;
  text-align: justify;
}

.bfv1-summary em {
  font-style: italic;
  color: var(--bfv1-ink);
}

.bfv1-summary strong {
  font-weight: 700;
  color: var(--bfv1-navy);
}

.bfv1-summary-facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  padding: 10px 0 0;
  margin: 0;
}

.bfv1-summary-facts li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--bfv1-navy);
  background: var(--bfv1-card);
  border: 1px solid var(--bfv1-card-line);
  border-radius: 999px;
  padding: 8px 16px;
}

.bfv1-summary-facts i { color: var(--bfv1-red); }

/* --- Akan şerit --- */
.bfv1-marquee {
  overflow: hidden;
  background: var(--bfv1-navy);
  border-top: 2px solid var(--bfv1-red);
  border-bottom: 2px solid var(--bfv1-red);
  padding: 18px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4rem, #000 calc(100% - 4rem), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4rem, #000 calc(100% - 4rem), transparent);
}

.bfv1-marquee-track {
  display: flex;
  width: max-content;
  animation: bfv1-marquee 96s linear infinite;
  will-change: transform;
}

.bfv1-marquee:hover .bfv1-marquee-track {
  animation-play-state: paused;
}

.bfv1-marquee-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 1.15rem;
  padding-right: 1.15rem;
  white-space: nowrap;
  font-family: var(--bfv1-font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 3.2vw, 2.35rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bfv1-text);
}

.bfv1-marquee-group > span {
  flex-shrink: 0;
}

.bfv1-marquee-star {
  color: var(--bfv1-red);
  font-weight: 700;
}

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

/* --- Program --- */
.bfv1-tabs {
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid var(--bfv1-card-line);
  margin-bottom: 26px;
}

.bfv1-tabs .nav-link {
  font-family: var(--bfv1-font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--bfv1-ink-dim);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px 10px 0 0;
  padding: 10px 26px;
}

.bfv1-tabs .nav-link:hover { color: var(--bfv1-red); border-color: transparent; }

.bfv1-tabs .nav-link.active {
  color: #fff;
  background: var(--bfv1-red);
  border-color: var(--bfv1-red) var(--bfv1-red) transparent;
  box-shadow: none;
}

.bfv1-schedule { max-width: 860px; margin: 0 auto; }

.bfv1-slot {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 13px 18px;
  border: 1px solid var(--bfv1-card-line);
  border-radius: 12px;
  background: var(--bfv1-card);
  margin-bottom: 10px;
  box-shadow: 0 6px 18px rgba(14, 27, 77, 0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.bfv1-slot:hover {
  border-color: rgba(248, 34, 73, 0.35);
  box-shadow: 0 8px 22px rgba(14, 27, 77, 0.08);
}

.bfv1-slot-time {
  font-family: var(--bfv1-font-display);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--bfv1-red);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.bfv1-slot-name { font-weight: 600; font-size: 0.95rem; color: var(--bfv1-navy); }

.bfv1-slot-area {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bfv1-ink-dim);
}

/* --- Alan rehberi --- */
.bfv1-map-preview { max-width: 920px; margin: 0 auto; }

.bfv1-map-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--bfv1-radius);
  border: 1px solid var(--bfv1-card-line);
  background: #fff;
  box-shadow: 0 10px 28px rgba(14, 27, 77, 0.08);
}

.bfv1-map-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  background: #f3f4f8;
}

.bfv1-map-zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(14, 27, 77, 0.82);
  border-radius: 999px;
  padding: 8px 14px;
}

.bfv1-map-frame:hover .bfv1-map-zoom,
.bfv1-map-frame:focus-visible .bfv1-map-zoom {
  background: var(--bfv1-red);
}

.bfv1-map-pdf {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--bfv1-navy);
  font-weight: 600;
  font-size: 0.92rem;
}

.bfv1-map-pdf:hover { color: var(--bfv1-red); }

.bfv1-map-preview .tab-pane { text-align: center; }

/* --- Kapanış --- */
.bfv1-closing { text-align: center; }

.bfv1-closing-inner h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  color: var(--bfv1-navy);
  margin-bottom: 10px;
}

.bfv1-closing-inner > p { color: var(--bfv1-ink-dim); margin-bottom: 26px; }

.bfv1-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.bfv1-social a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--bfv1-navy);
  background: var(--bfv1-card);
  border: 1px solid var(--bfv1-card-line);
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.bfv1-social a:hover,
.bfv1-social a:focus-visible {
  color: var(--bfv1-red);
  transform: translateY(-3px);
  border-color: rgba(248, 34, 73, 0.4);
  outline: none;
}

.bfv1-nsosyal { font-weight: 800; font-family: var(--bfv1-font-display); }

.bfv1-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--bfv1-font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--bfv1-red);
  border: none;
  border-radius: 999px;
  padding: 12px 28px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(248, 34, 73, 0.28);
  transition: background 0.25s ease, transform 0.25s ease;
}

.bfv1-top-btn:hover,
.bfv1-top-btn:focus-visible {
  background: var(--bfv1-red-hover);
  transform: translateY(-2px);
  outline: none;
}

/* ============================================================
   REVEAL (yalnızca JS varken gizlenir)
   ============================================================ */

.bilimfestv1-page.bfv1-js .bfv1-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.bilimfestv1-page.bfv1-js .bfv1-reveal.bfv1-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sekme gizliyken animasyonları duraklat */
.bilimfestv1-page.bfv1-paused *,
.bilimfestv1-page.bfv1-paused *::before,
.bilimfestv1-page.bfv1-paused *::after {
  animation-play-state: paused !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (min-width: 576px) {
  .bfv1-slot {
    grid-template-columns: 130px 1fr auto;
    align-items: center;
    gap: 16px;
  }
}

@media (max-width: 767.98px) {
  .bfv1-ring--3 { display: none; }
  .bfv1-orbit--4,
  .bfv1-orbit--5 { display: none; }
  .bfv1-node { width: 42px; height: 42px; font-size: 0.95rem; }
  .bfv1-node-label { display: none; }
  .bfv1-orbit { animation-duration: calc(var(--speed) * 1.6); }
  .bfv1-node { animation-duration: calc(var(--speed) * 1.6); }
  .bfv1-core-halo { width: 90vmin; height: 90vmin; }
  .bfv1-hero-ui { padding-top: 96px; }
}

/* Çok dar ekran: sayaç 2x2 */
@media (max-width: 419.98px) {
  .bfv1-countdown { grid-template-columns: repeat(2, minmax(88px, 1fr)); max-width: 260px; margin-inline: auto; }
}

/* Kısa yatay ekranlar */
@media (max-height: 540px) and (orientation: landscape) {
  .bfv1-hero { min-height: 140vh; }
  .bfv1-scroll-hint { display: none; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .bilimfestv1-page *,
  .bilimfestv1-page *::before,
  .bilimfestv1-page *::after {
    animation: none !important;
    transition: none !important;
  }

  .bilimfestv1-page.bfv1-js .bfv1-reveal {
    opacity: 1;
    transform: none;
  }

  .bfv1-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .bfv1-marquee-track {
    justify-content: center;
    width: 100%;
    transform: none;
  }

  .bfv1-marquee-group {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    white-space: normal;
    row-gap: 0.35rem;
  }

  .bfv1-marquee-group:last-child,
  .bfv1-marquee-group > :nth-child(n + 9) {
    display: none;
  }
}
