* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top, #1b1d3a, #0e0f1a);
  color: #f2f2f2;
  overflow-x: hidden;
}

/* FX CANVAS */
#fx-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.logo-wrap {
  position: relative; /* IMPORTANT */
  text-align: center;
  max-width: 700px;
  padding: 20px;
}

/* LOGO IMAGE */
.logo {
  width: 170px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 40px rgba(255,255,255,0.4));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* TEXT */
.logo-text h1 {
  font-size: 3rem;
  background: linear-gradient(90deg, #6B4EFF, #E05B9A, #F5A623);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.studio-desc {
  margin-top: 10px;
  font-weight: 300;
  opacity: 0.9;
}

.studio-meta {
  margin-top: 8px;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* SECTIONS */
section {
  max-width: 900px;
  margin: auto;
  padding: 100px 20px;
  position: relative;
  z-index: 1;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #E05B9A, #F5A623);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

p {
  line-height: 1.7;
  margin-bottom: 15px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  opacity: 0.6;
  position: relative;
  z-index: 1;
}

/* MENU */
#core-menu {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 10;
}

.core {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, white, #6B4EFF);
  box-shadow: 0 0 40px white;
  cursor: pointer;
}

.menu-items a {
  display: block;
  margin-top: 10px;
  opacity: 0;
  transform: translateX(20px);
  transition: 0.4s;
  color: white;
  text-decoration: none;
}

#core-menu.active .menu-items a {
  opacity: 1;
  transform: translateX(0);
}

/* VISUALS TOGGLE */
#visuals-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 14px 26px;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 600;
  z-index: 10;
}

#visuals-toggle.on {
  background: linear-gradient(135deg, #6B4EFF, #E05B9A, #F5A623);
  color: white;
}

#visuals-toggle.off {
  background: #444;
  color: #bbb;
}

/* === UFO === */
#ufo-wrapper {
  position: absolute;
  left: -110px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#ufo {
  width: 72px;
  height: 72px;
  background: url("images/ufo.png") center/contain no-repeat;
  cursor: grab;
  user-select: none;
}

#ufo.dragging {
  cursor: grabbing;
  transform: scale(1.1);
}

.ufo-hint {
  margin-top: 6px;
  font-size: 0.75rem;
  opacity: 0.8;
  text-align: center;
}

.ufo-hint .arrow {
  animation: bounce 1.2s infinite;
}

@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* UFO TRAIL */
.ufo-trail {
  position: fixed;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(120,200,255,0.9),
    rgba(120,200,255,0.4),
    rgba(120,200,255,0.05)
  );
  filter: blur(1px);
  z-index: 9;
  animation: trailFade 0.9s linear forwards;
}

@keyframes trailFade {
  to {
    opacity: 0;
    transform: scale(2);
  }
}
