:root {
  --bg: #030303;
  --text: #f5f1e8;
  --shadow: rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  background: radial-gradient(circle at center, #1a1a1a 0%, var(--bg) 60%);
  overflow: hidden;
}

body {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.app {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #000;
}

@media (max-width: 768px) {
  .hero-video {
    object-fit: cover;
    object-position: 50% 50%;
  }
}
