:root {
  --bg: #d7d9de;
  --bg-deep: #c9ccd3;
  --card: #0f1115;
  --card-soft: #171b22;
  --card-border: rgba(255, 255, 255, 0.08);
  --text: #f4f4f6;
  --muted: #b3b8c2;
  --dark-text: #1b1f26;
  --accent: #e53131;
  --accent-dark: #a91520;
  --accent-soft: #ff6b6b;
  --glow: rgba(229, 49, 49, 0.35);
  --shadow: 0 30px 80px rgba(6, 10, 18, 0.22);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0 !important;
  padding: 0 !important;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  background-color: #d7c7cb !important;
  color: var(--dark-text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: 9999;
  background-color: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 16px 16px;
}

/* Spacer to push content below fixed header */
.topbar-spacer {
  height: 74px;
  width: 100%;
  display: block;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  background-color: #000;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--accent) 0%, #7d1018 100%);
  box-shadow: 0 14px 28px rgba(229, 49, 49, 0.35);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
}

.brand small {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #c5cad3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav a {
  color: #e6e9ef;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-dark) 100%
  );
  color: white;
  box-shadow: 0 18px 40px var(--glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-wrap {
  padding: 34px 0 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(229, 49, 49, 0.18),
      transparent 26%
    ),
    radial-gradient(
      circle at 100% 0%,
      rgba(255, 255, 255, 0.07),
      transparent 20%
    ),
    linear-gradient(180deg, #11141a 0%, #090b10 100%);
  border-radius: 36px;
  color: white;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -90px -90px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(229, 49, 49, 0.22) 0%,
    rgba(229, 49, 49, 0) 68%
  );
  filter: blur(10px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  padding: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e5e8ef;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(229, 49, 49, 0.85);
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(2.5rem, 6vw, 4.9rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #ff4d4d;
  text-wrap: balance;
}

.hero-subtitle {
  margin-top: 18px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.6;
  color: #f3f4f8;
  max-width: 760px;
}

.hero-copy {
  margin-top: 18px;
  font-size: 1rem;
  color: #bec5cf;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-panel {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 24px;
  backdrop-filter: blur(8px);
}

.hero-panel h3 {
  font-size: 14px;
  color: #b5bbc5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.metric-list {
  display: grid;
  gap: 12px;
}

.metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.metric strong {
  color: white;
  font-size: 1rem;
}

.metric span {
  color: #c2c8d2;
  font-size: 0.92rem;
  text-align: right;
}

.hero-note {
  margin-top: 14px;
  color: #98a0ac;
  font-size: 0.92rem;
}

.section {
  padding: 22px 0;
}

.banner {
  margin: 24px auto 0;
  padding: 24px 30px;
  background: linear-gradient(180deg, #12151c 0%, #0b0d12 100%);
  color: white;
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.banner::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(229, 49, 49, 0.8) 50%,
    transparent 100%
  );
}

.banner h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
  line-height: 1.05;
  color: #fff;
}

.banner p {
  margin-top: 12px;
  color: #c4cad4;
  max-width: 900px;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

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

.card {
  background: linear-gradient(180deg, #141820 0%, #0f1116 100%);
  color: var(--text);
  border-radius: 28px;
  padding: 28px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.card.light {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(255, 255, 255, 0.68) 100%
  );
  color: var(--dark-text);
  border: 1px solid rgba(16, 19, 24, 0.08);
  box-shadow: 0 20px 50px rgba(18, 22, 31, 0.12);
}

.card .kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 12px;
}

.light .kicker {
  color: var(--accent-dark);
}

.card h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

.card p {
  color: inherit;
  opacity: 0.88;
}

.quote {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 255, 255, 0.05);
  color: #e6e9ef;
  font-size: 1rem;
}

.light .quote {
  background: rgba(15, 17, 21, 0.05);
  color: var(--dark-text);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.light .feature-item {
  background: rgba(15, 17, 21, 0.05);
  border-color: rgba(15, 17, 21, 0.08);
}

.feature-icon,
.step-num,
.video-badge {
  width: 34px;
  min-width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-dark) 100%
  );
  color: white;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(229, 49, 49, 0.3);
}

.video-section {
  margin-top: 24px;
  /* padding: 30px; */
  border-radius: 30px;
  color: white;
  /* background:
    radial-gradient(
      circle at top center,
      rgba(229, 49, 49, 0.14),
      transparent 28%
    ),
    linear-gradient(180deg, #12151c 0%, #090b10 100%); */
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* box-shadow: var(--shadow); */
}

.video-section-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: center;
}

