/* reset / base */
* { box-sizing: border-box; margin:0; padding:0; }
html,body { height:100%; width:100%; }
body{
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: radial-gradient(circle at 20% 10%, #0b1220 0%, #04050a 40%, #000000 100%);
  color: #eaeef8;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* full-screen canvas behind everything */
#background {
  position: fixed;
  inset: 0;                /* top:0; right:0; bottom:0; left:0; */
  width: 100%;
  height: 100%;
  z-index: -1;             /* behind content */
  background: transparent;
  display: block;
}

/* center container */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;               /* spacing between title and meta */
  text-align: center;
  padding: 8px 20px;
  pointer-events: auto;
}

/* main clickable title */
.main-link {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 4.6rem;
  line-height: 1;
  color: #ff9ccf;
  text-transform: lowercase;
  letter-spacing: 6px;
  text-decoration: none;
  display: inline-block;
  padding: 8px 18px;
  transition: transform .18s ease, text-shadow .25s ease;
  cursor: pointer;

  /* neon glow (multi-layer) */
  text-shadow:
    0 0 6px rgba(255, 121, 199, 0.85),
    0 0 16px rgba(255, 121, 199, 0.55),
    0 0 30px rgba(122, 200, 255, 0.14);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* hover animation */
.main-link:hover,
.main-link:focus {
  transform: translateY(-6px) scale(1.02);
  text-shadow:
    0 0 12px rgba(255, 121, 199, 1),
    0 0 30px rgba(255, 121, 199, 0.8),
    0 0 60px rgba(122, 200, 255, 0.22);
  outline: none;
}

/* subtle clickable focus ring for accessibility */
.main-link:focus-visible {
  box-shadow: 0 0 0 6px rgba(122,200,255,0.06);
  border-radius: 6px;
}

/* meta line under the title */
.meta {
  font-size: 0.85rem;
  color: rgba(234,238,248,0.8);
  letter-spacing: 2px;
  text-transform: lowercase;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  mix-blend-mode: screen;
  user-select: none;
}

/* the trademark symbol, small and superscript-like */
.meta .tm {
  color: #ffd0e8;
  font-weight: 700;
  font-size: 0.68rem;
  line-height: 1;
  vertical-align: super;
  transform: translateY(-2px);
  letter-spacing: 0.5px;
  text-shadow: 0 0 6px rgba(255,140,200,0.12);
}

/* responsive scaling */
@media (max-width: 900px) {
  .main-link { font-size: 3.6rem; letter-spacing: 5px; }
}
@media (max-width: 520px) {
  .main-link { font-size: 2.6rem; letter-spacing: 3px; }
  .meta { font-size: 0.72rem; letter-spacing: 1.6px; }
  .meta .tm { font-size: 0.58rem; transform: translateY(-1.5px); }
}

/* --- login page --- */

.login-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  width: min(420px, 90vw);
  margin-inline: auto;      /* center horizontally */
}

.login-title {
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 0.9rem;
  text-transform: lowercase;
  letter-spacing: 2px;
  text-align: center;
  color: #ff5ad9;
  margin-bottom: 0.75rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.login-form input,
.login-form button {
  padding: 0.7rem 0.9rem;
  border: 1px solid #ff5ad9;
  background: rgba(0, 0, 0, 0.85);
  color: #f8f5ff;
  font-family: "Courier New", SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Roboto Mono", monospace;
  font-size: 0.8rem;
}

.login-form input::placeholder {
  color: #ff5ad9;
  opacity: 0.9;
  text-transform: lowercase;
}

.login-form button {
  text-align: center;
  text-transform: lowercase;
  letter-spacing: 2px;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
  transition:
    background 0.17s ease,
    box-shadow 0.17s ease,
    transform 0.09s ease;
}

.login-form button:hover {
  background: #ff5ad9;
  color: #050008;
  box-shadow: 0 0 18px rgba(255, 90, 217, 0.7);
  transform: translateY(-1px);
}

.login-form button:active {
  transform: translateY(0);
  box-shadow: 0 0 8px rgba(255, 90, 217, 0.45);
}

.logo-combo {
  position: relative;
  display: inline-block;
}

.logo-combo__img {
  display: block;
  width: 260px;     /* change this to make the whole thing bigger/smaller */
  height: auto;
}

/* put the neon text on top of the logo */
.logo-combo__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;              /* no extra padding so it stays inside the logo */
  white-space: nowrap;
  font-size: 4.6rem;       /* slightly smaller than the original 4.6rem */
}

/* keep hover animation but stay centered */
.logo-combo:hover .logo-combo__text,
.logo-combo:focus-visible .logo-combo__text {
  transform: translate(-50%, -52%) scale(1.02);
}