/* ── AMBIENT GLOW ── */
.br-ambient {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.br-ambient::before {
  content: '';
  position: absolute; top: -20%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,0,127,0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: brDrift1 18s ease-in-out infinite alternate;
}
.br-ambient::after {
  content: '';
  position: absolute; bottom: -20%; right: -5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,238,252,0.04) 0%, transparent 70%);
  border-radius: 50%;
  animation: brDrift2 22s ease-in-out infinite alternate;
}
@keyframes brDrift1 { from { transform: translate(0,0); } to { transform: translate(60px,40px); } }
@keyframes brDrift2 { from { transform: translate(0,0); } to { transform: translate(-50px,-60px); } }

/* ── BODY ── */
body {
  font-family: 'Space Grotesk', sans-serif;
  padding-top: 72px;
  min-height: 100vh;
}

/* ── CONTAINER ── */
.container {
  width: 90%;
  max-width: 620px;
  margin: 2rem auto 4rem;
  padding: 2rem;
  background: rgba(37,37,44,0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  position: relative;
  z-index: 1;
}

/* ── HEADINGS ── */
.container h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: var(--on-surface, #f8f5fd);
  margin: 0 0 1.5rem;
  background: linear-gradient(90deg, #FF007F, #00eefc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255,0,127,0.3));
}

.container h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(248,245,253,0.4);
  margin: 1.75rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ── RADIO BUTTONS ── */
.radio-container {
  display: block;
  position: relative;
  padding-left: 36px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  user-select: none;
  color: rgba(248,245,253,0.75);
  transition: color 0.15s;
}
.radio-container:hover { color: var(--on-surface, #f8f5fd); }

.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background: rgba(14,14,19,0.6);
  border-radius: 50%;
  border: 2px solid rgba(255,0,127,0.3);
  transition: border-color 0.2s, background 0.2s;
}

.radio-container:hover .checkmark {
  border-color: rgba(255,0,127,0.6);
}

.radio-container input:checked ~ .checkmark {
  background: #FF007F;
  border-color: #FF007F;
  box-shadow: 0 0 10px rgba(255,0,127,0.4);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.radio-container input:checked ~ .checkmark:after {
  display: block;
}

.radio-container .checkmark:after {
  top: 6px;
  left: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

/* ── TEXT INPUT ── */
input[type="text"] {
  width: 100%;
  padding: 0.6rem 0.9rem;
  font-size: 0.88rem;
  font-family: 'Space Grotesk', sans-serif;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.5rem;
  box-sizing: border-box;
  margin-top: 6px;
  background: rgba(14,14,19,0.6);
  color: var(--on-surface, #f8f5fd);
  outline: none;
  transition: border-color 0.2s;
}
input[type="text"]:focus { border-color: rgba(255,0,127,0.4); }
input[type="text"]::placeholder { color: rgba(248,245,253,0.25); }

/* ── SUBMIT BUTTON ── */
.button-container {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
  margin-bottom: 1.5rem;
}

.submit-btn {
  background: linear-gradient(135deg, #FF007F, #cc0066);
  color: #fff;
  border: none;
  padding: 0.7rem 2.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 9999px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(255,0,127,0.3);
}
.submit-btn:hover { transform: scale(1.03); box-shadow: 0 0 30px rgba(255,0,127,0.5); }
.submit-btn:active { transform: scale(0.98); }

/* ── RESULTS ── */
#results {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  line-height: 1.7;
  background: rgba(14,14,19,0.5);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem;
  border-radius: 0.75rem;
  color: rgba(248,245,253,0.8);
}

#results:empty { display: none; }

#results a {
  color: #00eefc;
  text-decoration: none;
  font-weight: 600;
}
#results a:hover { text-decoration: underline; }

/* ── DISCLAIMERS ── */
.disclaimer {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(248,245,253,0.3);
  line-height: 1.5;
}

.disclaimer2 {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: rgba(248,245,253,0.4);
  font-weight: 600;
}

.disclaimer2 a {
  color: rgba(248,245,253,0.5);
}

/* ── FOCUS ACCESSIBILITY ── */
.submit-btn:focus,
input[type="text"]:focus {
  outline: 2px solid rgba(255,0,127,0.5);
  outline-offset: 2px;
}
