/* Jokers Family — Website Shared Styles */
:root {
  --jf-red: #e02020;
  --jf-red-soft: rgba(224, 32, 32, 0.55);
  --jf-ember: #ff5a3c;
  --jf-bg: #0d0506;
  --jf-panel: rgba(255, 240, 232, 0.025);
  --jf-line: rgba(243, 233, 228, 0.12);
  --jf-line-soft: rgba(243, 233, 228, 0.07);
  --jf-text: #f3e9e4;
  --jf-text-dim: rgba(243, 233, 228, 0.66);
  --jf-text-faint: rgba(243, 233, 228, 0.4);
  --jf-ivory: #efe2d6;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--jf-bg);
  color: var(--jf-text);
  font-family: "Jost", sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 30px;
  background: rgba(13, 5, 6, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--jf-line-soft);
}
.nav-brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.nav-brand img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 22%;
  border: 1px solid rgba(224, 32, 32, 0.5);
  box-shadow: 0 0 16px rgba(224, 32, 32, 0.3);
}
.nav-brand .wordmark {
  font-family: "Cormorant", serif;
  font-weight: 400;
  font-size: 21px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--jf-ivory);
  white-space: nowrap;
}
.nav-brand .wordmark em {
  font-family: "Great Vibes", cursive;
  font-style: normal;
  font-size: 19px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--jf-red);
  margin-left: 6px;
  text-shadow: 0 0 12px rgba(224, 32, 32, 0.55);
}
.nav-links { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.nav-links a {
  padding: 9px 14px;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  color: var(--jf-text-faint);
  border-bottom: 1px solid transparent;
  transition: color 160ms ease;
}
.nav-links a:hover { color: var(--jf-text); }
.nav-links a.active { color: var(--jf-ivory); border-bottom-color: var(--jf-red); }
.nav-links a.cta {
  margin-left: 10px;
  border: 1px solid rgba(224, 32, 32, 0.55);
  background: rgba(224, 32, 32, 0.1);
  color: #ffd9d0;
  transition: all 180ms ease;
}
.nav-links a.cta:hover {
  border-color: var(--jf-red);
  background: rgba(224, 32, 32, 0.2);
  color: #fff;
  box-shadow: 0 0 22px rgba(224, 32, 32, 0.3);
}

/* ---------- Page hero ---------- */
.page-hero {
  position: relative;
  padding: 168px 24px 84px;
  text-align: center;
  overflow: hidden;
}
.page-hero .glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 60% at 50% 0%, rgba(224, 32, 32, 0.14) 0%, rgba(224, 32, 32, 0) 70%);
  pointer-events: none;
}
.eyebrow {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  text-transform: uppercase;
  color: var(--jf-text-faint);
  margin-bottom: 16px;
}
.display {
  position: relative;
  display: inline-block;
  line-height: 1;
  font-family: "Cormorant", serif;
  font-weight: 300;
  font-size: clamp(44px, 7.5vw, 88px);
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  text-transform: uppercase;
  color: var(--jf-ivory);
  text-shadow: 0 0 44px rgba(224, 32, 32, 0.32), 0 2px 20px rgba(0, 0, 0, 0.6);
}
.display .script {
  position: absolute;
  left: 50%; top: 58%;
  transform: translateX(-50%) rotate(-4deg);
  font-family: "Great Vibes", cursive;
  font-size: 0.62em;
  letter-spacing: 0.18em;
  text-transform: none;
  text-indent: 0;
  color: var(--jf-red);
  text-shadow: 0 0 18px rgba(224, 32, 32, 0.75), 0 0 50px rgba(224, 32, 32, 0.4);
  white-space: nowrap;
  pointer-events: none;
}
.page-hero .lede {
  max-width: 620px;
  margin: 44px auto 0;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--jf-text-dim);
  text-wrap: pretty;
}

/* ---------- Layout ---------- */
.wrap { max-width: 1060px; margin: 0 auto; padding: 0 24px; }
.section { padding: 30px 0 70px; }
.section-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}
.section-head h2 {
  font-family: "Cormorant", serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jf-ivory);
  white-space: nowrap;
}
.section-head .rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(224, 32, 32, 0.55), rgba(224, 32, 32, 0));
}

