body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.03), rgba(12,14,20,0.95)), #0a0c13;
  color: #e6e6e6;
  min-height: 100vh;
}

.page {
  max-width: 1100px;
  margin: 30px auto 0;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
}

.topbar { width: 100%; display: flex; justify-content: flex-end; align-items: center; }
.ghost { display: inline-flex; padding: 10px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.18); color: #e6e6e6; text-decoration: none; background: rgba(255,255,255,0.04); }
.ghost:hover { border-color: rgba(255,255,255,0.32); background: rgba(255,255,255,0.08); }

.hero { display: flex; flex-direction: column; align-items: center; gap: 18px; width: 100%; }
.hero-copy { text-align: center; }
.hero-copy h1 { margin: 6px 0 12px; font-size: 34px; }
.hero-copy .eyebrow { text-transform: uppercase; letter-spacing: 0.2em; color: #7fc7ff; margin: 0; font-size: 12px; }
.hero-copy .sub { margin: 0 0 16px; color: #b6c5d8; }

.card {
  background: rgba(20, 24, 33, 0.8);
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 12px rgba(80,150,255,0.35);
  border: 1px solid rgba(255,255,255,0.06);
}

.hero-form {
  width: 420px;
  max-width: 90%;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

label { display: block; margin: 4px 0; color: #dbe5f5; font-weight: 600; text-align: left; }
input, select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #2d333b;
  background: #0f1216;
  color: #e6e6e6;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

button {
  margin-top: 6px;
  padding: 12px 16px;
  border: none;
  background: linear-gradient(135deg, #4fa3ff, #3a8dd9);
  color: white;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  align-self: center;
}

button:hover { background: linear-gradient(135deg, #6bb5ff, #4a9bea); }

.alert { padding: 10px 12px; background: #5c1f1f; color: #f5d7d7; border-radius: 6px; margin-top: 12px; width: fit-content; }

.field{
  display: flex;
  align-items: center;
  gap: 10px;
}
.summonerInput{
  width:50%;
}

.taglineInput{
  width:30%
}
.tagLabel{
  padding-right: 55px;
}

.support {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #e6e6e6;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.32);
}

.support-link:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
}

.support-link svg {
  width: 22px;
  height: 22px;
  fill: #9146ff;
  filter: drop-shadow(0 0 8px rgba(145,70,255,0.45));
}
@media (max-width: 600px) {
  .hero-form { width: 100%; }
}
