/* ================================================================
   Fefa Togo — No Deposit Bonus for Table Players
   Visual direction: Roulette red & black (bold red + jet black + white)
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; }

:root {
  --bg: #ffffff;
  --bg-alt: #f5f5f5;
  --bg-dark: #0a0a0a;
  --bg-dark-alt: #1a1a1a;
  --text: #0a0a0a;
  --text-alt: #333333;
  --text-muted: #666666;
  --text-inv: #ffffff;
  --red: #c8102e;
  --red-dark: #9c0824;
  --red-bright: #e42a3f;
  --black: #000000;
  --border: #e0e0e0;
  --border-dark: #333333;
  --sans-condensed: "Arial Narrow", "Impact", "Helvetica Neue Condensed", "Roboto Condensed", sans-serif;
  --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Arial", sans-serif;
  --serif: "Georgia", "Iowan Old Style", serif;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--red); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; transition: color .15s; }
a:hover { color: var(--red-dark); }

/* ---------- Header ---------- */
.site-header {
  background: var(--bg-dark);
  border-bottom: 4px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-family: var(--sans-condensed);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--text-inv);
  text-transform: uppercase;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo a { color: inherit; text-decoration: none; display: flex; align-items: center; gap: 8px; }
.logo .badge {
  background: var(--red);
  color: var(--text-inv);
  padding: 4px 10px 3px;
  font-size: 22px;
  letter-spacing: 2px;
  border-radius: 2px;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.site-nav a {
  color: var(--text-inv);
  font-family: var(--sans-condensed);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 2px;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--red-bright);
  border-bottom-color: var(--red);
}

/* ---------- Main layout ---------- */
main { max-width: 820px; margin: 0 auto; padding: 40px 28px 60px; }

.breadcrumbs {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--sans-condensed);
  font-weight: 700;
}
.breadcrumbs a { color: var(--red); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { color: var(--text-muted); margin: 0 8px; }

.page-hero {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 4px solid var(--black);
}

.page-hero h1 {
  font-family: var(--sans-condensed);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1;
  margin: 0 0 16px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -1px;
}
.page-hero h1 .accent {
  color: var(--red);
  display: inline-block;
  position: relative;
}
.page-hero h1 .strike {
  background: var(--black);
  color: var(--text-inv);
  padding: 4px 14px 2px;
  display: inline-block;
}

.page-hero .lede {
  font-size: 1.15rem;
  color: var(--text-alt);
  margin: 0;
  font-family: var(--sans);
  line-height: 1.55;
  max-width: 640px;
}

.hero-img {
  margin: 24px 0 32px;
  border: 3px solid var(--black);
}

/* ---------- Article ---------- */
article h2 {
  font-family: var(--sans-condensed);
  font-size: 1.9rem;
  font-weight: 900;
  margin: 44px 0 16px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0px;
  padding-bottom: 6px;
  border-bottom: 3px solid var(--red);
  position: relative;
  display: inline-block;
  min-width: 240px;
  max-width: 100%;
}

article h3 {
  font-family: var(--sans-condensed);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--red);
  margin: 28px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

article p { margin: 0 0 18px; }
article ul, article ol { margin: 0 0 22px; padding-left: 22px; }
article li { margin-bottom: 8px; }
article li::marker { color: var(--red); font-weight: 900; }
article strong { color: var(--black); font-weight: 900; }

article .inline-img {
  margin: 32px 0;
  border: 3px solid var(--black);
}

/* Callout box - roulette-inspired */
.callout {
  background: var(--bg-dark);
  color: var(--text-inv);
  padding: 24px 28px;
  margin: 28px 0;
  border-left: 6px solid var(--red);
}
.callout h3 {
  color: var(--red-bright);
  margin: 0 0 10px;
  font-family: var(--sans-condensed);
  font-size: 1.15rem;
  letter-spacing: 1px;
}
.callout p { color: var(--text-inv); margin: 0; }

/* ---------- Table of contents ---------- */
.toc {
  background: var(--bg-dark);
  color: var(--text-inv);
  padding: 28px 32px;
  margin: 32px 0 40px;
  border: 3px solid var(--red);
}
.toc h2 {
  font-family: var(--sans-condensed);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0 0 18px;
  padding: 0;
  border: none;
  color: var(--red-bright);
  display: block;
  min-width: 0;
}
.toc h2::before {
  content: "\25CF ";
  color: var(--red);
  margin-right: 6px;
}
.toc ol {
  columns: 2;
  column-gap: 32px;
  margin: 0;
  padding-left: 22px;
  font-size: 15px;
  color: var(--text-inv);
}
.toc li { margin-bottom: 7px; break-inside: avoid; }
.toc li::marker { color: var(--red); font-family: var(--sans-condensed); font-weight: 900; }
.toc a { color: var(--text-inv); text-decoration: none; }
.toc a:hover { color: var(--red-bright); text-decoration: underline; }

@media (max-width: 640px) { .toc ol { columns: 1; } }

/* ---------- FAQ ---------- */
.faq { margin: 32px 0; }
.faq details {
  background: var(--bg-alt);
  border: 2px solid var(--black);
  margin-bottom: 10px;
  padding: 0;
}
.faq details[open] {
  background: var(--bg);
  border-color: var(--red);
}
.faq summary {
  padding: 16px 22px;
  cursor: pointer;
  font-family: var(--sans-condensed);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 46px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--red);
  font-weight: 900;
  line-height: 0.7;
}
.faq details[open] summary { color: var(--red); }
.faq details[open] summary::after { content: "−"; }
.faq details > *:not(summary) {
  padding: 0 22px 18px;
  color: var(--text-alt);
  font-family: var(--sans);
}

