/* ── Fonts ─────────────────────────────────── */
@font-face {
  font-family: 'NewBlack';
  src: url('assets/fonts/NewBlackTypeface-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'NewBlack';
  src: url('assets/fonts/NewBlackTypeface-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'NewBlack';
  src: url('assets/fonts/NewBlackTypeface-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'NewBlack';
  src: url('assets/fonts/NewBlackTypeface-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'NewBlack';
  src: url('assets/fonts/NewBlackTypeface-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
}

/* ── Reset & Base ─────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'NewBlack', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Colors ────────────────────────────────── */
:root {
  --primary-red: #B21919;
  --secondary-red: #820202;
  --bullish-green: #00D4AA;
  --bearish-red: #FF4D6D;
  --warning-yellow: #F5A623;
  --surface: #1E1E1E;
  --surface-dark: #121212;
  --card-border: #2A2A2A;
  --text-primary: #FFFFFF;
  --text-secondary: #B0B0B0;
  --text-muted: #666666;
}

/* ── Nav ───────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img.emblem { height: 36px; width: 36px; }
.nav-logo img.wordmark { height: 22px; }
.nav-actions { display: flex; gap: 12px; align-items: center; }

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'NewBlack', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}
.btn-primary {
  background: var(--primary-red);
  color: #fff;
}
.btn-primary:hover { background: #c91e1e; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 12px 16px;
}
.btn-ghost:hover { color: #fff; }

/* ── Footer ────────────────────────────────── */
footer {
  padding: 48px 24px;
  border-top: 1px solid var(--card-border);
  max-width: 1120px;
  margin: 80px auto 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Legal page layout ─────────────────────── */
.legal-page {
  padding-top: 80px;
  min-height: 100vh;
}
.legal-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}
.legal-content h1 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}
.legal-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.legal-section {
  margin-bottom: 20px;
}
.legal-section h2 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.legal-section p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  white-space: pre-line;
}

/* ── FAQ ───────────────────────────────────── */
.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--surface-dark);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.contact-card:hover { border-color: var(--primary-red); }
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(178,25,25,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-title {
  font-size: 15px;
  font-weight: 600;
}
.contact-sub {
  font-size: 13px;
  color: var(--text-muted);
}
.faq-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin: 28px 0 16px;
}
.faq-item {
  margin-bottom: 8px;
  background: var(--surface-dark);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  user-select: none;
}
.faq-question:hover { background: rgba(255,255,255,0.02); }
.faq-arrow {
  font-size: 18px;
  color: var(--text-muted);
  transition: transform 0.2s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 16px 16px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.faq-item.open .faq-answer { display: block; }

/* ── Delete account page ───────────────────── */
.delete-warning-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,77,109,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
}
.delete-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.delete-subtitle {
  text-align: center;
  font-size: 14px;
  color: var(--bearish-red);
  font-weight: 500;
  margin-bottom: 28px;
}
.delete-list {
  padding: 16px;
  background: var(--surface-dark);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  margin-bottom: 24px;
}
.delete-list-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.delete-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}
.delete-list-item .dot {
  color: var(--bearish-red);
  font-size: 16px;
  flex-shrink: 0;
}
.delete-info {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  text-align: center;
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 640px) {
  .nav-actions .btn-ghost { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
