/* CSS Variables */
:root {
  --color-background: black;
  --color-text: white;
  --color-text-dark: black;
  --color-accent-primary: red;
  --color-accent-secondary: orange;
  --color-accent-tertiary: #FFC107;
  --color-error: #dc3545;
  --color-success: #28a745;
  --color-border: #444;
  --color-overlay: rgba(0, 0, 0, 0.5);

  --shadow-standard: 0 0 10px gray;
  --shadow-hover: 0 0 15px white;
  --shadow-error: 0 0 20px var(--color-error);
  --shadow-success: 0 0 20px var(--color-accent-primary);

  --transition-standard: all 0.3s ease;
  --transition-modal: transform 0.5s ease-out, opacity 0.5s ease-out;

  --content-width: 325px;
  --button-height: 35px;
  --logo-size: 150px;
  --header-height: 175px;
  --border-radius: 5px;
}

/* Accessibility - Skip to content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-accent-primary);
  color: var(--color-text);
  padding: 8px;
  z-index: 9999;
  transition: top 0.3s ease;
}
.skip-link:focus {
  top: 0;
}
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* 1) Make sure html & body can fill the screen so flex can place footer properly */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

/* 2) The .wrapper holds the main content with min-height, so the footer sits at bottom if short. */
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* The .video-container can be flexible if needed, 
   so it grows to fill space, pushing footer down. */
.video-container {
  flex: 1 0 auto; /* This ensures the container can grow */
  position: relative;
  overflow: hidden;
  will-change: transform; /* Performance optimization for animations */
}

/* Video fallback & container */
.video-fallback {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(45deg, #000, #333);
  z-index: -3;
}

#background-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}

#video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--color-overlay);
  z-index: -1;
}

/* Footer does not shrink or overlap content */
footer {
  flex-shrink: 0;
  background-color: var(--color-background);
  color: var(--color-text);
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
  margin-top: 0px;
}

/* Footer links */
footer a {
  color: var(--color-text);
  text-decoration: underline;
  margin: 0 10px;
  transition: var(--transition-standard);
}
footer a:hover,
footer a:focus {
  color: var(--color-accent-tertiary);
}
footer a:focus-visible {
  outline: 2px solid var(--color-accent-tertiary);
  outline-offset: 2px;
}

/* Body content styling */
body {
  font-family: 'Arial', sans-serif;
  background-color: var(--color-background);
  color: var(--color-text);
  text-align: center;
  line-height: 1.5;
}

.main-content {
  position: relative;
  z-index: 0;
}

/* Header */
header {
  position: relative;
  text-align: center;
  background-color: var(--color-accent-primary);
  color: var(--color-text);
  padding: 0;
  height: var(--header-height);
}
.logo-image {
  position: absolute;
  top: 5%; left: 2%;
  width: var(--logo-size);
  height: auto;
  border-radius: 50%;
  border: 3px solid var(--color-text);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
  z-index: 1;
  cursor: pointer;
}
.banner-image {
  width: 100%;
  height: var(--header-height);
  object-fit: cover;
  display: block;
}

/* Services area */
#services {
  position: absolute;
  top: 10px; 
  right: 20px;
  text-align: right;
  line-height: 1.2;
  padding-bottom: 5px;
}
#services h2 {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 1.8rem;
  text-shadow: 0 0 5px rgba(255,255,255,0.7);
  animation: pulseTextGlow 2s infinite alternate;
}
@keyframes pulseTextGlow {
  from {
    text-shadow: 0 0 2px rgba(255,255,255,0.5), 0 0 5px rgba(255,255,255,0.3);
  }
  to {
    text-shadow: 0 0 5px rgba(255,255,255,0.8), 0 0 10px rgba(255,255,255,0.5), 0 0 15px rgba(255,255,255,0.3);
  }
}

/* Divider */
.divider {
  height: 2px;
  background-color: black;
  position: relative;
  margin: 0;
  z-index: 1;
}
.divider::after {
  content: '';
  position: absolute;
  top: -1px; left:0; right:0; bottom:-1px;
  border: 1px solid white;
  box-shadow: 0 0 8px white;
  animation: pulseBorder 2s infinite alternate;
  z-index: -1;
}
@keyframes pulseBorder {
  from { opacity:0.5; box-shadow: 0 0 3px white; }
  to   { opacity:1;   box-shadow: 0 0 8px white, 0 0 12px rgba(255,255,255,0.5); }
}

