/* ============================================
   NEXROM V1 — Landing Page Styles
   ============================================ */

#galaxy-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.landing-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--space-lg);
  text-align: center;
}

.landing-logo {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 0.35em;
  color: var(--white);
  margin-bottom: var(--space-md);
  text-indent: 0.35em;
  background: linear-gradient(180deg, #FFFFFF 0%, #A0A0A0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.15));
}

.landing-subtitle {
  font-size: var(--font-size-lg);
  color: var(--gray);
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-3xl);
}

.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: var(--white);
  color: var(--black);
  font-size: var(--font-size-md);
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 4px 24px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-google::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-google:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(255, 255, 255, 0.2);
}

.btn-google:hover::before {
  transform: translateX(100%);
}

.btn-google:active {
  transform: translateY(-1px);
}

.btn-google svg {
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .landing-logo {
    font-size: 3rem;
    letter-spacing: 0.25em;
    text-indent: 0.25em;
  }
  .landing-subtitle {
    font-size: var(--font-size-base);
    letter-spacing: 0.1em;
  }
}

@media (max-width: 480px) {
  .landing-logo {
    font-size: 2.2rem;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
  }
  .btn-google {
    padding: 12px 24px;
    font-size: var(--font-size-base);
  }
}