/* ---------- Disclaimer ---------- */
.disclaimer {
  background: var(--bg-dark);
  color: var(--text-inv);
  padding: 22px 26px;
  margin: 40px 0;
  border-left: 6px solid var(--red);
  font-size: 15px;
}
.disclaimer strong {
  color: var(--red-bright);
  font-family: var(--sans-condensed);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}

/* ---------- Author bio ---------- */
.author-bio {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--bg-alt);
  border-left: 6px solid var(--red);
  padding: 26px;
  margin: 40px 0;
}
.author-bio img {
  width: 90px;
  height: 90px;
  border-radius: 0;
  border: 3px solid var(--black);
  flex-shrink: 0;
}
.author-bio .name {
  font-family: var(--sans-condensed);
  font-weight: 900;
  color: var(--text);
  font-size: 1.25rem;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.author-bio .role {
  font-family: var(--sans-condensed);
  font-size: 12px;
  color: var(--red);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}
.author-bio p { margin: 0; font-size: 15px; color: var(--text-alt); line-height: 1.6; }

/* ---------- Related pages ---------- */
.related {
  background: var(--bg-alt);
  border: 3px solid var(--black);
  padding: 26px 30px;
  margin: 40px 0;
}
.related h3 {
  font-family: var(--sans-condensed);
  color: var(--black);
  letter-spacing: 2px;
  margin: 0 0 14px;
  font-size: 1.15rem;
  text-transform: uppercase;
  font-weight: 900;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--red);
}
.related ul { list-style: none; padding: 0; margin: 0; }
.related li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}
.related li::before {
  content: "\25CF";
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 14px;
  top: 2px;
}

/* ---------- Contact form ---------- */
.contact-form {
  background: var(--bg-alt);
  border: 3px solid var(--black);
  padding: 28px;
  margin: 24px 0;
}
.contact-form label {
  display: block;
  font-family: var(--sans-condensed);
  font-weight: 900;
  margin: 16px 0 6px;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--text);
  text-transform: uppercase;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--black);
  border-radius: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
}
.contact-form button {
  margin-top: 22px;
  padding: 15px 32px;
  background: var(--red);
  color: var(--text-inv);
  border: 3px solid var(--red);
  border-radius: 0;
  font-family: var(--sans-condensed);
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 15px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all .2s;
}
.contact-form button:hover { background: var(--black); border-color: var(--black); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark);
  border-top: 4px solid var(--red);
  padding: 44px 28px 30px;
  margin-top: 60px;
  color: var(--text-muted);
  font-size: 14px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
}
.footer-col h4 {
  font-family: var(--sans-condensed);
  color: var(--red-bright);
  letter-spacing: 2px;
  font-size: 13px;
  margin: 0 0 14px;
  text-transform: uppercase;
  font-weight: 900;
}
.footer-col p, .footer-col ul { color: #999; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #cccccc; text-decoration: none; }
.footer-col a:hover { color: var(--red-bright); }
.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
  text-align: center;
  font-size: 12px;
  color: #888;
}
.footer-bottom .warning {
  display: inline-block;
  background: var(--red);
  color: var(--text-inv);
  padding: 3px 10px;
  font-weight: 900;
  margin-right: 10px;
  font-size: 11px;
  letter-spacing: 1px;
  font-family: var(--sans-condensed);
}

/* ---------- Simple pages ---------- */
.simple-page { max-width: 720px; }
.simple-page h2 { margin-top: 32px; }
.helpline-box {
  background: var(--bg-dark);
  color: var(--text-inv);
  border-left: 6px solid var(--red);
  padding: 22px 26px;
  margin: 24px 0;
}
.helpline-box h3 { margin-top: 0; color: var(--red-bright); font-family: var(--sans-condensed); text-transform: uppercase; letter-spacing: 1px; }

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  body { font-size: 16px; }
  .header-inner { flex-direction: column; padding: 14px 20px; gap: 14px; text-align: center; }
  .logo { font-size: 24px; }
  .logo .badge { font-size: 18px; }
  .site-nav ul { gap: 14px; justify-content: center; }
  .site-nav a { font-size: 13px; letter-spacing: 1.5px; }
  main { padding: 26px 20px 40px; }
  article h2 { font-size: 1.5rem; margin: 32px 0 14px; }
  .author-bio { flex-direction: column; align-items: center; text-align: center; }
  .toc { padding: 22px; }
  .toc ol { columns: 1; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .site-nav, .breadcrumbs { display: none !important; }
  body { background: white; color: black; }
  article h2 { color: black; border-color: black; }
  a { color: black; text-decoration: underline; }
}