/* "CONNECT WITH" heading fade+zoom+pulse */
.connect-heading {
  text-align: center;
  margin: 10px 0;
  font-size: 1.6rem;
  text-transform: uppercase;
  opacity: 0;
  /* Initial fadeZoomIn animation, followed by continuous pulsing */
  animation: fadeZoomIn 1s ease-in-out 5s forwards, softPulse 3s ease-in-out 6s infinite;
  will-change: opacity, transform; /* Performance optimization */
}
@keyframes fadeZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Add this new animation for the soft pulsing effect */
@keyframes softPulse {
  0% {
    transform: scale(1);
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.3), 0 0 10px rgba(255, 165, 0, 0.2);
  }
  50% {
    transform: scale(1.02);
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.5), 0 0 15px rgba(255, 165, 0, 0.3);
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.3), 0 0 10px rgba(255, 165, 0, 0.2);
  }
}

/* Top buttons container (YOUR INFO / MY INFO) */
.top-buttons-container {
  width: var(--content-width);
  margin: 15px auto 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  justify-items: center;
  max-width: 325px;
}

/* Buttons styling */
.gradient-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, var(--color-accent-secondary) 0%, var(--color-accent-tertiary) 50%, purple 100%);
  color: var(--color-text-dark);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-standard);
  text-transform: uppercase;
  font-weight: bold;
  height: var(--button-height);
  transition: var(--transition-standard);
  width: 155px;
  cursor: pointer;
  font-size: 0.8rem;
  will-change: transform, box-shadow; /* Performance optimization */
}
.gradient-button:hover,
.gradient-button:focus {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
  outline: none;
}
.gradient-button:focus-visible {
  outline: 2px solid var(--color-accent-tertiary);
  outline-offset: 2px;
}
button, 
.action-button {
  display: inline-block;
  position: relative;
  padding: 8px 15px;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--color-text-dark);
  font-weight: bold;
  background: linear-gradient(90deg, var(--color-accent-primary), var(--color-accent-secondary), var(--color-text));
  border: 1px solid var(--color-text);
  border-radius: var(--border-radius);
  width: 155px;
  height: var(--button-height);
  text-align: center;
  transition: var(--transition-standard);
  box-shadow: var(--shadow-standard);
  background-size: 100%;
  animation: colorShift 3s infinite alternate;
  cursor: pointer;
  will-change: transform, box-shadow, background-position; /* Performance optimization */
}
@keyframes colorShift {
  0%   { background-position: 0%; }
  100% { background-position: 100%; }
}
button:hover,
.action-button:hover,
button:focus,
.action-button:focus {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
  outline: none;
}
button:focus-visible,
.action-button:focus-visible {
  outline: 2px solid var(--color-accent-tertiary);
  outline-offset: 2px;
}
button.loading {
  background: linear-gradient(90deg, #ccc, #eee);
  animation: none;
  opacity: 0.7;
}
button.loading::after {
  content: "";
  display: inline-block;
  width: 1em; height: 1em;
  border: 2px solid rgba(0,0,0,0.2);
  border-top: 2px solid var(--color-text-dark);
  border-radius: 50%;
  margin-left: 5px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



/* Social buttons container (dynamic) */
.social-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 10px auto;
  width: fit-content;
  max-width: var(--content-width);
}

/* Icon button combos */
.icon-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5px;
}
.icon-left {
  width: 24px; 
  height: 24px; 
  margin-right: 8px;
}
.icon-button-right {
  text-align: center;
}
.icon-button-right .icon-right {
  position: absolute; 
  right:8px; 
  top:50%; 
  transform:translateY(-50%);
  width:24px; 
  height:24px;
}
.icon-button-left-centered {
  text-align: center; 
  position: relative;
}
.icon-button-left-centered .icon-left-centered {
  position: absolute; 
  left:8px; 
  top:50%; 
  transform:translateY(-50%);
  width:24px; 
  height:24px;
}

/* About section */
#about {
  width: var(--content-width);
  margin: 0 auto;
  text-align: center;
}

/* Booking popup */
#booking-popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -150%);
  background: var(--color-text);
  color: var(--color-text-dark);  
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-success);
  width: 330px;
  max-width: 90%;
  transition: var(--transition-modal);
  opacity: 0;
  will-change: transform, opacity; /* Performance optimization */
}
#booking-popup.show {
  transform: translate(-50%, -50%);
  opacity: 1;
}
#booking-popup .popup-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Booking form elements */
#booking-popup form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#booking-popup form input,
#booking-popup form textarea,
#booking-popup .close-button,
#booking-popup .requests-btn {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border-radius: var(--border-radius);
  min-width: 100%;
}

#booking-popup form input,
#booking-popup form textarea {
  border: 1px solid #ccc;
  margin-bottom: 10px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#booking-popup form input:focus,
