:root {
  --bg: #0a0505;
  --bg-2: #120909;
  --card: #1a0b0b;
  --border: #3a1010;
  --text: #f4e8e8;
  --muted: #a37c7c;
  --accent: #ff2d2d;
  --accent-2: #e00000;
  --accent-soft: rgba(255, 45, 45, 0.14);
  --danger: #ff5c7a;
  --font-head: 'Chakra Petch', 'Inter', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---------- Background ---------- */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(700px 460px at 12% -5%, rgba(255, 45, 45, 0.16), transparent 60%),
    radial-gradient(700px 460px at 92% 12%, rgba(224, 0, 0, 0.13), transparent 60%);
  animation: bgDrift 14s ease-in-out infinite alternate;
}

.bg-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 45, 45, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 45, 45, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 30%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, black, transparent 75%);
}

@keyframes bgDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 18px) scale(1.05); }
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.hidden {
  display: none !important;
}

/* ---------- Cursor glow ---------- */
.cursor-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  transform: translate3d(-100px, -100px, 0);
  transition: transform 0.22s cubic-bezier(0.22, 0.9, 0.32, 1);
  will-change: transform;
}

.cursor-glow {
  width: 280px;
  height: 280px;
  margin: -140px 0 0 -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 45, 45, 0.28), rgba(255, 45, 45, 0.08) 45%, transparent 70%);
  mix-blend-mode: screen;
  animation: cursorPulse 2.8s ease-in-out infinite;
}

@keyframes cursorPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.22); opacity: 0.5; }
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(10, 5, 5, 0.75);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.logo {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text);
  text-decoration: none;
  animation: logoPulse 3.5s ease-in-out infinite;
}

.logo span {
  color: var(--accent);
  text-shadow: 0 0 18px rgba(255, 45, 45, 0.7);
}

@keyframes logoPulse {
  0%, 100% { text-shadow: 0 0 8px rgba(255, 45, 45, 0.35); }
  50% { text-shadow: 0 0 22px rgba(255, 45, 45, 0.8); }
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--accent);
}

.user-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-name {
  font-weight: 600;
  color: var(--accent);
}

/* ---------- Buttons ---------- */
.btn {
  border: none;
  border-radius: 0;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  animation: btnGlow 2.6s ease-in-out infinite;
}

.btn-primary:hover {
  box-shadow: 0 0 26px rgba(255, 45, 45, 0.6);
  transform: translateY(-1px);
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 0 12px rgba(255, 45, 45, 0.25); }
  50% { box-shadow: 0 0 26px rgba(255, 45, 45, 0.55); }
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent-soft);
  box-shadow: 0 0 18px rgba(255, 45, 45, 0.35);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
  margin-top: 8px;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  animation: none;
}

/* ---------- Hero ---------- */
.hero {
  padding: 120px 24px 64px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  border: 1px solid var(--border);
  background: var(--accent-soft);
  padding: 6px 14px;
  margin-bottom: 22px;
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 18px;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent), #ff6b3d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.hero-sub {
  color: var(--muted);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 36px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.3s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--card);
  padding: 14px 0;
  margin-bottom: 84px;
}

.marquee-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--muted);
}

.marquee-track span:nth-child(odd) {
  color: var(--accent);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Section titles ---------- */
.section-title {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 14px;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

/* ---------- Features ---------- */
.features {
  padding-bottom: 84px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  animation: fadeUp 0.8s ease both;
}

.feature:nth-child(1) { animation-delay: 0.1s; }
.feature:nth-child(2) { animation-delay: 0.2s; }
.feature:nth-child(3) { animation-delay: 0.3s; }

.feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 180px at 50% -20%, rgba(255, 45, 45, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 14px 40px rgba(255, 45, 45, 0.16);
}

.feature:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  padding: 7px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 45, 45, 0.35);
  border-radius: 0;
  stroke: var(--accent);
  transition: transform 0.3s;
}

