:root {
  --bg: #0f0f14;
  --card: #111217;
  --accent: #ff6b6b;
  --muted: #bfc1c6;
  --text: #ecf0f3;
}

body {
  background: linear-gradient(180deg, #07070a 0%, #121218 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  margin:0;
}

.container { max-width: 960px; margin: 28px auto; padding: 0 16px; }

.site-header {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  padding: 12px 0;
}
.logo { margin:0; display:inline-block; font-size: 22px; color: var(--accent); }
nav { float:right; }

.grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap:16px; }
.card {
  background: var(--card);
  padding: 14px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
}
.muted { color: var(--muted); font-size: 0.9em; }
.btn { background: var(--accent); border: none; padding: 8px 12px; color:white; border-radius: 8px; cursor:pointer; }

.site-footer { color: var(--muted); padding: 18px 0; text-align:center; border-top: 1px solid rgba(255,255,255,0.03); margin-top:40px; }
.hosts-grid { display:flex; gap:12px; flex-wrap:wrap; }
.host-card { background: rgba(255,255,255,0.02); padding:12px; border-radius:10px; width:220px; }

.avatar { font-size:42px; }
.flashes { list-style:none; padding:0; margin:8px 0; }
.flash { padding:8px 12px; border-radius:8px; margin-bottom:8px; }
.flash.success { background: rgba(34,139,34,0.12); color: #bdebbd }
.flash.danger { background: rgba(255,0,0,0.08); color: #ffb4b4 }

/* FOOTER */
.site-footer {
    background: #1b1b1b;
    padding: 40px 0;
    margin-top: 60px;
    color: #f2f2f2;
    border-top: 2px solid #ff66c4;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo-wrap {
    margin-bottom: 15px;
}

.footer-logo {
    width: 150px;
    height: auto;
    border-radius: 18px;
    border: 2px solid #ff66c4;
    box-shadow: 0 0 12px rgba(255, 102, 196, 0.4);
}

.footer-title {
    margin: 10px 0 5px;
    font-size: 1.6rem;
    color: #ff66c4;
}

.footer-tagline {
    font-size: 1rem;
    opacity: 0.8;
    max-width: 500px;
}

.content-warning {
  background: rgba(255, 102, 196, 0.08);
  border: 1px solid #ff66c4;
  color: #ffbfe6;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.age-form {
  margin-top: 16px;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--muted);
  color: var(--muted);
  margin-left: 8px;
}

.nav-user {
  margin-left: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.episode-votes {
  margin-top: 16px;
  margin-bottom: 24px;
}

.btn-active {
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.comment-item {
  background: rgba(255, 255, 255, 0.02);
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.comment-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  font-size: 0.85rem;
}

.comment-form textarea {
  width: 100%;
  max-width: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
}

.contact-form textarea {
  resize: vertical;
}

.btn-small {
  padding: 4px 8px;
  font-size: 0.75rem;
  margin-left: 8px;
}

a {
  color: #66d9ff;          /* bright accent for unvisited */
  text-decoration: underline;
  font-weight: 500;
}

a:hover {
  text-decoration: none;
  opacity: 0.9;
}

a:visited {
  color: #ff9ae0;          /* or same as a{} if you don't want a difference */
}

nav {
  float: right;
  display: flex;
  align-items: center;
}

nav a {
  color: var(--muted);
  margin-left: 14px;
  text-decoration: none;
  font-weight: 600;
}

nav a.active {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* optional: also highlight the Admin chip when you're on an admin page */
.nav-admin.active .nav-admin-toggle {
  border-color: var(--accent);
  color: var(--accent);
}


/* Admin dropdown */
.nav-admin {
  position: relative;
  margin-left: 14px;
}

.nav-admin-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-admin-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 120%;
  background: #1b1b1b;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.7);
  min-width: 180px;
  z-index: 1000;
  padding: 6px 0;
}

.nav-admin-menu a {
  display: block;
  padding: 8px 14px;
  margin: 0;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.nav-admin-menu a:hover {
  background: rgba(255, 102, 196, 0.15);
}

/* NEW: show menu when .open is set via JS */
.nav-admin.open .nav-admin-menu {
  display: block;
}

/* HOSTS PAGE – loud, neon, and messy in a good way */

.hosts-hero {
  text-align: center;
  margin-bottom: 28px;
}

.hosts-hero h2 {
  font-size: 2.2rem;
  margin: 8px 0 4px;
}

.hosts-tagline {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
}

.jbv-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid #ff66c4;
  box-shadow: 0 0 18px rgba(255, 102, 196, 0.7);
  background: radial-gradient(circle at top, rgba(255, 102, 196, 0.22), rgba(5, 5, 10, 0.96));
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.jbv-letter {
  font-weight: 900;
  font-size: 1.1rem;
  color: #ffe0f7;
}

.jbv-dot {
  margin: 0 6px;
  color: #ffbfe6;
}

/* Lineup container */
.hosts-lineup {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
}

/* Individual host card */
.host-profile {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 16px 18px;
  background: radial-gradient(circle at top left,
    rgba(255, 102, 196, 0.25),
    rgba(9, 9, 15, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.host-profile:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
  border-color: rgba(255, 102, 196, 0.8);
}

/* Giant background letter (J / B / V) */
.host-bg-letter {
  position: absolute;
  right: 10px;
  bottom: -18px;
  font-size: 120px;
  font-weight: 900;
  /* Make the fill very faint… */
  color: rgba(255, 255, 255, 0.02);
  /* …but add a neon outline so it's readable */
  -webkit-text-stroke: 2px rgba(255, 102, 196, 0.6);
  text-shadow:
    0 0 8px rgba(255, 102, 196, 0.45),
    0 0 18px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  user-select: none;
}

/* Inner content */
.host-profile-inner {
  position: relative;
  z-index: 1;
}

.host-mini-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0 0 6px;
}

.host-name {
  margin: 0;
  font-size: 1.4rem;
}

.host-role {
  margin-top: 2px;
  font-size: 0.9rem;
  color: #ffbfe6;
}

.host-bio {
  margin: 10px 0 8px;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Fun stat list */
.host-stats {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}

.host-stats li {
  background: rgba(0, 0, 0, 0.55);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.8rem;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.host-stats span {
  font-weight: 600;
  color: #ffe0f7;
}

/* Slightly different vibes per host using initials */
.host-j {
  background: radial-gradient(circle at top left,
    rgba(255, 102, 196, 0.3),
    rgba(9, 9, 15, 0.98)
  );
}

.host-b {
  background: radial-gradient(circle at top left,
    rgba(255, 213, 102, 0.25),
    rgba(9, 9, 15, 0.98)
  );
}

.host-v {
  background: radial-gradient(circle at top left,
    rgba(102, 204, 255, 0.25),
    rgba(9, 9, 15, 0.98)
  );
}

/* Mobile tweak */
@media (min-width: 768px) {
  .hosts-lineup {
    gap: 20px;
  }
}

/* CONTACT PAGE – neon chaos guest form */

.contact-hero {
  text-align: center;
  margin-bottom: 28px;
}

.contact-hero h2 {
  font-size: 2.1rem;
  margin: 10px 0 6px;
}

.contact-tagline {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* Left info card */
.contact-side-card {
  background: radial-gradient(circle at top left,
    rgba(255, 102, 196, 0.22),
    rgba(17, 18, 23, 0.98)
  );
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.8);
}

.contact-side-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.contact-side-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 10px;
  font-size: 0.95rem;
}

.contact-side-card li {
  margin-bottom: 6px;
}

/* Right form card */
.contact-form-card {
  background: rgba(10, 10, 16, 0.96);
  border-radius: 16px;
  padding: 16px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.8);
}

.contact-form-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

/* Form fields */
.field-label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.field-label input,
.field-label textarea {
  margin-top: 4px;
  background: #07070c;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}

.field-label input:focus,
.field-label textarea:focus {
  outline: none;
  border-color: #ff66c4;
  box-shadow: 0 0 0 1px rgba(255, 102, 196, 0.5);
}

/* Submit button tweak */
.contact-submit {
  margin-top: 6px;
  padding-inline: 18px;
  font-weight: 600;
  border-radius: 999px;
}

/* Little note under the button */
.contact-disclaimer {
  font-size: 0.8rem;
  margin-top: 10px;
}

/* USER PROFILE – neon card vibes like hosts */

.user-hero {
  text-align: center;
  margin-bottom: 22px;
}

.user-hero h2 {
  font-size: 2rem;
  margin: 10px 0 4px;
}

.user-hero-sub {
  font-size: 0.9rem;
}

.user-role-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 102, 196, 0.7);
  color: #ffbfe6;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Big profile card (similar to host-profile) */
.user-profile-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 16px 18px;
  margin-bottom: 22px;
  background: radial-gradient(circle at top left,
    rgba(102, 204, 255, 0.18),
    rgba(9, 9, 15, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.user-profile-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
  border-color: rgba(255, 102, 196, 0.7);
}

/* Giant faint initial in the corner */
.user-bg-letter {
  position: absolute;
  right: 12px;
  bottom: -18px;
  font-size: 120px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  user-select: none;
}

.user-profile-inner {
  position: relative;
  z-index: 1;
}

/* Avatar + name row */
.user-profile-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.user-avatar-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid #ff66c4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: #ffe0f7;
}

.user-name {
  margin: 0;
  font-size: 1.3rem;
}

.user-role {
  margin: 2px 0 0;
  font-size: 0.85rem;
  color: #ffbfe6;
}

/* Stats row */
.user-stats {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}

.user-stats li {
  background: rgba(0, 0, 0, 0.55);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.8rem;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.user-stats span {
  font-weight: 600;
  color: #ffe0f7;
}

/* Sections (comments & liked episodes) */
.user-section {
  margin-top: 12px;
}

.user-section-card {
  background: rgba(10, 10, 16, 0.96);
  border-radius: 16px;
  padding: 14px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.8);
}

.user-section-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

/* Liked episodes list */
.user-episodes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.episode-row {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.episode-row:last-child {
  border-bottom: none;
}

.episode-row-main {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.episode-date {
  font-size: 0.8rem;
}

/* Small screen tweak */
@media (max-width: 600px) {
  .episode-row-main {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* EPISODES PAGE – grid of neon chaos cards */

.episodes-hero {
  text-align: center;
  margin-bottom: 22px;
}

.episodes-hero h2 {
  font-size: 2.1rem;
  margin: 10px 0 4px;
}

.episodes-tagline {
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto;
}

/* Grid of episode cards */
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

/* Individual episode card */
.episode-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: radial-gradient(circle at top left,
    rgba(255, 102, 196, 0.22),
    rgba(9, 9, 15, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.episode-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
  border-color: rgba(255, 102, 196, 0.8);
}

.episode-card-inner {
  position: relative;
  z-index: 1;
  padding: 14px 16px 16px;
}

/* Faint EP badge in corner */
.episode-bg-badge {
  position: absolute;
  right: 10px;
  bottom: -8px;
  font-size: 90px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  user-select: none;
}

.episode-card-header {
  margin-bottom: 8px;
}

.episode-title {
  margin: 0 0 4px;
  font-size: 1.1rem;
}

.episode-title a {
  text-decoration: none;
}

.episode-title a:hover {
  text-decoration: underline;
}

.episode-meta {
  font-size: 0.8rem;
}

.episode-snippet {
  font-size: 0.9rem;
  margin: 6px 0 10px;
}

/* Bottom row: pills + button */
.episode-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.episode-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.episode-pill {
  font-size: 0.75rem;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.hot-pill {
  border-color: #ff66c4;
  color: #ffbfe6;
}

/* Button tweak to match pill look */
.episode-listen-btn {
  background: transparent;             /* override .btn */
  border: 1px solid #ff66c4;          /* neon outline */
  color: #ffbfe6;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: none;                    /* no heavy shadow */
}

.episode-listen-btn:hover {
  background: rgba(255, 102, 196, 0.15);
  opacity: 1;
}

/* Stack footer on small screens */
@media (max-width: 480px) {
  .episode-footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .episode-listen-btn {
    width: 100%;
    text-align: center;
  }
}

/* SINGLE EPISODE PAGE – feature card */

.episode-hero {
  text-align: center;
  margin-bottom: 22px;
}

.episode-hero h2 {
  font-size: 2.1rem;
  margin: 10px 0 4px;
}

.episode-meta-line {
  font-size: 0.9rem;
}

/* Main episode card */
.episode-detail-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 0; /* inner has padding */
  margin-bottom: 24px;
  background: radial-gradient(circle at top left,
    rgba(255, 102, 196, 0.24),
    rgba(8, 8, 14, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(6px);
}

.episode-detail-inner {
  position: relative;
  z-index: 1;
  padding: 14px 16px 18px;
}

/* Faint EP mark */
.episode-bg-mark {
  position: absolute;
  right: 12px;
  bottom: -10px;
  font-size: 110px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  user-select: none;
}

/* Header row in card */
.episode-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.episode-subtitle {
  margin: 0;
  font-size: 1rem;
}

.episode-header-left .small {
  margin-top: 2px;
  font-size: 0.8rem;
}

/* Audio styling */
.episode-audio {
  width: 100%;
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
}

/* Description */
.episode-description h4 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.episode-description p {
  margin: 0 0 10px;
}

/* Votes */
.episode-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.episode-vote-btn {
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.85rem;
}

/* Optional: make delete look clearly destructive */
.btn-danger {
  background: transparent;
  border: 1px solid #ff6b6b;
  color: #ffb4b4;
}

.btn-danger:hover {
  opacity: 0.95;
  background: rgba(255, 0, 0, 0.16);
}

/* Comments card */
.episode-comments-section {
  margin-top: 10px;
}

.episode-comments-card {
  background: rgba(10, 10, 16, 0.96);
  border-radius: 16px;
  padding: 14px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.85);
}

.episode-comments-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

/* Comment form tweak */
.comment-form label {
  display: block;
  font-size: 0.9rem;
  margin-top: 8px;
}

.comment-form textarea {
  margin-top: 4px;
  width: 100%;
  box-sizing: border-box;
  background: #07070c;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 10px;
  color: var(--text);
  font-family: inherit;
}

.comment-form textarea:focus {
  outline: none;
  border-color: #ff66c4;
  box-shadow: 0 0 0 1px rgba(255, 102, 196, 0.5);
}

.comment-submit-btn {
  margin-top: 8px;
  border-radius: 999px;
  padding-inline: 16px;
  font-weight: 600;
}

/* Stack header on small screens */
@media (max-width: 600px) {
  .episode-header-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* AUTH PAGES – login card */

.auth-hero {
  text-align: center;
  margin-bottom: 22px;
}

.auth-hero h2 {
  font-size: 2rem;
  margin: 10px 0 4px;
}

.auth-tagline {
  font-size: 0.9rem;
  max-width: 480px;
  margin: 0 auto;
}

/* Card around the form */
.auth-card {
  max-width: 420px;
  margin: 0 auto;
  background: rgba(10, 10, 16, 0.96);
  border-radius: 18px;
  padding: 16px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.85);
}

.auth-title {
  margin-top: 0;
  margin-bottom: 10px;
}

/* Fields */
.auth-field {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.auth-field input {
  margin-top: 4px;
  width: 100%;
  box-sizing: border-box;
  background: #07070c;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}

.auth-field input:focus {
  outline: none;
  border-color: #ff66c4;
  box-shadow: 0 0 0 1px rgba(255, 102, 196, 0.5);
}

/* Button + footer */
.auth-submit {
  margin-top: 4px;
  border-radius: 999px;
  padding-inline: 18px;
  font-weight: 600;
}

.auth-footer-text {
  margin-top: 10px;
  font-size: 0.85rem;
  text-align: center;
}