#booking-popup form textarea:focus {
  border-color: var(--color-accent-primary);
  outline: none;
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}
#booking-popup form textarea {
  margin-bottom: 20px;
  min-height: 80px;
}
#booking-popup form input[aria-invalid="true"],
#booking-popup form textarea[aria-invalid="true"] {
  border-color: var(--color-error);
  background-color: rgba(220, 53, 69, 0.05);
}
/* Submit button */
#booking-popup form button {
  background: linear-gradient(90deg, var(--color-accent-primary), var(--color-accent-secondary));
  color: var(--color-text-dark);
  border: none;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 10px;
  transition: var(--transition-standard);
  width: 100%;
}
#booking-popup form button:hover,
#booking-popup form button:focus {
  transform: scale(1.03);
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
}
/* Close button */
#booking-popup .close-button {
  background: linear-gradient(90deg, #333, #666);
  color: var(--color-text);
  border: none;
  cursor: pointer;
  transition: var(--transition-standard);
  width: 100%;
}
#booking-popup .close-button:hover,
#booking-popup .close-button:focus {
  background: linear-gradient(90deg, #444, #777);
  transform: scale(1.03);
}

/* Error messages */
#booking-popup .error-message {
  color: var(--color-error);
  font-size: 0.8rem;
  align-self: flex-start;
  margin-top: -8px;
  margin-bottom: 10px;
  min-height: 0.8em;
  width: 100%;
  font-weight: 500;
}
#booking-popup .error-message:empty {
  display: none;
}

/* ← REQUESTS POPUP INSERTED HERE */
#requests-popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -150%);
  background: var(--color-text);
  color: var(--color-text-dark);
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-success);
  width: 330px;
  max-width: 90%;
  transition: var(--transition-modal);
  opacity: 0;
  will-change: transform, opacity;
}
#requests-popup.show {
  transform: translate(-50%, -50%);
  opacity: 1;
}
#requests-popup .popup-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Toast notification */
.toast {
  visibility: hidden;
  width: 330px;
  max-width: 90%;
  background-color: var(--color-success);
  color: var(--color-text);
  text-align: center;
  border-radius: 10px;
  padding: 20px;
  position: fixed;
  z-index: 1001;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  font-size: 1.5rem;
  font-weight: bold;
  will-change: transform, opacity, box-shadow; /* Performance optimization */
}
.toast.show {
  visibility: visible;
  animation: fadein 0.5s, glow 2s infinite alternate, pulse 2s infinite alternate, stay 7s forwards, fadeout 0.5s 7s;
}
.toast.error {
  background-color: var(--color-error);
}
.spark {
  position: absolute;
  width: 10px; 
  height: 10px;
  background-color: var(--color-accent-tertiary);
  border-radius: 50%;
  z-index: 1002;
  pointer-events: none;
  will-change: transform, opacity; /* Performance optimization */
}
@keyframes sparkMove {
  0% {
    transform: translate(-50%, -50%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty)));
    opacity: 0;
  }
}
@keyframes glow {
  from { box-shadow: 0 0 10px 0px var(--color-success); }
  to   { box-shadow: 0 0 25px 10px var(--color-success); }
}
@keyframes pulse {
  from { transform: translate(-50%, -50%) scale(1); }
  to   { transform: translate(-50%, -50%) scale(1.05); }
}
@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes stay {
  0%, 100% { opacity: l; }
}
@keyframes fadeout {
  from { opacity: 1; }
  to   { opacity: 0; }
}

/* Location popup (slides from bottom) */
#location-popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 50%;
  bottom: -100%;
  transform: translate(-50%, 50%);
  background: var(--color-text);
  color: var(--color-text-dark);
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-success);
  width: 330px;
  max-width: 90%;
  animation: slideFromBottom 0.5s ease-out forwards;
  will-change: transform, opacity; /* Performance optimization */
}
@keyframes slideFromBottom {
  from {
    bottom: -100%;
    opacity: 0;
  }
  to {
    bottom: 50%;
    opacity: 1;
  }
}
#location-popup.show {
  display: block;
}
.location-popup-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#location-popup h2 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: var(--color-text-dark);
  text-align: center;
}
#location-popup h3 {
  margin: 15px 0;
  font-size: 1.1rem;
  color: var(--color-text-dark);
  text-align: center;
}
.submitted-data {
  background-color: #f8f8f8;
  border-radius: var(--border-radius);
  padding: 15px;
  margin-bottom: 10px;
  text-align: left;
  width: 100%;
  border: 1px solid #e0e0e0;
}
.data-item {
  margin-bottom: 8px;
}
.data-item strong {
  color: #333;
  display: inline-block;
  width: 70px;
}
.location-question {
  width: 100%;
  text-align: center;
}
.location-options {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
  margin-top: 15px;
}
.location-btn {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition-standard);
  min-width: 100%;
  align-self: stretch;
  will-change: transform; /* Performance optimization */
}
.location-btn:hover,
.location-btn:focus {
  transform: scale(1.05);
  outline: none;
}
.location-btn:focus-visible {
  outline: 2px solid var(--color-accent-tertiary);
  outline-offset: 2px;
}
.location-btn.primary-btn {
  background: linear-gradient(90deg, var(--color-accent-primary), var(--color-accent-secondary));
  color: var(--color-text-dark);
}
.location-btn.secondary-btn {
  background: linear-gradient(90deg, #ddd, #fff);
  color: var(--color-text-dark);
}
.location-btn.loading {
  position: relative;
  color: transparent !important;
}
.location-btn.loading::after {
  content: "";
  position: absolute;
  width: 20px; height: 20px;
  top: calc(50% - 10px); left: calc(50% - 10px);
  border: 2px solid rgba(0,0,0,0.1);
  border-top-color: var(--color-text-dark);
  border-radius: 50%;
  animation: spin 1s ease-in-out infinite;
}

/* Logo popup */
#logo-popup {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  will-change: opacity; /* Performance optimization */
}
#logo-popup.show {
  display: flex;
  animation: fadeIn 0.3s ease-out forwards;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