.video-copy .eyebrow-lite {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #eceff4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-copy h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
  color: #ff4d4d;
}

.video-copy p.lead {
  margin-top: 16px;
  color: #e6e9ef;
  font-size: 1.08rem;
  max-width: 720px;
}

.video-points {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.video-point {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cfd5de;
}

.video-cta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0.03) 18%,
      transparent 34%
    ),
    radial-gradient(
      circle at center,
      rgba(229, 49, 49, 0.34) 0%,
      rgba(229, 49, 49, 0.12) 34%,
      rgba(10, 12, 18, 0) 58%
    ),
    linear-gradient(160deg, #2a0d12 0%, #7f111a 42%, #1a1f2a 100%);
  border: 3px dashed rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.05),
    0 0 0 10px rgba(229, 49, 49, 0.08),
    0 30px 80px rgba(6, 10, 18, 0.28);
  display: grid;
  place-items: center;
  padding: 26px;
  min-height: 420px;
}

.video-shell::after {
  content: "VIDEO PLACEHOLDER";
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-shell.square {
  aspect-ratio: 1 / 1;
  min-height: auto;
}

.video-shell.landscape {
  aspect-ratio: 16 / 9;
  min-height: auto;
}

.video-placeholder-inner {
  text-align: center;
  max-width: 500px;
  padding: 12px;
}

.video-label {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.play-ring {
  width: 98px;
  height: 98px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(
    circle at 35% 35%,
    #ff8383 0%,
    var(--accent) 42%,
    #7d1018 100%
  );
  box-shadow:
    0 0 0 14px rgba(229, 49, 49, 0.1),
    0 0 80px rgba(229, 49, 49, 0.35);
  margin: 0 auto 22px;
}

.play-triangle {
  width: 0;
  height: 0;
  border-left: 20px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

.video-placeholder-inner h3 {
  color: white;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}

.video-placeholder-inner p {
  max-width: 680px;
  color: #c6ccd6;
  margin: 0 auto;
}

.placeholder-note {
  margin-top: 16px;
  font-size: 0.94rem;
  color: #98a0ac;
}

.steps {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.step:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.step h4 {
  font-size: 1.02rem;
  margin-bottom: 4px;
  color: white;
}

.step p {
  color: #c5cbd5;
  font-size: 0.96rem;
}

.benefit {
  height: 100%;
}

.benefit strong {
  display: block;
  font-size: 1.04rem;
  color: white;
  margin-bottom: 8px;
}

.light .benefit strong {
  color: var(--dark-text);
}

.cta {
  margin: 28px 0 50px;
  text-align: center;
  padding: 44px 26px;
  background:
    radial-gradient(
      circle at top center,
      rgba(229, 49, 49, 0.16),
      transparent 26%
    ),
    linear-gradient(180deg, #12151c 0%, #0a0c11 100%);
  border-radius: 34px;
  color: white;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  color: #ff4d4d;
}

.cta p {
  margin: 14px auto 24px;
  max-width: 760px;
  color: #c3cad3;
  font-size: 1.05rem;
}

.cta-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.pill {
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #eef1f5;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  font-weight: 700;
}

footer {
  padding: 0 0 42px;
  color: #3a404d;
  font-size: 0.93rem;
}

.footer-card {
  border-radius: 24px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(17, 20, 26, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1080px) {
  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .video-section-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    padding: 10px 0;
  }
  .nav {
    display: none;
  }
  .hero-grid {
    padding: 28px;
  }
  .banner,
  .card,
  .cta,
  .video-section,
  .video-shell {
    border-radius: 24px;
  }
  .hero {
    border-radius: 28px;
  }
  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }
  .btn {
    width: 100%;
  }
  .hero-actions,
  .video-cta {
    flex-direction: column;
  }
  .video-section {
    padding: 22px;
  }
}
/* =====================================================
   CUSTOM VIDEO PLAYER STYLES
   ===================================================== */

.apc-video-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}

.apc-player {
  position: relative;
  width: 100%;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  aspect-ratio: 16 / 9;
  border: 3px solid rgba(102, 126, 234, 0.3);
  transition: all 0.4s ease;
}

.apc-player:hover {
  border-color: var(--accent, #e53131);
}

.apc-player video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.apc-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
  z-index: 5;
}

.apc-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.apc-big-play {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff0000, #667eea);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: #fff;
  box-shadow: 0 0 40px rgba(255, 0, 0, 0.5), 0 0 80px rgba(102, 126, 234, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: playPulse 2s ease-in-out infinite;
}

.apc-big-play:hover {
  box-shadow: 0 0 60px rgba(255, 0, 0, 0.7), 0 0 100px rgba(102, 126, 234, 0.4);
}

.apc-big-play i { margin-left: 4px; }

.apc-player:hover .apc-big-play {
  animation: none;
  transform: scale(1.1);
}

@keyframes playPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.apc-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 6;
}

.apc-player.idle .apc-controls {
  opacity: 0;
  transform: translateY(6px);
}

.apc-progress-wrap {
  position: relative;
  height: 5px;
  cursor: pointer;
  transition: height 0.15s;
}

.apc-progress-wrap:hover { height: 7px; }
.apc-progress-wrap:hover .apc-progress-thumb { opacity: 1; }

.apc-progress-bg {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  overflow: visible;
  position: relative;
}

.apc-buffered {
  position: absolute;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 99px;
  width: 0%;
  transition: width 0.4s linear;
}

.apc-played {
  position: absolute;
  height: 100%;
  background: linear-gradient(90deg, #ff0000, #667eea);
  border-radius: 99px;
  width: 0%;
  transition: width 0.1s linear;
}

.apc-progress-thumb {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px #ff0000;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s, transform 0.15s;
  pointer-events: none;
}

.apc-progress-thumb.dragging {
  transform: translate(-50%, -50%) scale(1.3);
  opacity: 1;
}

.apc-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
}

.apc-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.apc-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.apc-btn i { font-size: 1rem; }

.apc-time {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.apc-time span { color: #fff; }

.apc-volume-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.apc-volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 72px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  outline: none;
  cursor: pointer;
  accent-color: #667eea;
  transition: width 0.2s;
}

.apc-volume-slider:hover { width: 90px; }

.apc-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff0000;
  cursor: pointer;
}

.apc-speed {
  font-size: 0.72rem;
  font-weight: 700;
  color: #667eea;
  background: rgba(102, 126, 234, 0.15);
  border: 1px solid rgba(102, 126, 234, 0.35);
  border-radius: 5px;
  padding: 2px 7px;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

.apc-speed:hover { background: rgba(102, 126, 234, 0.3); }

.apc-speed-menu {
  position: absolute;
  bottom: 56px;
  right: 52px;
  background: #111;
  border: 1px solid rgba(102, 126, 234, 0.35);
  border-radius: 10px;
  overflow: hidden;
  display: none;
  flex-direction: column;
  z-index: 20;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
  min-width: 90px;
}

.apc-speed-menu.open { display: flex; }

.apc-speed-opt {
  padding: 8px 16px;
  font-size: 0.8rem;
  color: #fff;
  cursor: pointer;
  transition: background 0.15s;
  text-align: center;
}

.apc-speed-opt:hover { background: rgba(102, 126, 234, 0.25); }
.apc-speed-opt.active { color: #ff0000; font-weight: 700; }

.apc-spacer { flex: 1; }

.apc-spinner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 7;
  opacity: 0;
  transition: opacity 0.2s;
}

.apc-spinner.visible { opacity: 1; }

.apc-spinner-ring {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255, 0, 0, 0.2);
  border-top-color: #ff0000;
  border-radius: 50%;
  animation: apcSpin 0.7s linear infinite;
}

@keyframes apcSpin { to { transform: rotate(360deg); } }

.apc-seek-flash {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 0, 0, 0.3);
  color: #fff;
  font-size: 1.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 8;
}

.apc-seek-flash.left  { left: 18%; }
.apc-seek-flash.right { right: 18%; }
.apc-seek-flash.show  { opacity: 1; }

@media (max-width: 520px) {
  .apc-volume-slider { display: none; }
  .apc-speed         { display: none; }
  .apc-time          { font-size: 0.7rem; }
  .apc-big-play      { width: 60px; height: 60px; font-size: 1.4rem; }
}
