body {
  background: #000000;
  color: #ffffff;
  text-shadow: none;
  font-family: "Trebuchet MS", sans-serif;
  font-size: clamp(0.95rem, 1.1vw + 0.65rem, 1.25rem);
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.container-fluid,
.container {
  max-width: none;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
}

.container {
  max-width: 1200px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.align-items-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.container > .row,
.container-fluid > .row {
  margin-left: 0;
  margin-right: 0;
}

.video-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.35rem;
  margin-top: 1rem;
  max-width: none;
  width: 100%;
}

.mediaScreen {
  aspect-ratio: 16 / 9;
  background: #111;
  max-width: 100vw;
  position: relative;
  width: 100%;
}

.video-playback-indicator {
  background: rgba(0, 0, 0, 0.8);
  color: #FFD600;
  font-size: 1.25rem;
  left: 50%;
  opacity: 0;
  padding: 0.65rem 1rem;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  z-index: 2;
}

.video-playback-indicator.is-visible {
  animation: videoPlaybackPopup 0.8s ease-out;
}

@keyframes videoPlaybackPopup {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  20%, 70% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

#randomVideo1 {
  height: 100%;
  object-fit: contain;
  touch-action: manipulation;
  width: 100%;
}

.video-thumbnail {
  aspect-ratio: 4 / 3;
  background: #111;
  border: 2px solid #FFD600;
  display: block;
  object-fit: cover;
  overflow: hidden;
  width: 100%;
}

@media (max-width: 576px) {
  body {
    font-size: 1rem;
  }

  .container-fluid,
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .video-thumbnails {
    gap: 0.25rem;
    margin-top: 0.75rem;
  }

  .video-thumbnails {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about-card {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  color: #ffffff;
  margin: 0;
  max-width: none;
  padding: 0;
  position: relative;
  overflow: visible;
  animation: none;
}

.about-card::before {
  content: none;
}

.about-card::after {
  content: none;
}

.about-card > * {
  position: relative;
  z-index: 1;
}

.about-card__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 600;
  font-size: 0.85rem;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.about-card__title {
  font-family: "Trebuchet MS", sans-serif;
  font-size: clamp(2.2rem, 4vw + 1rem, 4rem);
  margin: 0 0 0.3rem;
  color: #ffffff;
  text-shadow: none;
}

.about-card__subtitle {
  font-family: "Trebuchet MS", sans-serif;
  font-size: clamp(1rem, 1.4vw + 0.6rem, 1.4rem);
  margin-bottom: 1.6rem;
  color: #ffffff;
}

.about-card__body p {
  font-size: clamp(1rem, 1.4vw + 0.7rem, 1.35rem);
  margin-bottom: 1rem;
  color: #ffffff;
}

.about-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.about-pill {
  border: 1px solid #ffffff;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: transparent;
  color: #ffffff;
}
