:root {
  --pc-maroon: #800000; /* Deep Maroon/Red */
  --pc-accent: #ffb700; /* Gold/Yellow Accent */
  --pc-dark: #0a0a0a;
  --pc-light-gray: #1f2937;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--pc-dark);
}

.pc-title-shadow-header {
  color: var(--pc-maroon);
  text-shadow:
    -1px -1px 0 white,
     1px -1px 0 white,
    -1px  1px 0 white,
     1px  1px 0 white;
}

.pc-title-shadow-hero {
  color: white;
  text-shadow:
    -1px -1px 0 var(--pc-maroon),
     1px -1px 0 var(--pc-maroon),
    -1px  1px 0 var(--pc-maroon),
     1px  1px 0 var(--pc-maroon);
}

.pill {
  border-radius: 999px;
}

.livestream-pulse-container {
  box-shadow: 0 0 40px rgba(128, 0, 0, 0.5), 0 0 15px rgba(255, 183, 0, 0.3);
  border-radius: 0.75rem;
  border: 4px solid rgba(255, 183, 0, 0.7);
  overflow: hidden;
  background-color: #000;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: radial-gradient(circle at top, #1f2937, #020617);
  overflow: hidden;
}

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

.overlay-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none; /* don't block YouTube controls */
  opacity: 0.9;
}

.tap-to-unmute-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 20;
  cursor: pointer;
}

.tap-to-unmute-overlay.hidden {
  display: none;
}

/* Ad card styling */
.ad-card {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.5),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.ad-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.7),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}