/* ============================
   BEARDED VIKING – MAIN THEME
   ============================ */

/* ---------- CSS VARIABLES ---------- */

:root {
  --bv-bg-dark: #050607;
  --bv-bg-darker: #020304;

  --bv-gold: #d4af37;
  --bv-gold-soft: #b4922d;
  --bv-gold-deep: #7a5b15;

  --bv-red: #ff2e2e;
  --bv-red-soft: #b02020;

  --bv-text-light: #e4e4e4;
  --bv-text-muted: #9c9c9c;
  --bv-border-subtle: rgba(255, 255, 255, 0.08);

  --bv-card-bg: rgba(6, 6, 10, 0.92);
  --bv-card-bg-soft: rgba(10, 10, 13, 0.86);

  --bv-max-width: 1120px;
  --bv-radius-lg: 1.25rem;
  --bv-radius-pill: 999px;

  --bv-shadow-deep: 0 18px 45px rgba(0, 0, 0, 0.85);
  --bv-shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.6);

  --bv-space-xs: 0.35rem;
  --bv-space-sm: 0.75rem;
  --bv-space-md: 1.25rem;
  --bv-space-lg: 2rem;
  --bv-space-xl: 3.25rem;

  --bv-transition-fast: 0.18s ease-out;
  --bv-transition-med: 0.25s ease-out;
}

/* ---------- GLOBAL RESET / BASE ---------- */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--bv-bg-dark);
  color: var(--bv-text-light);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;

  /* BACKGROUND IMAGE: change this path to your own nordic image */
  background-image: url("../images/viking_wallpaper.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Dark overlay so text is always readable on top of the background image */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.03), transparent 55%),
    linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.97));
  z-index: -1;
}

/* Improve Bootstrap containers in this dark theme */
.bv-page,
.bv-wrapper {
  max-width: var(--bv-max-width);
  margin: 0 auto;
  padding: 0 var(--bv-space-md);
}

/* ---------- TYPOGRAPHY ---------- */

h1, h2, h3, h4, h5, h6 {
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--bv-gold);
  margin: 0 0 0.65em;
}

p {
  color: var(--bv-text-light);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.bv-text-muted {
  color: var(--bv-text-muted) !important;
}

.bv-text-gold {
  color: var(--bv-gold) !important;
}

.bv-text-red {
  color: var(--bv-red) !important;
}

/* Kicker text (small, all caps, tracking) */
.bv-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--bv-text-muted);
  margin-bottom: 0.6rem;
}

/* Section title with glowing underline */
.bv-section-title {
  position: relative;
  display: inline-block;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 1.22rem;
  padding-bottom: 0.4rem;
  margin-bottom: 0.5rem;
  color: var(--bv-gold);
  text-shadow:
    0 0 10px rgba(212, 175, 55, 0.8),
    0 0 28px rgba(212, 175, 55, 0.6);
  animation: bv-titleGlow 4s ease-in-out infinite alternate;
}

.bv-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 75%;
  height: 2px;
  background: linear-gradient(to right, var(--bv-gold), transparent);
  box-shadow:
    0 0 12px rgba(212,175,55,0.9),
    0 0 25px rgba(212,175,55,0.65);
}

/* Helpful subtitle block */
.bv-section-subtitle {
  max-width: 34rem;
  font-size: 0.93rem;
  color: var(--bv-text-muted);
}

/* ---------- LINKS / HYPERLINKS ---------- */

a {
  color: var(--bv-red);
  text-decoration: none;
  transition: color var(--bv-transition-fast), text-shadow var(--bv-transition-fast), transform var(--bv-transition-fast);
}

a:hover,
a:focus-visible {
  color: #ffffff;
  text-shadow:
    0 0 10px var(--bv-red-soft),
    0 0 20px var(--bv-red-soft);
}

/* Explicit glowing red link helper */
.bv-link-red {
  color: var(--bv-red);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  position: relative;
  padding-bottom: 0.15rem;
  animation: bv-redGlow 3s ease-in-out infinite alternate;
}

.bv-link-red::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--bv-red), transparent);
  box-shadow:
    0 0 14px var(--bv-red-soft),
    0 0 24px var(--bv-red-soft);
}

/* ---------- SECTIONS & LAYOUT ---------- */

.bv-section {
  padding: var(--bv-space-xl) 0 var(--bv-space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.bv-section--tight {
  padding-top: var(--bv-space-lg);
  padding-bottom: var(--bv-space-md);
}

.bv-section-header {
  margin-bottom: 2.2rem;
}

/* Generic responsive grids */
.bv-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--bv-space-lg);
  align-items: flex-start;
}

.bv-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--bv-space-md);
}

@media (max-width: 992px) {
  .bv-grid-2,
  .bv-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ---------- NAVIGATION ---------- */

.bv-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.96),
    rgba(8, 8, 8, 0.88)
  );
  border-bottom: 1px solid var(--bv-border-subtle);
}

