/* FightTrainer shared site styles — used by Privacy, Terms, Support */
:root {
  --red: #FF2E4D;
  --red-deep: #C91933;
  --bg: #0B0B0F;
  --bg-2: #111117;
  --card: #16161D;
  --card-2: #1C1C24;
  --border: rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.14);
  --text: #F6F6F8;
  --text-2: rgba(246,246,248,0.66);
  --text-3: rgba(246,246,248,0.4);
  --lime: #C6FF3D;
  --amber: #FFB547;
  --cyan: #49D3FF;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.mono { font-family: 'JetBrains Mono', monospace; letter-spacing: 0.04em; }
.label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
}
.label.red { color: var(--red); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* Top ticker — four spans, translateX(-25%); explicit LTR + flex-start so strip never sits to the right */
.top-ticker {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  height: 34px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  direction: ltr;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  position: relative;
  box-sizing: border-box;
}
.top-ticker-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  flex: 0 0 auto;
  margin: 0;
  width: max-content;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  will-change: transform;
}
.top-ticker-track span {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 30px;
  padding-right: 48px;
  line-height: 1;
  box-sizing: content-box;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-25%); } }

/* Nav */
.navbar {
  position: sticky; top: 0; z-index: 100;
  padding: 14px 24px;
  background: rgba(11,11,15,0.82);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; color: var(--text); }
.brand img { height: 34px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text-2); text-decoration: none;
  font-size: 14px; font-weight: 600; transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.current { color: var(--text); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 20px; border-radius: 10px;
  font-family: 'Manrope'; font-weight: 700; font-size: 14px;
  text-decoration: none; cursor: pointer; border: none;
  letter-spacing: 0.01em; transition: transform 0.15s, box-shadow 0.15s;
}
.btn-primary {
  background: var(--red); color: #fff;
  box-shadow: 0 6px 20px rgba(255,46,77,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative; overflow: hidden;
}
.btn-primary:hover { box-shadow: 0 10px 30px rgba(255,46,77,0.45); }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { background: var(--card); border-color: rgba(255,255,255,0.3); }
.btn-lg { padding: 16px 28px; font-size: 15px; }

/* Page hero */
.page-hero {
  position: relative; overflow: hidden;
  padding: 80px 24px 60px;
  background: radial-gradient(ellipse 60% 70% at 20% 30%, rgba(255,46,77,0.12), transparent 60%), var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero .label { margin-bottom: 14px; display: inline-block; }
.page-hero h1 {
  font-family: 'Manrope'; font-weight: 800;
  font-size: clamp(44px, 6.5vw, 88px);
  line-height: 0.9; letter-spacing: -0.04em;
  margin-bottom: 16px; text-wrap: balance;
}
.page-hero h1 .accent { color: var(--red); }
.page-hero .subtitle {
  font-size: 18px; color: var(--text-2); max-width: 620px; font-weight: 500;
}
.page-hero .updated {
  margin-top: 24px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--text-3); letter-spacing: 0.16em; text-transform: uppercase;
}

/* Breadcrumbs */
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--text-3); letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--text-3); text-decoration: none; transition: color 0.15s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--border-strong); }

/* Corner brackets (reused) */
.brackets { position: relative; }
.brackets::before, .brackets::after,
.brackets > .bl, .brackets > .br {
  content: ''; position: absolute; width: 14px; height: 14px;
  border-color: var(--red); border-style: solid; pointer-events: none;
}
.brackets::before { top: 8px; left: 8px; border-width: 1.5px 0 0 1.5px; }
.brackets::after { top: 8px; right: 8px; border-width: 1.5px 1.5px 0 0; }
.brackets > .bl { bottom: 8px; left: 8px; border-width: 0 0 1.5px 1.5px; }
.brackets > .br { bottom: 8px; right: 8px; border-width: 0 1.5px 1.5px 0; }

/* Footer */
.footer { padding: 60px 24px 32px; border-top: 1px solid var(--border); background: var(--bg-2); }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { color: var(--text-2); font-size: 14px; margin-top: 14px; max-width: 320px; line-height: 1.6; }
.footer-brand .brand img { height: 40px; }
.footer-col h4 {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--text-3); letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 16px; font-weight: 700;
}
.footer-col a {
  display: block; color: var(--text-2); text-decoration: none;
  font-size: 14px; padding: 5px 0; font-weight: 500;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom .copy { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--text-3); letter-spacing: 0.08em; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; display: grid; place-items: center;
  background: var(--card); border: 1px solid var(--border-strong); border-radius: 10px;
  color: var(--text-2); transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.footer-social a:hover { background: var(--red); color: #fff; border-color: var(--red); }

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links .nav-cta { display: inline-flex; }
  .footer-top { grid-template-columns: 1fr; }
}
