/* ==========================================================================
   SLEEPLESS DRIVER TOURS - PREMIUM DESIGN SYSTEM (Authored Journey Version)
   ========================================================================== */

/* --- Fonts & CSS Variables --- */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700;800&family=Noto+Serif+TC:wght@300;500;700&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #050507;      /* Deep atmospheric dark */
  --bg-secondary: #0c0c10;    /* Card background */
  --bg-tertiary: #14141a;     /* Input background */
  --text-primary: #f4f2eb;    /* Warm off-white */
  --text-secondary: #8c8980;  /* Muted warm grey */
  --accent-red: #d93829;      /* Cinematic Hong Kong Red */
  --accent-red-hover: #f34b3b;
  --accent-amber: #e69d45;    /* Warm city light amber */
  --accent-glow: rgba(217, 56, 41, 0.25);
  
  /* Fonts */
  --font-serif: "Noto Serif TC", "Georgia", serif;
  --font-sans: "Outfit", "Inter", sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;
  
  /* Transitions */
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* --- Base & Reset --- */
html, body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

::selection {
  background-color: var(--accent-red);
  color: var(--text-primary);
}

/* --- Layout Utility Classes --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-spacing {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .section-spacing {
    padding: 70px 0;
  }
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.15;
}

.title-xl {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.title-lg {
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.title-md {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 500;
}

.font-serif {
  font-family: var(--font-serif);
  font-style: italic;
}

.font-mono {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.accent-text-red {
  color: var(--accent-red);
}

/* --- Interactive Elements & Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-red);
  color: var(--text-primary);
  padding: 16px 36px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--accent-glow);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-primary:hover {
  background-color: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(217, 56, 41, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--text-primary);
  padding: 15px 35px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(244, 242, 235, 0.2);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--text-primary);
  background-color: rgba(244, 242, 235, 0.05);
}

/* --- Cinematic YouTube Overlay & Docking --- */
.docked-video-card {
  position: sticky;
  top: 40px;
  background-color: var(--bg-secondary);
  border: 1px solid rgba(244, 242, 235, 0.08);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  z-index: 10;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Fullscreen state overlay without DOM reattachment */
.docked-video-card.fullscreen {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  border-radius: 0;
  border: none;
  box-shadow: none;
  top: 0;
  left: 0;
  cursor: pointer; /* indicate it registers click to show HUD */
}

.docked-video-player {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.1) saturate(1.1);
  transition: filter 0.8s ease;
  pointer-events: none !important;
}

/* Video is bright and clear in fullscreen */
.docked-video-card.fullscreen .docked-video-player {
  filter: brightness(1) contrast(1) saturate(1);
}

.docked-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,5,7,0.85) 0%, transparent 40%);
  pointer-events: none;
  transition: opacity 0.8s ease;
  z-index: 2;
}

.docked-video-card.fullscreen .docked-video-overlay {
  background: transparent; /* Remove cover overlay in fullscreen */
}

/* Subtitle and Caption Overlays on Fullscreen */
.caption-overlay-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10010;
}

.cinematic-caption {
  position: absolute;
  max-width: 720px;
  padding: 0 30px;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 3.8vw, 36px);
  line-height: 1.4;
  color: var(--text-primary);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(12px);
  text-shadow: 0 4px 20px rgba(0,0,0,0.95);
}

.cinematic-caption.active {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Overlaid HUD Controls in Fullscreen (Auto-fades) */
.cinematic-hud-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 10020;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.cinematic-hud-controls.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Autoplay audio activation banner */
.sound-alert-banner {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-red);
  color: var(--text-primary);
  padding: 12px 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(217,56,41,0.4);
  cursor: pointer;
  z-index: 10025;
  animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
  0% { box-shadow: 0 0 0 0 rgba(217,56,41,0.7); }
  70% { box-shadow: 0 0 0 15px rgba(217,56,41,0); }
  100% { box-shadow: 0 0 0 0 rgba(217,56,41,0); }
}

.cinematic-btn {
  background: rgba(5, 5, 7, 0.85);
  border: 1px solid rgba(244, 242, 235, 0.25);
  border-radius: 4px;
  padding: 12px 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-primary);
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition-fast);
}

