:root {
  --bg: #0c0f17;
  --card: #121826;
  --accent: #5cf0c8;
  --accent2: #7dd3ff;
  --text: #e9edf5;
  --muted: #9aa3b5;
  --danger: #f56f89;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 20%, rgba(124, 255, 208, 0.08), transparent 30%),
              radial-gradient(circle at 80% 0%, rgba(117, 193, 255, 0.1), transparent 25%),
              var(--bg);
  padding: 32px 18px 48px;
  display: flex;
  justify-content: center;
}
.static-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 30%, rgba(92,240,200,0.14), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(125,211,255,0.12), transparent 35%),
    radial-gradient(circle at 60% 80%, rgba(92,240,200,0.10), transparent 40%),
    linear-gradient(180deg, #0a0d14, #080b12);
  background-size: 200% 200%;
  filter: blur(0px);
}
.page { width: min(1600px, 100%); position: relative; box-sizing: border-box; padding-right: 120px; margin-left: 260px; }
.hero {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
  margin-bottom: 8px;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: auto;
}
  .layout { display: flex; align-items: flex-start; gap: 32px; position: relative; }
  .main-col { flex: 1; min-width: 0; padding-right: 280px; }
  .aside { width: 240px; margin-top: 12px; position: absolute; right: -60px; top: 16px; }
  .top-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
  .city-panel {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(0,0,0,0.35);
    border-radius: 16px;
    background: rgba(0,0,0,0.15);
    backdrop-filter: blur(4px);
    min-width: 240px;
  }
  .city-crest-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.35));
  }
  .city-panel-body { display: flex; flex-direction: column; gap: 6px; flex: 1; }
  .city-panel-title { font-size: 12px; color: var(--muted); letter-spacing: 0.4px; text-transform: uppercase; }
  .city-panel-name { font-size: 18px; font-weight: 700; color: var(--text); }
  .city-select {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text);
    padding: 8px 10px;
    border-radius: 10px;
    font-weight: 600;
  }
  .city-select option {
    background: #0c0f17;
    color: var(--text);
  }
  .hero h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.5px;
  margin: 0 0 8px;
}
.hero p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(92, 240, 200, 0.15), rgba(125, 211, 255, 0.12));
  border: 1px solid rgba(124, 255, 208, 0.25);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}