.feature:hover .feature-icon {
  transform: scale(1.12);
}

.feature h3 {
  font-family: var(--font-head);
  font-size: 17px;
  margin-bottom: 8px;
}

.feature p {
  color: var(--muted);
  font-size: 14px;
}

/* ---------- How it works ---------- */
.how {
  padding-bottom: 84px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.step {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 28px 24px;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}

.step:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
  margin-bottom: 12px;
  opacity: 0.9;
}

.step h3 {
  font-family: var(--font-head);
  font-size: 17px;
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  font-size: 14px;
}

/* ---------- CTA ---------- */
.cta {
  text-align: center;
  padding: 40px 24px 84px;
}

.cta h2 {
  font-family: var(--font-head);
  font-size: 32px;
  margin-bottom: 12px;
}

.cta p {
  color: var(--muted);
  margin-bottom: 30px;
}

/* ---------- Tab nav / Lobby ---------- */
.tab-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 0 12px;
}

.tab-grid {
  display: flex;
  width: 100%;
  max-width: 420px;
  gap: 8px;
}

.tab-btn {
  flex: 1;
  padding: 9px 12px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.tab-btn:hover {
  color: var(--text);
  border-color: var(--accent);
}

.tab-btn.active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(255, 45, 45, 0.35);
}

.lobby {
  padding: 60px 24px 84px;
  max-width: 820px;
}

.lobby-title {
  font-family: var(--font-head);
  font-size: 40px;
  letter-spacing: 4px;
  margin-bottom: 34px;
  animation: fadeUp 0.6s ease both;
}

.lobby-head {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 22px 24px;
  margin-bottom: 26px;
  animation: fadeUp 0.6s ease 0.05s both;
}

.lobby-username {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
}

.admin-badge {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 3px 8px;
  box-shadow: 0 0 18px rgba(255, 45, 45, 0.45);
  animation: pulse 1.6s ease-in-out infinite;
}

.lobby-date {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.lobby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.lobby-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  padding: 22px 18px;
  animation: fadeUp 0.6s ease both;
}

.lobby-card:nth-child(2) { animation-delay: 0.1s; }
.lobby-card:nth-child(3) { animation-delay: 0.15s; }
.lobby-card:nth-child(4) { animation-delay: 0.2s; }

.lobby-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.lobby-label {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lobby-value {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  text-shadow: 0 0 18px rgba(255, 45, 45, 0.35);
}

/* ---------- Profile ---------- */
.profile {
  padding: 70px 24px 84px;
  max-width: 560px;
}

.profile-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  padding: 36px 28px;
  text-align: center;
  margin-bottom: 40px;
  animation: fadeUp 0.6s ease both;
}

.profile-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 0 30px rgba(255, 45, 45, 0.35);
}

.profile-name {
  font-family: var(--font-head);
  font-size: 26px;
}

.profile-date {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.settings {
  animation: fadeUp 0.6s ease 0.1s both;
}

.settings .section-title {
  margin-bottom: 26px;
}

.opt {
  color: var(--muted);
  font-weight: 400;
  font-size: 12px;
}

.form-ok {
  margin-top: 12px;
  color: #34d17b;
  font-size: 13px;
}

/* ---------- About ---------- */
.about {
  padding-bottom: 100px;
  max-width: 700px;
  text-align: center;
  animation: fadeUp 0.8s ease 0.2s both;
}

.about h2 {
  font-family: var(--font-head);
  font-size: 28px;
  margin-bottom: 14px;
}

.about h2 span {
  color: var(--accent);
}

.about p {
  color: var(--muted);
  font-size: 16px;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.footer span {
  color: var(--accent);
  font-weight: 600;
}

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(4, 2, 2, 0.8);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: overlayIn 0.25s ease both;
}

.modal {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  width: 100%;
  max-width: 420px;
  padding: 34px 30px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 45, 45, 0.08);
  animation: modalIn 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
}

@keyframes overlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  transition: background 0.2s;
}

