@font-face {
  font-family: "Moderniz";
  src: url("fonts/MODERNIZ.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

:root {
  --bg: #0e0e10;
  --text: #f5f5f5;
  --muted: #a0a0a0;
  --accent: #ff48c4;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

h1,
h2,
.tagline {
  font-family: "Moderniz", sans-serif;
  letter-spacing: 1px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.hero {
  text-align: center;
  padding: 8rem 0 6rem 0;
}

.logo {
  width: 600px;
  max-width: 80%;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 8px rgba(0, 191, 255, 0.4));
}

.tagline {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.subtext {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.cta {
  padding: 0.8rem 2rem;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 1rem;
  font-family: "Moderniz", sans-serif;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta:hover {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 18px rgba(255, 0, 150, 0.6);
}

footer {
  text-align: center;
  margin-top: 6rem;
  color: var(--muted);
}

.socials {
  margin-bottom: 1rem;
}

.socials a {
  color: var(--muted);
  text-decoration: none;
  margin: 0 1rem;
  font-family: "Moderniz", sans-serif;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.socials a:hover {
  color: var(--accent);
}

/* Subtle scanline overlay */
.scanlines {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 3px
  );
}