.bv-nav-inner {
  max-width: var(--bv-max-width);
  margin: 0 auto;
  padding: 0.65rem var(--bv-space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Brand mark – small rune circle */
.bv-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.bv-brand-mark {
  width: 32px;
  height: 32px;
  border-radius: var(--bv-radius-pill);
  border: 1px solid var(--bv-gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  color: var(--bv-gold);
  box-shadow:
    0 0 12px rgba(212,175,55,0.6),
    0 0 28px rgba(212,175,55,0.5);
  animation: bv-goldPulse 3s ease-in-out infinite;
}

.bv-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.bv-brand-name {
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bv-gold);
}

.bv-brand-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bv-text-muted);
}

/* Nav links */
.bv-nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.bv-nav-link {
  position: relative;
  color: var(--bv-text-muted);
  padding-bottom: 0.15rem;
}

.bv-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--bv-red);
  box-shadow:
    0 0 10px var(--bv-red-soft),
    0 0 20px var(--bv-red-soft);
  transition: width var(--bv-transition-fast);
}

.bv-nav-link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.bv-nav-link:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .bv-brand-name {
    font-size: 0.8rem;
  }

  .bv-nav-inner {
    padding-inline: 1rem;
  }

  .bv-nav-links {
    gap: 0.65rem;
    font-size: 0.7rem;
  }
}

/* ---------- HERO / LANDING ---------- */

.bv-hero {
  min-height: 80vh;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: var(--bv-space-lg);
  align-items: center;
  padding-top: var(--bv-space-xl);
}

.bv-hero-content {
  max-width: 32rem;
}

.bv-hero-heading {
  font-family: "Cinzel", serif;
  font-size: clamp(2.4rem, 4vw + 1rem, 3.6rem);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--bv-gold);
  text-shadow:
    0 0 16px rgba(212,175,55,0.9),
    0 0 38px rgba(212,175,55,0.7);
  animation: bv-titleGlow 5s ease-in-out infinite alternate;
}

.bv-hero-sub {
  margin-top: 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bv-text-muted);
}

.bv-hero-body {
  margin-top: 1.5rem;
  font-size: 0.96rem;
  color: var(--bv-text-light);
}

.bv-hero-body span {
  color: var(--bv-gold);
  font-weight: 500;
}

/* Hero CTA row */
.bv-hero-cta {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Right side hero “totem” – status, waveform, etc. */
.bv-hero-side {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.bv-totem-card {
  background: var(--bv-card-bg);
  border-radius: var(--bv-radius-lg);
  box-shadow: var(--bv-shadow-deep);
  border: 1px solid var(--bv-border-subtle);
  padding: 1.2rem 1.3rem;
  position: relative;
  overflow: hidden;
}

.bv-totem-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(212,175,55,0.3), transparent 60%);
  opacity: 0.15;
  mix-blend-mode: screen;
  pointer-events: none;
}

.bv-totem-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--bv-text-muted);
  margin-bottom: 0.4rem;
}

.bv-totem-value {
  font-family: "Cinzel", serif;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bv-gold);
}

/* Stylized waveform bar */
.bv-totem-wave {
  margin-top: 0.9rem;
  height: 42px;
  border-radius: var(--bv-radius-pill);
  border: 1px solid rgba(255,255,255,0.07);
  background: radial-gradient(circle at 0% 50%, rgba(255,255,255,0.06), transparent 60%);
  position: relative;
  overflow: hidden;
}

.bv-totem-wave-line {
  position: absolute;
  inset: 50% -10%;
  height: 2px;
  margin-top: -1px;
  background: linear-gradient(to right, transparent, var(--bv-red), transparent);
  filter: drop-shadow(0 0 8px var(--bv-red-soft));
  animation: bv-waveSweep 4s linear infinite;
  opacity: 0.7;
}

/* ---------- CARDS & CONTENT BLOCKS ---------- */

.bv-card {
  background: var(--bv-card-bg-soft);
  border-radius: var(--bv-radius-lg);
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--bv-border-subtle);
  box-shadow: var(--bv-shadow-soft);
  position: relative;
  overflow: hidden;
}

.bv-card--glass {
  background: radial-gradient(circle at 0 0, rgba(255,255,255,0.05), transparent 55%),
              rgba(5,5,10,0.92);
  backdrop-filter: blur(16px);
}

/* Hoverable variant */
.bv-card--hover {
  transition:
    transform var(--bv-transition-med),
    box-shadow var(--bv-transition-med),
    border-color var(--bv-transition-med),
    background var(--bv-transition-med);
}

.bv-card--hover:hover {
  transform: translateY(-3px);
  border-color: rgba(255,46,46,0.4);
  box-shadow: 0 0 32px rgba(255,46,46,0.35);
}

