/* author:dev@000777.xyz */

:root {
  --primary: #ffffff;
  --blue: #7fa9f7;
  --gradient-start: #ffffff;
  --gradient-end: #808080;
}

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

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  overflow: hidden;
  background: #000;
}

.landing-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#backgroundVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.fallback-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.03) 8%,
    transparent 15%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.page-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  text-align: center;
  z-index: 10;
}

.footer-links {
  margin-bottom: 1rem;
  position: relative;
  height: 2.5rem;
}

.menu-level-1,
.menu-level-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}

.menu-level-2 {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.menu-level-2[data-active="true"] {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.menu-level-1[data-active="false"] {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

.footer-links a {
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transform: scale(1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.footer-links a:hover {
  transform: scale(1.1);
}

.gradient-text {
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background 0.3s ease;
}

.footer-slogan {
  font-size: 0.9rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .footer-links {
    height: auto;
    margin-bottom: 2rem;
  }

  .menu-level-1,
  .menu-level-2 {
    position: relative;
    flex-direction: column;
    gap: 0.5rem;
  }

  .menu-level-2 {
    position: absolute;
  }

  .footer-links a {
    display: block;
    margin: 0.5rem 0;
  }
}
