/* Reset + Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body base styles */
body {
  font-family: system-ui, sans-serif;
  line-height: 1.6;
  background: #4F4F4F;
background: linear-gradient(90deg,rgba(79, 79, 79, 1) 0%, rgba(33, 33, 33, 1) 35%, rgba(0, 0, 0, 1) 50%, rgba(33, 33, 33, 1) 65%, rgba(79, 79, 79, 1) 100%);
color: #eee;
}

/* Animation keyframes */
@keyframes scanner-light {
  0%   { background-position: -100% 0; }
  50%  { background-position: 100% 0; }
  83.33% { background-position: 100% 0; } /* Pause for ~2s */
  100% { background-position: -100% 0; }  /* Instant reset for seamless loop */
}

/* Banner */
.banner {
  text-align: center;
  padding: 1rem;
  background: #111;
}

.logo {
  max-width: 180px;
  height: auto;
}

/* Hero section wrapper */
.video-container {
  padding: 1rem 1rem; /* Default mobile padding */
}

/* On tablet and larger, add max width and center it */
@media (min-width: 768px) {
  .video-container {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .video-container {
    padding: 4rem 4rem;
    max-width: 800px;
  }
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background-color: #2c2c2c; /* Dark gray background */
  border-radius: 12px;       /* Rounded corners */
  box-shadow: 0 0 20px rgba(128, 0, 255, 0.4); /* Soft purple glow */
}

.video-border {
  padding: 2px;
  border-radius: 14px;
  background: linear-gradient(
    45deg,
    white,
    black,
    gray,
    purple,
    white
  );
  background-size: 300% 300%;
  animation: border-shift 30s linear infinite;
  box-shadow: 0 0 20px rgba(128, 0, 255, 0.5); /* Glowing purple aura */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
.footer {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: #222;
  color: #eee;
  padding: 2rem 1rem;
  text-align: center;
}

.footer-column h4 {
  margin-bottom: 0.5rem;
}

.footer-column p {
  font-size: 0.9rem;
}

/* Responsive layout for footer on wider screens */
@media (min-width: 768px) {
  .footer {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-column {
    flex: 1;
    padding: 0 1rem;
  }
}