/* --- Reels enhancements --- */

.bv-reel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}

.bv-reel-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 0 0 rgba(212,175,55,0.0);
  transition: box-shadow 0.25s ease-out, background 0.25s ease-out, border-color 0.25s ease-out;
}

.bv-reel-card.is-playing .bv-reel-status-dot {
  background: var(--bv-gold);
  border-color: var(--bv-gold);
  box-shadow:
    0 0 8px rgba(212,175,55,0.8),
    0 0 18px rgba(212,175,55,0.7);
}

.bv-reel-tags {
  margin: 0.35rem 0 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.bv-pill-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  padding: 0.15rem 0.55rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--bv-text-muted);
  background: rgba(5,5,10,0.85);
}

/* Faux waveform bar under audio */
.bv-reel-audio-wrap {
  margin-top: 0.6rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.bv-reel-wave {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.06),
    rgba(212,175,55,0.7),
    rgba(255,255,255,0.08)
  );
  opacity: 0.4;
  transform-origin: center;
  animation: bv-waveIdle 4s ease-in-out infinite;
}

.bv-reel-card.is-playing .bv-reel-wave {
  opacity: 1;
  animation: bv-waveActive 1.4s ease-in-out infinite;
}

@keyframes bv-waveIdle {
  0%, 100% { transform: scaleX(0.9); }
  50%      { transform: scaleX(1); }
}

@keyframes bv-waveActive {
  0%, 100% { transform: scaleX(0.95); }
  50%      { transform: scaleX(1.1); }
}


/* ---------- RUNE-LIST (BULLET LIST WITH RUNES) ---------- */

.bv-runes-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.bv-runes-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.9rem;
  color: var(--bv-text-muted);
}

.bv-runes-list li::before {
  content: "ᚠ";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-family: "Cinzel", serif;
  font-size: 1rem;
  color: var(--bv-red);
  text-shadow:
    0 0 6px rgba(255,46,46,0.7),
    0 0 18px rgba(255,46,46,0.55);
  animation: bv-runeGlow 3s ease-in-out infinite alternate;
}

/* ---------- BUTTONS ---------- */

.bv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: var(--bv-radius-pill);
  padding: 0.8rem 1.8rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform var(--bv-transition-fast),
    box-shadow var(--bv-transition-fast),
    border-color var(--bv-transition-fast),
    background var(--bv-transition-fast),
    color var(--bv-transition-fast);
}

/* Primary gold button */
.bv-btn-primary {
  background:
    radial-gradient(circle at 20% 0, rgba(212,175,55,0.35), transparent 60%),
    linear-gradient(to right, #22170a, #100a03);
  border-color: var(--bv-gold-soft);
  color: #ffffff;
  box-shadow:
    0 0 14px rgba(212,175,55,0.8),
    0 0 34px rgba(212,175,55,0.7);
  animation: bv-goldPulse 3.2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.bv-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.25) 45%, transparent 100%);
  transform: translateX(-110%);
  transition: transform 0.55s ease-out;
}

.bv-btn-primary:hover::before {
  transform: translateX(120%);
}

.bv-btn-primary:hover {
  transform: translateY(-1px);
}

/* Ghost button */
.bv-btn-ghost {
  border-color: var(--bv-border-subtle);
  background: rgba(5, 5, 8, 0.8);
  color: var(--bv-text-muted);
}

.bv-btn-ghost::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--bv-red);
  box-shadow:
    0 0 12px var(--bv-red-soft),
    0 0 20px var(--bv-red-soft);
}

.bv-btn-ghost:hover {
  color: #ffffff;
  border-color: var(--bv-red);
  box-shadow: 0 0 26px rgba(255,46,46,0.35);
  transform: translateY(-1px);
}

/* Small pill button variant */
.bv-btn-sm {
  padding: 0.55rem 1.4rem;
  font-size: 0.76rem;
}

/* ---------- FORMS / CONTACT ---------- */

.bv-form-card {
  background: var(--bv-card-bg);
  border-radius: var(--bv-radius-lg);
  border: 1px solid var(--bv-border-subtle);
  box-shadow: var(--bv-shadow-soft);
  padding: 1.3rem 1.4rem 1.5rem;
}

.bv-form-row {
  margin-bottom: 0.9rem;
}

.bv-form-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--bv-text-muted);
  margin-bottom: 0.25rem;
}

/* Input & textarea theme */
.bv-form-card input[type="text"],
.bv-form-card input[type="email"],
.bv-form-card input[type="tel"],
.bv-form-card textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 0.7rem;
  border: 1px solid rgba(255,255,255,0.16);
  padding: 0.6rem 0.8rem;
  font-size: 0.9rem;
  color: var(--bv-text-light);
  outline: none;
  transition: border-color var(--bv-transition-fast), box-shadow var(--bv-transition-fast), background var(--bv-transition-fast);
}