#logo-popup-container {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}
#logo-popup-image {
  max-width: 100%;
  max-height: 90vh;
  border: 3px solid var(--color-accent-primary);
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(255,0,0,0.6);
}
.logo-popup-message {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  background-color: rgba(0,0,0,0.5);
  padding: 10px 20px;
  border-radius: 10px;
  white-space: nowrap;
  pointer-events: none;
}
#logo-popup-close {
  position: absolute;
  top: -20px; right: -20px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-accent-primary);
  color: white; 
  border: 2px solid white; 
  font-size: 1.2rem;
  cursor: pointer; 
  display: flex; 
  justify-content: center; 
  align-items: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.2s ease, background-color 0.2s ease;
  will-change: transform; /* Performance optimization */
}
#logo-popup-close:hover {
  transform: scale(1.1);
  background-color: var(--color-accent-secondary);
}

/* Print styles for better printing */
@media print {
  .video-container, 
  .video-fallback,
  #background-video,
  #video-overlay,
  #booking-popup,
  #location-popup,
  .logo-popup,
  .top-buttons-container,
  .social-buttons,
  .divider {
    display: none !important;
  }
  
  body {
    background-color: white;
    color: black;
  }
  
  #about {
    width: 100%;
    max-width: 100%;
    padding: 1cm;
  }
  
  header {
    height: auto;
    position: static;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  :root {
    --content-width: 90%;
    --header-height: 150px;
  }

  .social-buttons {
    grid-template-columns: repeat(2, 1fr);
    width: 90%; max-width: 320px;
    gap: 10px;
  }
  .top-buttons-container {
    width: 90%; max-width: 320px; 
    justify-items: center; 
    gap: 10px;
  }
  button, .action-button, .gradient-button {
    width: 155px;
    height: var(--button-height);
    font-size: 0.8rem;
  }
  .logo-image {
    position: absolute; top: 10px; left: 10px; bottom: 25px;
    width: auto; 
    height: calc(var(--header-height) - 35px);
  }
  #services {
    font-size: 0.8rem; line-height: 1.1;
    bottom: 5px;
  }
  #services h2 {
    font-size: 1.3rem;
    margin-bottom: 3px;
  }
  .logo-popup-message {
    font-size: 1.2rem; 
    padding: 8px 15px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .connect-heading {
    opacity: 1;
    transform: none;
    animation: none;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.3), 0 0 10px rgba(255, 165, 0, 0.2);
  }

  .divider::after {
    animation: none;
    opacity: 1;
  }

  #services h2 {
    animation: none;
    text-shadow: 0 0 5px rgba(255,255,255,0.7);
  }

  button, .action-button {
    animation: none;
    background-position: 0%;
  }

  .toast.show {
    animation: none;
    visibility: visible;
    opacity: 1;
  }

  #logo-popup.show {
    animation: none;
    opacity: 1;
  }
}

/* Modal overlay */
.modal {
  display: none;                /* hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  overflow: auto;
}

/* Modal box */
.modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 0;
  border-radius: 5px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  max-height: 80vh;
}

/* Header with close button */
.modal-header {
  padding: 1rem;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.25rem;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Scrollable body */
.modal-body {
  padding: 1rem;
  overflow-y: auto;
  line-height: 1.5;
}

.modal-body h3 {
  margin-top: 1rem;
}

/* ─── Page Loader Overlay ─── */
#loader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  animation: spin 1.5s linear infinite;
}

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

/* kill the looping background video & overlay */
.video-fallback,
#background-video,
#video-overlay {
  display: none !important;
}
/* remove any poster/fallback background too */
.video-container {
  background: none !important;
}