.filters {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}
.filters input {
  width: 80px;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: var(--text);
}
.filters button {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid rgba(124, 255, 208, 0.3);
  background: rgba(92, 240, 200, 0.15);
  color: var(--text);
  cursor: pointer;
}
.cta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cta {
  padding: 15px 20px;
  border-radius: 18px;
  border: 1px solid rgba(92, 240, 200, 0.35);
  background: linear-gradient(135deg, rgba(92, 240, 200, 0.25), rgba(125, 211, 255, 0.18));
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  font-size: 18px;
  transition: transform 120ms ease, box-shadow 120ms ease;

}
.cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.35); }
.cta-floating {
  position: static;
  display: block;
  margin: 6px 18px 18px auto;
  align-self: flex-end;
}
.top-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}
.pill-row { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 12px;
}
.refresh-icon {
  display: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(92, 240, 200, 0.4);
  border-top-color: var(--accent);
}
.refresh-icon.spin {
  display: inline-block;
  animation: spin 1s linear infinite;
}
.logo-fixed {
  position: fixed;
  top: 12px;
  left: 30px;
  height: 140px;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.5)) drop-shadow(0 0 18px rgba(92,240,200,0.35));
  z-index: 20;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease;
}
.logo-fixed:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.55)) drop-shadow(0 0 22px rgba(92,240,200,0.45));
}
.account-wrap {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 30;
}
.account-btn {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(124,255,208,0.25);
  background: linear-gradient(135deg, rgba(92,240,200,0.18), rgba(125,211,255,0.16));
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.account-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,0.4); }
.account-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5cf0c8;
  box-shadow: 0 0 8px rgba(92,240,200,0.8);
}
.account-icon { filter: drop-shadow(0 0 6px rgba(0,0,0,0.35)); }
.account-panel {
  position: fixed;
  top: 0;
  right: -380px;
  width: 360px;
  height: 100vh;
  background: linear-gradient(180deg, #0e1524, #0b101a);
  border-left: 1px solid rgba(255,255,255,0.06);
  box-shadow: -20px 0 60px rgba(0,0,0,0.6);
  padding: 24px;
  transition: right 0.35s cubic-bezier(.2,.8,.2,1);
  z-index: 1000;
}
.account-panel.open { right: 0; }
.account-header { display: flex; justify-content: space-between; align-items: center; }
.account-body { margin-top: 30px; display: flex; flex-direction: column; gap: 16px; }
.user-box {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
}
.avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(92,240,200,0.2);
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--text);
}
.account-label { font-size: 12px; color: var(--muted); letter-spacing: 0.3px; text-transform: uppercase; }
.account-btn-cta {
  padding: 12px;
  border-radius: 10px;
  background: rgba(92,240,200,0.15);
  border: 1px solid rgba(92,240,200,0.3);
  color: white;
  cursor: pointer;
}
.account-btn-cta.danger {
  background: rgba(245,111,137,0.15);
  border-color: rgba(245,111,137,0.4);
}
body.panel-open::before {
  content: "";
  position: fixed;
  inset: 0;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.4);
  z-index: 999;
}
.toast {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: rgba(12,16,26,0.95);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(92,240,200,0.35);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1200;
}
.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1300;
}
.modal-card {
  background: rgba(12,16,24,0.95);
  border: 1px solid rgba(92,240,200,0.25);
  border-radius: 16px;
  padding: 20px;
  max-width: 420px;
  color: var(--text);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  text-align: center;
}
.modal-card h3 { margin: 0 0 10px; }
.modal-card p { margin: 0 0 14px; color: var(--muted); }
.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(300px, 1fr));
  gap: 16px;
}
.card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 18px 18px 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  min-height: 190px;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(92, 240, 200, 0.4);
  box-shadow: 0 20px 55px rgba(0,0,0,0.35);
}
.card .title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin: 0 0 8px;
  font-size: 16px;
}
.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 6px 0;
  color: var(--muted);
  font-size: 13px;
}
.row .val { color: var(--text); font-weight: 600; }
.profit {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(92, 240, 200, 0.12);
  border: 1px solid rgba(92, 240, 200, 0.2);
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.lu-time { font-weight: 700; }
.lu-date { font-size: 13px; color: var(--muted); margin-left: 8px; }
.profit.negative {
  background: rgba(245, 111, 137, 0.1);
  border-color: rgba(245, 111, 137, 0.2);
  color: var(--danger);
}
.span-tag { font-size: 12px; color: var(--muted); }
.tag {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 20px;
  height: 12px;
  border-radius: 999px;
  background: var(--muted);
}
.tag.enchant-1 { background: #4ade80; }
.tag.enchant-2 { background: #60a5fa; }
.tag.enchant-3 { background: #c084fc; }
.tag.enchant-4 { background: #fcd34d; }
.card.border-enchant-1 { border-color: rgba(74, 222, 128, 0.5); box-shadow: 0 0 0 1px rgba(74,222,128,0.35); }
.card.border-enchant-2 { border-color: rgba(96, 165, 250, 0.5); box-shadow: 0 0 0 1px rgba(96,165,250,0.35); }
.card.border-enchant-3 { border-color: rgba(192, 132, 252, 0.5); box-shadow: 0 0 0 1px rgba(192,132,252,0.35); }
.card.border-enchant-4 { border-color: rgba(252, 211, 77, 0.5); box-shadow: 0 0 0 1px rgba(252,211,77,0.35); }
.card.card-box { position: relative; }
@media (max-width: 600px) { .hero { flex-direction: column; align-items: flex-start; } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.article {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 30px;
}
.article-block {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 14px;
}
.article-block img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 14px 32px rgba(0,0,0,0.28);
}
.article h2 { margin: 0 0 8px; }
.article p { margin: 0 0 10px; color: var(--muted); }
.article ul { margin: 0; padding-left: 18px; color: var(--muted); }
.article li { margin-bottom: 6px; }

.auth {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  z-index: 10;
}
.auth-box {
  background: #111827;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 18px 20px;
  width: 280px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.35);
}
.auth-box h2 { margin: 0 0 8px; }
.auth-box p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
}
.auth-box input {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  margin-bottom: 10px;
}
.auth-box button {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(124, 255, 208, 0.3);
  background: rgba(92, 240, 200, 0.15);
  color: var(--text);
  cursor: pointer;
}
.hero-landing {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  padding: 80px 40px;
  align-items: center;
  opacity: 0;
  transform: translateY(40px);
  animation: heroIn 0.9s ease-out 0.1s forwards;
}
.hero-left h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 14px;
}
.gradient-text {
  background: linear-gradient(135deg, #5cf0c8, #7dd3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-landing p {
  color: var(--muted);
  font-size: 16px;
  max-width: 520px;
}
.badge-glow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(92, 240, 200, 0.2), rgba(125, 211, 255, 0.15));
  border: 1px solid rgba(92, 240, 200, 0.35);
  color: var(--text);
  font-weight: 600;
  margin-bottom: 12px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}
.cta.primary {
  background: linear-gradient(135deg, #5cf0c8, #7dd3ff);
  color: #081018;
  border: none;
}
.cta.ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
}
.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 30px;
}
.hero-stats div {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: var(--muted);
}
.hero-stats strong {
  font-size: 18px;
  color: white;
}
.hero-preview {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  display: block;
  will-change: transform;
  animation: floatSmooth 12s ease-in-out infinite;
}
  @keyframes floatSmooth {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -6px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 60px;
}
.feature-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 22px;
  transition: 0.25s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: featureIn 0.8s ease forwards;
}
.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.3s; }
  .feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(92,240,200,0.4);
  }