/* ---------- Panels & cards ---------- */
.panel {
  background: var(--jf-panel);
  border: 1px solid var(--jf-line-soft);
  border-radius: 14px;
  padding: 28px;
}
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.link-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 24px;
  background: var(--jf-panel);
  border: 1px solid var(--jf-line-soft);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}
.link-card:hover {
  border-color: rgba(224, 32, 32, 0.4);
  background: rgba(224, 32, 32, 0.05);
  transform: translateY(-2px);
}
.link-card .num {
  font-family: "Cormorant", serif;
  font-size: 15px;
  letter-spacing: 0.2em;
  color: rgba(224, 32, 32, 0.8);
}
.link-card h3 {
  font-family: "Cormorant", serif;
  font-weight: 400;
  font-size: 23px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jf-ivory);
}
.link-card p { font-size: 13.5px; line-height: 1.6; color: var(--jf-text-faint); }
.link-card .go {
  margin-top: auto;
  padding-top: 10px;
  font-size: 11.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--jf-text-faint);
  transition: color 160ms ease;
}
.link-card:hover .go { color: #ffb3a6; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 38px;
  font-family: "Jost", sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--jf-text);
  background: rgba(13, 5, 6, 0.3);
  border: 1px solid rgba(243, 233, 228, 0.32);
  border-radius: 2px;
  backdrop-filter: blur(3px);
  cursor: pointer;
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease, letter-spacing 300ms ease, box-shadow 200ms ease;
}
.btn:hover { border-color: var(--jf-red); color: #fff; background: rgba(224, 32, 32, 0.1); letter-spacing: 0.36em; }
.btn.solid {
  border-color: rgba(224, 32, 32, 0.6);
  background: rgba(224, 32, 32, 0.14);
  color: #ffd9d0;
}
.btn.solid:hover { background: rgba(224, 32, 32, 0.24); box-shadow: 0 0 30px rgba(224, 32, 32, 0.3); color: #fff; }

/* ---------- Fact rows ---------- */
.fact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.fact {
  padding: 24px;
  background: var(--jf-panel);
  border: 1px solid var(--jf-line-soft);
  border-radius: 14px;
}
.fact .label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(224, 32, 32, 0.85);
  margin-bottom: 10px;
}
.fact .value {
  font-family: "Cormorant", serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--jf-ivory);
}
.fact p { margin-top: 8px; font-size: 13.5px; line-height: 1.6; color: var(--jf-text-faint); }

/* ---------- Footer ---------- */
.footer {
  margin-top: 40px;
  border-top: 1px solid var(--jf-line-soft);
  padding: 44px 24px 50px;
  text-align: center;
}
.footer .crest {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 22%;
  margin: 0 auto 18px;
  border: 1px solid rgba(224, 32, 32, 0.5);
  box-shadow: 0 0 22px rgba(224, 32, 32, 0.3);
}
.footer .insta {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--jf-text-dim);
  text-decoration: none;
  border-bottom: 1px solid rgba(224, 32, 32, 0.4);
  padding-bottom: 2px;
  transition: color 160ms ease;
}
.footer .insta:hover { color: #fff; }
.footer .meta {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(243, 233, 228, 0.32);
}
.footer .meta .diamond { width: 4px; height: 4px; background: rgba(224, 32, 32, 0.55); transform: rotate(45deg); }
.footer .login-link { color: rgba(243, 233, 228, 0.32); text-decoration: none; transition: color 160ms; }
.footer .login-link:hover { color: var(--jf-text-dim); }

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
  .nav-links a { padding: 9px 10px; font-size: 11.5px; letter-spacing: 0.12em; }
  .nav-links a.cta { margin-left: 6px; }
}
@media (max-width: 1060px) {
  .nav { flex-wrap: wrap; justify-content: center; padding: 12px 16px; row-gap: 4px; }
  .nav-links { justify-content: center; }
  .page-hero { padding-top: 200px; }
}
@media (max-width: 560px) {
  .nav-links a { padding: 7px 8px; font-size: 10.5px; letter-spacing: 0.08em; }
}