.cinematic-btn:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  transform: translateY(-1px);
}

/* --- Photography Categories Section --- */
.visual-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.visual-category-card {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(244, 242, 235, 0.05);
  border-radius: 6px;
  padding: 24px;
  transition: var(--transition-smooth);
}

.visual-category-card:hover {
  border-color: rgba(244, 242, 235, 0.15);
  background-color: rgba(244, 242, 235, 0.01);
}

.visual-category-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-amber);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.visual-category-body {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* --- Experiences Section Grid --- */
.experiences-grid {
  display: grid;
  grid-template-columns: 5.2fr 6.8fr;
  gap: 50px;
  align-items: start;
}

@media (max-width: 990px) {
  .experiences-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .docked-video-card {
    position: relative;
    top: 0;
  }
}

/* --- Packages Column --- */
.packages-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.package-card-main {
  background-color: var(--bg-secondary);
  border: 2px solid var(--accent-red);
  border-radius: 10px;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 50px rgba(217, 56, 41, 0.08);
}

.package-card-main .badge {
  position: absolute;
  top: -14px;
  left: 30px;
  background-color: var(--accent-red);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
}

.package-card-sub {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(244, 242, 235, 0.08);
  border-radius: 8px;
  padding: 30px;
  transition: var(--transition-smooth);
}

.package-card-sub:hover {
  border-color: rgba(244, 242, 235, 0.16);
  transform: translateY(-2px);
}

.package-price-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0 20px;
}

.package-price-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-red);
}

.package-price-subtext {
  font-size: 13px;
  color: var(--text-secondary);
}

/* --- The Five Acts Narrative Timeline --- */
.acts-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 50px;
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.acts-timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background-color: rgba(244, 242, 235, 0.1);
}

.act-item {
  display: flex;
  gap: 40px;
  position: relative;
  padding-left: 20px;
}

.act-badge {
  position: absolute;
  left: 10px;
  top: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 2px solid var(--accent-red);
  transform: translateX(-50%);
  z-index: 2;
}

.act-content {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(244, 242, 235, 0.04);
  border-radius: 6px;
  padding: 24px;
  flex-grow: 1;
}

.act-number {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent-amber);
}

.act-title {
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 600;
  margin-top: 4px;
  margin-bottom: 10px;
}

.act-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* --- Multi-Step Booking Funnel --- */
.booking-funnel-box {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(244, 242, 235, 0.08);
  border-radius: 12px;
  padding: 40px;
  max-width: 800px;
  margin: 40px auto 0;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}

@media (max-width: 600px) {
  .booking-funnel-box {
    padding: 24px;
  }
}

.progress-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.progress-bar-bg {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: rgba(244, 242, 235, 0.1);
  z-index: 1;
  transform: translateY(-50%);
}

.progress-bar-fill {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background-color: var(--accent-red);
  z-index: 2;
  transform: translateY(-50%);
  transition: var(--transition-smooth);
  width: 0%;
}

.progress-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  border: 2px solid rgba(244, 242, 235, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  z-index: 3;
  transition: var(--transition-smooth);
}

.progress-step.active {
  border-color: var(--accent-red);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  box-shadow: 0 0 15px var(--accent-glow);
}

.progress-step.completed {
  border-color: var(--accent-red);
  background-color: var(--accent-red);
  color: var(--text-primary);
}

