:root {
  --bg: #05060d;
  --bg-dark: #030409;
  --bg-darker: #010204;
  --fg: #eaf4ff;
  --muted: #a5b1c2;
  --accent: #53f3ff;
  --accent-2: #9b7bff;
  --accent-3: #ff47a3;
  --accent-4: #00ff9d;
  --stroke: rgba(255,255,255,.12);
  --glass: rgba(255,255,255,.06);
  --grid-size: 40px;
  --neon-glow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 30px currentColor;
}

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

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  background-image: radial-gradient(circle at 10% 20%, rgba(83, 243, 255, 0.05) 0%, transparent 20%), radial-gradient(circle at 90% 80%, rgba(155, 123, 255, 0.05) 0%, transparent 20%);
  display: flex;
  flex-direction: column;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: "Orbitron", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, rgba(5, 6, 13, 0.95) 0%, rgba(9, 10, 25, 0.95) 100%);
  backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid var(--stroke);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: linear-gradient(135deg, rgba(3, 4, 9, 0.98) 0%, rgba(7, 8, 20, 0.98) 100%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 clamp(16px, 4vw, 32px);
  max-width: 1400px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--fg);
  text-decoration: none;
  transition: all 0.3s ease;
}
.brand:hover {
  transform: scale(1.05);
}

.brand__mark {
  filter: drop-shadow(0 0 8px rgba(83, 243, 255, 0.6));
}

.brand__text {
  font-family: "Orbitron", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0.05em;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(83, 243, 255, 0.4);
  position: relative;
}
.brand__text::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.7;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  color: var(--fg);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
  font-size: 1.05rem;
  padding: 0.5rem 0;
}
.nav__link:hover {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(83, 243, 255, 0.7);
}
.nav__link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.3s ease;
  box-shadow: 0 0 8px var(--accent);
}
.nav__link:hover::after {
  width: 100%;
}

.btn {
  border: 1px solid var(--stroke);
  background: linear-gradient(135deg, rgba(83, 243, 255, 0.1) 0%, rgba(155, 123, 255, 0.1) 100%);
  backdrop-filter: saturate(180%) blur(10px);
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  color: var(--fg);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
  cursor: pointer;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}
.btn:hover::before {
  left: 100%;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(83, 243, 255, 0.3);
  border-color: rgba(83, 243, 255, 0.5);
}

.btn--primary {
  border-color: rgba(83, 243, 255, 0.6);
  box-shadow: 0 0 20px rgba(83, 243, 255, 0.3);
  background: linear-gradient(135deg, rgba(83, 243, 255, 0.15) 0%, rgba(155, 123, 255, 0.15) 100%);
  text-shadow: 0 0 8px rgba(83, 243, 255, 0.5);
}

.btn:focus-visible {
  outline: 2px dashed var(--accent);
  outline-offset: 4px;
}

/* Main Content */
.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  position: relative;
  min-height: calc(100vh - 70px);
}

/* Footer */
.footer {
  border-top: 1px solid var(--stroke);
  padding: 4rem 1rem 3rem;
  background: var(--bg-darker);
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-3), transparent);
  box-shadow: 0 0 15px var(--accent-3);
}
.footer a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer a:hover {
  text-shadow: 0 0 8px rgba(83, 243, 255, 0.7);
}

.footer__content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__logo {
  font-family: "Orbitron", system-ui, sans-serif;
  font-weight: 900;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
}

.footer__desc {
  color: var(--muted);
  line-height: 1.6;
  max-width: 400px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__links h3 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer__links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__links a:hover {
  color: var(--accent);
}

.footer__bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--stroke);
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Animations */
@keyframes breath {
  from {
    opacity: 0.7;
  }
  to {
    opacity: 1;
  }
}
@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(83, 243, 255, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(83, 243, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(83, 243, 255, 0);
  }
}
@keyframes twinkle {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 400px 400px, 500px 500px, 600px 600px, 700px 700px, 800px 800px, 900px 900px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero__glow {
    animation: breath 16s infinite alternate ease-in-out;
  }
  .floating {
    animation: floating 8s ease-in-out infinite;
  }
  .pulse {
    animation: pulse 3s infinite;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes breath {
  from {
    opacity: 0.7;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .bg-glow {
    animation: breath 16s infinite alternate ease-in-out;
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .navlinks {
    gap: 1rem;
  }
  .hero h1 {
    font-size: clamp(36px, 10vw, 70px);
  }
  .cta {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .footer__content {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .feature {
    flex-direction: column;
    text-align: center;
  }
  .login-form-container {
    padding: 2rem 1.5rem;
  }
  .social-login {
    flex-direction: column;
  }
  .universe__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .login-form-container {
    padding: 1.5rem 1rem;
  }
  .login-title {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .universe__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .login-visual {
    display: none;
  }
}

/*# sourceMappingURL=commons.css.map */