.animated-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
      radial-gradient(circle at 20% 30%, rgba(92,240,200,0.09), transparent 35%),
      radial-gradient(circle at 80% 20%, rgba(125,211,255,0.07), transparent 30%),
      radial-gradient(circle at 60% 80%, rgba(92,240,200,0.06), transparent 35%),
      linear-gradient(180deg, #06080e, #03050a);
    background-size: 200% 200%;
    animation: bgMove 18s ease-in-out infinite;
    filter: blur(0px);
  }
  .animated-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.05;
    pointer-events: none;
  }
  @keyframes bgMove {
    0%   { background-position: 0% 0%; }
    50%  { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
  }
/* ===== SCREENSHOT SHOWCASE ===== */
.preview-showcase {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}
.preview-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  width: 100%;
  max-width: 1400px;
}
.preview-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border: 1px solid rgba(92,240,200,0.25);
  box-shadow: 0 25px 60px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.05);
  transition: transform .3s ease, box-shadow .3s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}
.preview-card:nth-child(2) { animation-delay: 0.2s; }
.preview-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 35px 90px rgba(0,0,0,0.7), 0 0 40px rgba(92,240,200,0.25);
}
.preview-card:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(92,240,200,0.35);
  pointer-events: none;
  }
  .preview-card img {
    width: 100%;
    display: block;
    border-radius: 18px;
    }
.preview-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #eafff7;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(92,240,200,0.4);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@media (max-width: 900px) {
  .preview-wrapper { grid-template-columns: 1fr; }
}
/* Mobile Tweaks */
@media (max-width: 900px) {
  body {
    padding: 18px 14px 32px;
    justify-content: flex-start;
  }
  .page {
    width: 100%;
    padding-right: 0;
    margin-left: 0;
  }
  .hero-landing {
    grid-template-columns: 1fr;
    padding: 40px 12px;
    gap: 20px;
  }
  .hero-right { order: -1; }
  .hero-stats { flex-wrap: wrap; gap: 12px; }
  .hero-actions { flex-wrap: wrap; }
  .top-bar { justify-content: center; }
}
  .lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  .lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
  }
  .lightbox img {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  }
  .social-proof {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 12px 0 24px;
    color: var(--text);
    font-weight: 600;
  }
  .social-proof span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
  }
  .live-ticker {
    margin: 0 0 32px;
    padding: 10px 14px;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(92,240,200,0.08), rgba(125,211,255,0.08));
    color: var(--text);
    font-weight: 600;
  }
  .how-it-works { margin: 50px 0 10px; }
  .how-it-works h2 { margin-bottom: 16px; }
  .how-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
  }
  .step-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 16px;
  }
  .step-icon { font-size: 18px; margin-bottom: 8px; }
  .why-tool { margin: 50px 0; }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
  }
  .why-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 16px;
  }
  .trust-layer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
  .trust-layer li { background: rgba(255,255,255,0.03); padding: 8px 12px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.05); }
  .coming-soon ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
  .coming-soon li { background: rgba(255,255,255,0.03); padding: 8px 12px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.05); }
  .footer { margin-top: 40px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.08); color: var(--muted); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
  .profit { animation: pulse 2s infinite; }
  .card:hover { box-shadow: 0 0 18px rgba(92,240,200,0.18); }
  @keyframes pulse { 0%{ transform: scale(1);} 50%{ transform: scale(1);} 100%{ transform: scale(1);} }
  @keyframes featureIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
  .loading-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    color: var(--text);
  }
.loading-spinner {
  width: 42px;
  height: 42px;
  border: 4px solid rgba(255,255,255,0.12);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}
.loading-text { font-weight: 600; }
.auth-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.auth-card {
  background: rgba(16,20,32,0.9);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 280px;
}
.auth-header { text-align: center; display: grid; gap: 6px; }
.auth-logo { height: 54px; margin: 0 auto; filter: drop-shadow(0 8px 12px rgba(0,0,0,0.35)); }
.auth-card h2 { margin: 0; }
.auth-header p { margin: 0; color: var(--muted); font-size: 13px; }
.auth-card input {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}
.auth-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.auth-card .ghost { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); color: var(--text); }
.auth-error { color: var(--danger); min-height: 18px; font-size: 13px; }
.auth-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 4px;
}
.auth-tabs .tab {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: #aaa;
  cursor: pointer;
}
.auth-tabs .tab.active {
  background: linear-gradient(135deg, #5cf0c8, #7dd3ff);
  color: #0b1018;
  font-weight: 700;
}
.auth-hint { font-size: 12px; color: var(--muted); margin: 6px 0 0; }
.auth-footer { margin-top: 6px; text-align: center; font-size: 13px; }
.auth-footer a { color: #7dd3ff; text-decoration: none; }
.auth-footer a:hover { text-decoration: underline; }
.auth-trust { margin-top: 6px; font-size: 11px; color: #6b7280; text-align: center; }