.form-step {
  display: none;
  animation: stepFade 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-step.active {
  display: block;
}

@keyframes stepFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.form-grid-full {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-control {
  background-color: var(--bg-tertiary);
  border: 1px solid rgba(244, 242, 235, 0.1);
  border-radius: 4px;
  color: var(--text-primary);
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  transition: var(--transition-fast);
  outline: none;
  width: 100%;
}

.form-control:focus {
  border-color: var(--accent-red);
  box-shadow: 0 0 10px rgba(217, 56, 41, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  border-top: 1px solid rgba(244, 242, 235, 0.08);
  padding-top: 25px;
}

/* --- FAQ Accordion --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(244, 242, 235, 0.08);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 30px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
}

.faq-trigger span {
  padding-right: 20px;
}

.faq-icon {
  font-size: 12px;
  color: var(--accent-red);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-body {
  padding: 0 30px 24px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* --- Weather Adaptability Panel --- */
.weather-card {
  background: linear-gradient(145deg, #0a0a0f 0%, #0d0908 100%);
  border: 1px solid rgba(244, 242, 235, 0.06);
  border-radius: 12px;
  padding: 40px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 768px) {
  .weather-card {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 20px;
  }
}

.weather-indicator-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.weather-badge {
  background-color: rgba(244, 242, 235, 0.03);
  border: 1px solid rgba(244, 242, 235, 0.06);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: var(--transition-fast);
}

.weather-badge:hover {
  background-color: rgba(244, 242, 235, 0.06);
  border-color: rgba(244, 242, 235, 0.15);
}

.weather-badge .title {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent-amber);
  margin-top: 8px;
  text-transform: uppercase;
}

.weather-badge .desc {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 6px;
}

/* --- Reviews Section --- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.review-card {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(244, 242, 235, 0.06);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-primary);
  font-style: italic;
}

.review-author {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-author span {
  text-transform: uppercase;
}

/* --- Sticky Bottom Mobile CTA --- */
.sticky-cta-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(5, 5, 7, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(244, 242, 235, 0.08);
  padding: 16px 24px;
  display: none;
  z-index: 50;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
  animation: slideUpMobile 0.4s ease forwards;
}

@keyframes slideUpMobile {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 80px; /* Leave room for sticky bar */
  }
  .sticky-cta-mobile {
    display: flex;
  }
}

/* --- Form Confirmation Panel --- */
.confirmation-card {
  text-align: center;
  padding: 40px 20px;
}

.confirmation-success-icon {
  font-size: 3rem;
  color: var(--accent-amber);
  margin-bottom: 20px;
}

.confirmation-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.confirmation-card p {
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 500px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.summary-box {
  background-color: var(--bg-tertiary);
  border: 1px solid rgba(244, 242, 235, 0.05);
  border-radius: 6px;
  padding: 20px;
  text-align: left;
  max-width: 500px;
  margin: 0 auto 30px;
  font-size: 13px;
  line-height: 1.6;
}

.summary-title {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--accent-red);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(244, 242, 235, 0.05);
  padding-bottom: 6px;
}

/* --- Media / YouTube Embed Stills --- */
.video-proof-card {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(244, 242, 235, 0.06);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.video-thumb-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  cursor: pointer;
  background-color: #000;
}

.video-thumb-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.95);
  transition: var(--transition-smooth);
}

.video-proof-card:hover .video-thumb-container img {
  filter: brightness(0.9) saturate(1.15);
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.video-play-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(5, 5, 7, 0.6);
  border: 1px solid rgba(244, 242, 235, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.video-thumb-container:hover .video-play-icon {
  transform: scale(1.1);
  background: var(--accent-red);
  border-color: var(--accent-red);
}

.video-play-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent var(--text-primary);
  margin-left: 4px;
}

.video-body-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.video-stat {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--accent-amber);
  margin-top: auto;
}

/* --- Floating WhatsApp widget --- */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 45;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
  fill: #fff;
  width: 28px;
  height: 28px;
}

@media (max-width: 767px) {
  .floating-whatsapp {
    bottom: 90px;
    right: 16px;
    width: 48px;
    height: 48px;
  }
  .floating-whatsapp svg {
    width: 24px;
    height: 24px;
  }
}

/* --- Red Taxi Scroll Progress Bar --- */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1000;
  background: rgba(244, 242, 235, 0.05);
}
.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--accent-red);
  transition: width 0.1s linear;
  position: relative;
}
.scroll-progress-taxi {
  position: absolute;
  right: -8px;
  top: -8px;
  width: 24px;
  height: 24px;
  background-image: url('uploads/cut/Frame 06.png');
  background-size: contain;
  background-repeat: no-repeat;
  transform: scaleX(-1);
  pointer-events: none;
}

/* --- Reduced motion configurations --- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-delay: 0s !important;
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
  .docked-video-card, .cinematic-caption {
    transition: none !important;
  }
}
