/* Basic reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Work Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #ffffff;
  background-color: #000000;
}

/* Layout container */
.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* Full-screen background video */
.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Dark overlay for contrast */
.overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.3), transparent 40%),
              linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.9));
  z-index: -1;
}

/* Under construction label */
.uc-header {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
}

.uc-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 500;
}

/* Main hero area */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-inner {
  max-width: 720px;
}

/* Logo */
.logo {
  max-width: 240px;
  width: 50vw;
  height: auto;
  margin: 0 auto 1.5rem;
}

/* Tagline text */
.tagline {
  font-family: "Bebas Neue", system-ui, sans-serif;
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  letter-spacing: 0.18em;
  line-height: 1.1;
  text-transform: uppercase;
  color: #ffffff;
}

/* Footer */
.site-footer {
  position: fixed;
  bottom: 1.2rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.8;
  padding-inline: 1rem;
}

/* Better readability on very small devices */
@media (max-width: 480px) {
  .uc-header {
    top: 1rem;
    right: 1rem;
  }

  .uc-label {
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
  }

  .logo {
    max-width: 190px;
    margin-bottom: 1.2rem;
  }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .bg-video {
    display: none;
  }

  .overlay {
    background: #111111;
  }

  body {
    background-color: #111111;
  }
}
