:root {
  --hover-color: #f7a922; /* Golden accent color */
  --bg-primary: #f5f5f5; /* Light gray background */
  --bg-secondary: #fff; /* White */
  --text-primary: #333; /* Dark gray */
  --text-secondary: #777; /* Medium gray for secondary text */
  --text-tertiary: #999; /* Light gray for tertiary text */
  --header-bg: #444; /* For card headers */
  --border-color: #eee; /* For borders */
  --alert-bg: #fff3cd; /* For alerts/notifications */
  --alert-text: #856404; /* For alert text */
  --shadow-normal: 0 3px 10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  height: 80vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  color: var(--text-primary);
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.video-foreground {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.video-foreground iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .video-foreground {
    width: 200vw;
    height: 200vh;
  }
}
