@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: black;
  color: white;
  height: 100vh;
  overflow: hidden;
}

/* LEFT VIDEO STRIP */
.video-left {
  position: fixed;
  left: 0;
  top: 0;
  width: 35%;
  height: 100%;
  overflow: hidden;
}

.video-left video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

/* MAIN CONTENT (RIGHT SIDE) */
.content {
  position: absolute;
  right: 0;
  top: 0;
  width: 65%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  text-align: center;
}

/* TITLE */
h1 {
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 1px;
}

/* LINKS */
.links {
  display: flex;
  gap: 25px;
}

.links a {
  text-decoration: none;
  color: white;
  font-weight: 300;
  font-size: 1rem;
  border-bottom: 1px solid transparent;
  transition: 0.2s;
}

.links a:hover {
  border-bottom: 1px solid white;
}

/* ZEN BLUE HOVER */
.links a.zen:hover {
  color: #3b82f6;
  border-bottom: 1px solid #3b82f6;
}