.modal-close img {
  width: 18px;
  height: 18px;
  display: block;
  stroke: var(--muted);
  transition: stroke 0.2s, transform 0.2s;
}

.modal-close:hover {
  background: var(--accent-soft);
}

.modal-close:hover img {
  stroke: var(--accent);
  transform: rotate(90deg);
}

.tabs {
  display: flex;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 5px;
  margin-bottom: 26px;
}

.tab {
  flex: 1;
  padding: 9px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.tab.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 0 14px rgba(255, 45, 45, 0.4);
}

.form-title {
  font-family: var(--font-head);
  font-size: 22px;
  margin-bottom: 20px;
}

.auth-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin: 14px 0 6px;
}

.auth-form input {
  width: 100%;
  padding: 12px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 45, 45, 0.18);
}

.form-error {
  margin-top: 12px;
  color: var(--danger);
  font-size: 13px;
  animation: shake 0.3s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ---------- Admin panel ---------- */
.admin {
  padding: 40px 24px 84px;
  max-width: 920px;
}

.admin-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.btn-danger {
  background: transparent;
  border: 1px solid var(--danger, #ff4545);
  color: #ff4545;
}

.btn-danger:hover {
  background: var(--danger, #ff4545);
  color: #fff;
}

.btn.active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.admin-sub {
  font-family: var(--font-head);
  font-size: 18px;
  margin-bottom: 16px;
}

.muted {
  color: var(--muted);
  font-weight: 400;
  font-size: 13px;
}

.user-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 14px 16px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  animation: fadeUp 0.4s ease both;
}

.user-row:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}

.user-av {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  box-shadow: 0 0 16px rgba(255, 45, 45, 0.3);
}

.user-av.big {
  width: 56px;
  height: 56px;
  flex-basis: 56px;
  font-size: 20px;
}

.user-main {
  flex: 1;
  min-width: 0;
}

.user-nick {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.user-uname {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
}

.user-sub,
.detail-sub {
  color: var(--muted);
  font-size: 13px;
  margin-top: 3px;
}

.detail-sub.small {
  font-size: 11px;
  word-break: break-all;
}

.badge-role,
.badge-status {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 2px 7px;
  text-transform: uppercase;
}

.badge-admin {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 14px rgba(255, 45, 45, 0.45);
}

.st-ok {
  border: 1px solid #34d17b;
  color: #34d17b;
}

.st-pending {
  border: 1px solid #f5b942;
  color: #f5b942;
}

.st-banned {
  border: 1px solid #ff4545;
  color: #ff4545;
}

.user-arrow {
  color: var(--muted);
  font-size: 22px;
}

.empty {
  color: var(--muted);
  padding: 26px 0;
  text-align: center;
}

.detail-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 24px;
  margin-top: 18px;
  animation: fadeUp 0.4s ease both;
}

.detail-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.detail-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.creds-box h4 {
  font-family: var(--font-head);
  font-size: 15px;
  margin-bottom: 12px;
}

.creds-row {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  word-break: break-all;
}

.creds-label {
  flex: 0 0 70px;
  color: var(--muted);
  font-size: 13px;
}

.creds-val {
  font-family: var(--font-mono);
  font-size: 13px;
}

.creds-edit {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.creds-edit input {
  flex: 1;
  min-width: 180px;
  padding: 10px 12px;
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 13px;
  outline: none;
}

.creds-edit input:focus {
  border-color: var(--accent);
}

.login-row {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.login-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.log-head,
.log-row {
  display: grid;
  grid-template-columns: 140px 110px 130px 1fr 1.4fr;
  gap: 10px;
  padding: 9px 12px;
  font-size: 12px;
  align-items: start;
}

.log-head {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.log-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  word-break: break-word;
}

.log-type {
  font-family: var(--font-mono);
  color: var(--accent);
}

.admin-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--card);
  border: 1px solid var(--accent);
  color: var(--text);
  padding: 12px 22px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 100;
}

.admin-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.register-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}