.bv-form-card textarea {
  min-height: 120px;
  resize: vertical;
}

.bv-form-card input:focus,
.bv-form-card textarea:focus {
  border-color: var(--bv-red);
  box-shadow: 0 0 20px rgba(255,46,46,0.35);
  background: rgba(0,0,0,0.85);
}

/* Form helper note */
.bv-form-note {
  font-size: 0.8rem;
  color: var(--bv-text-muted);
}

/* ---------- CONTACT DETAILS ---------- */

.bv-contact-item {
  margin-bottom: 0.8rem;
}

.bv-contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--bv-text-muted);
}

.bv-contact-value {
  font-size: 0.94rem;
}

.bv-contact-value a {
  color: var(--bv-red);
  position: relative;
  animation: bv-redGlow 3s ease-in-out infinite alternate;
}

.bv-contact-value a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--bv-red), transparent);
  box-shadow:
    0 0 16px var(--bv-red-soft),
    0 0 28px var(--bv-red-soft);
}

/* ---------- FOOTER ---------- */

.bv-footer {
  margin-top: var(--bv-space-xl);
  padding: 1.6rem var(--bv-space-md) 2.1rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--bv-text-muted);
  border-top: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(to top, rgba(0,0,0,0.96), rgba(0,0,0,0.8));
}

.bv-footer a {
  color: var(--bv-gold);
  animation: bv-goldPulse 3s ease-in-out infinite alternate;
}

/* ---------- UTILITIES ---------- */

.bv-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bv-stack-sm {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bv-stack-md {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bv-stack-lg {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

/* subtle divider */
.bv-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
  margin: 1.5rem 0;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 992px) {
  .bv-hero {
    grid-template-columns: 1fr;
    padding-top: var(--bv-space-lg);
  }
}

@media (max-width: 576px) {
  .bv-page,
  .bv-wrapper {
    padding-inline: 1rem;
  }

  .bv-section {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }

  .bv-hero-heading {
    letter-spacing: 0.16em;
  }
}

/* ---------- ANIMATIONS ---------- */

@keyframes bv-titleGlow {
  0% {
    text-shadow:
      0 0 8px rgba(212,175,55,0.6),
      0 0 20px rgba(212,175,55,0.4),
      0 0 35px rgba(212,175,55,0.3);
  }
  100% {
    text-shadow:
      0 0 15px rgba(212,175,55,1),
      0 0 40px rgba(212,175,55,0.8),
      0 0 60px rgba(212,175,55,0.7);
  }
}

@keyframes bv-goldPulse {
  0% {
    box-shadow:
      0 0 10px rgba(212,175,55,0.65),
      0 0 24px rgba(212,175,55,0.45);
  }
  100% {
    box-shadow:
      0 0 18px rgba(212,175,55,1),
      0 0 40px rgba(212,175,55,0.75);
  }
}

@keyframes bv-redGlow {
  0% {
    text-shadow:
      0 0 8px rgba(255,46,46,0.6),
      0 0 20px rgba(255,46,46,0.4);
  }
  100% {
    text-shadow:
      0 0 16px rgba(255,46,46,1),
      0 0 34px rgba(255,46,46,0.8);
  }
}

@keyframes bv-runeGlow {
  0% {
    text-shadow:
      0 0 5px rgba(255,46,46,0.55),
      0 0 18px rgba(255,46,46,0.4);
  }
  100% {
    text-shadow:
      0 0 11px rgba(255,46,46,1),
      0 0 26px rgba(255,46,46,0.9);
  }
}

@keyframes bv-waveSweep {
  0% {
    transform: translateX(-30%);
  }
  100% {
    transform: translateX(30%);
  }
}

.bv-countdown {
  margin: 0.75rem 0 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.16), rgba(5, 5, 10, 0.95));
}

.bv-countdown-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.85;
  margin-bottom: 0.4rem;
}

.bv-countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}

.bv-countdown-unit {
  text-align: center;
  padding: 0.35rem 0.25rem;
  border-radius: 0.7rem;
  background: rgba(0, 0, 0, 0.6);
}

.bv-countdown-value {
  font-family: var(--bv-font-mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
  font-size: 1.1rem;
  font-weight: 600;
}

.bv-countdown-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.75;
}

.bv-countdown-note {
  font-size: 0.75rem;
  color: var(--bv-text-muted);
}

.bv-countdown-complete .bv-countdown {
  border-color: var(--bv-gold);
}

.bv-spectrogram {
  margin: 0.75rem 0 1rem;
}

.bv-spectrogram-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.bv-spectrogram-caption {
  margin-top: 0.35rem;
  font-size: 0.7rem;
  color: var(--bv-text-muted);
}
