/* === GLOBAL RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background-color: #f6f6f6;
}

body {
  background: #fcfcfc;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow-x: hidden;
}

/* FIX: White line glitch above due to blend mode */
body::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: #fbfbfb;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

/* === BACK BUTTON === */
.back-button {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 999;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: black;
  background: white;
  text-decoration: none;
  padding: 8px 14px;
  border: none;
  border-radius: 4px;
  mix-blend-mode: difference;
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.back-button .arrow {
  position: relative;
  top: -1.5px;
}

/* Hide back button on mobile only */
@media (max-width: 768px) {
  .back-button {
    display: none;
  }
}

/* === HERO SECTION === */
.hero {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0;
}

.hero-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.hero-inner video {
  width: 100vw; /* full bleed */
  height: auto;
  object-fit: cover;
  display: block;
}

.video-description {
  padding: 16px 20px;
  border-radius: 6px;
  font-size: 1rem;
  line-height: 1.4;
  color: #333;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
