/* ============================================
   SpinsLabs.com — Global Stylesheet
   ============================================ */

:root {
  --navy: #091021;
  --navy-2: #0e1730;
  --navy-3: #141f3d;
  --gold: #f5b715;
  --gold-dark: #d99e05;
  --red: #e5233d;
  --white: #ffffff;
  --off-white: #f6f7fa;
  --gray: #8b93a7;
  --gray-light: #c3c9d6;
  --text: #1c2333;
  --border: #e2e5ec;
  --green: #2fae63;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(9, 16, 33, 0.12);
  --maxw: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.65;
  font-size: 16px;
}

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

a { color: #1758c7; }

.container { max-width: var(--maxw); margin: 0 auto; padding-left: clamp(24px, 5vw, 64px); padding-right: clamp(24px, 5vw, 64px); }

/* ---------- Header ---------- */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 3px solid var(--gold);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 19px;
  color: var(--navy);
}
.brand-name {
  color: var(--white);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.2px;
}
.brand-name span { color: var(--gold); }
.main-nav { display: flex; gap: 26px; }
.main-nav a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
}
.main-nav a:hover { color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,16,33,0.95) 5%, rgba(9,16,33,0.45) 60%, rgba(9,16,33,0.3));
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-kicker {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.08;
  text-transform: uppercase;
  font-weight: 900;
  max-width: 820px;
}
.hero-meta {
  margin-top: 18px;
  color: var(--gray-light);
  font-size: 13.5px;
}
.hero-meta strong { color: var(--white); }

/* ---------- Rating card ---------- */
.rating-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: -60px;
  position: relative;
  z-index: 5;
  overflow: hidden;
  margin-bottom: 54px;
}
.rating-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--border);
}
.rating-logo {
  background: var(--navy);
  border-radius: 10px;
  padding: 16px 22px;
  flex-shrink: 0;
}
.rating-logo img { width: 170px; height: auto; }
.rating-offer { flex: 1; min-width: 220px; text-align: center; }
.rating-offer .offer-amount {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
}
.rating-offer .offer-label {
  font-size: 13px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.rating-offer .offer-tcs { font-size: 11.5px; color: var(--gray); margin-top: 6px; }
.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-weight: 900;
  font-size: 18px;
  text-decoration: none;
  padding: 17px 42px;
  border-radius: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 6px 18px rgba(245, 183, 21, 0.35);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(245, 183, 21, 0.45); }
.rating-bottom {
  display: flex;
  flex-wrap: wrap;
  padding: 22px 26px;
  gap: 30px;
  align-items: center;
}
.overall-score { text-align: center; min-width: 150px; }
.overall-score .score {
  font-size: 54px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.overall-score .stars { color: var(--gold); font-size: 20px; letter-spacing: 2px; margin-top: 6px; }
.overall-score .score-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-top: 4px; }
.score-bars { flex: 1; min-width: 260px; display: grid; gap: 9px; }
.score-row { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.score-row .label { width: 150px; text-transform: uppercase; letter-spacing: 0.4px; color: var(--text); flex-shrink: 0; }
.score-row .bar { flex: 1; height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.score-row .bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-dark)); border-radius: 4px; }
.score-row .val { width: 32px; text-align: right; font-weight: 800; }

/* ---------- Layout / sections ---------- */
.section { margin-bottom: 54px; }
.section h2 {
  font-size: 30px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section h3 {
  font-size: 21px;
  font-weight: 800;
  color: var(--navy);
  margin: 26px 0 10px;
}
.section p { margin-bottom: 14px; }
.section ul, .section ol { margin: 0 0 16px 22px; }
.section li { margin-bottom: 8px; }
.section figure { margin: 22px 0; }
.section figure img { border-radius: var(--radius); box-shadow: var(--shadow); }
.section figcaption { font-size: 12.5px; color: var(--gray); margin-top: 8px; text-align: center; }

/* Article figures (Games, Tournaments, Loyalty) — smaller, uniform size, centered */
#games figure, #bonuses figure, #loyalty figure { max-width: 560px; margin-left: auto; margin-right: auto; }
#games figure img, #bonuses figure img, #loyalty figure img { width: 100%; object-fit: cover; }

.callout {
  background: #fff8e6;
  border-left: 4px solid var(--gold);
  padding: 14px 18px;
  border-radius: 6px;
  margin: 18px 0;
  font-size: 15px;
}
.callout.warn { background: #fdeef0; border-left-color: var(--red); }

/* ---------- Quick facts table ---------- */
.facts-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.facts-table th, .facts-table td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14.5px; vertical-align: top; }
.facts-table th { width: 34%; font-weight: 800; color: var(--navy); background: #fafbfd; }
.facts-table tr:last-child th, .facts-table tr:last-child td { border-bottom: none; }

/* ---------- Pros / cons ---------- */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.pc-col { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px 24px; }
.pc-col h3 { margin: 0 0 14px; font-size: 18px; text-transform: uppercase; letter-spacing: 1px; padding-bottom: 10px; border-bottom: 3px solid var(--navy); }
.pc-col.pros h3 { border-color: var(--green); }
.pc-col.cons h3 { border-color: var(--red); }
.pc-col ul { list-style: none; margin: 0; }
.pc-col li { display: flex; gap: 10px; margin-bottom: 11px; font-size: 15px; }
.pc-col.pros li::before { content: "✔"; color: var(--green); font-weight: 900; }
.pc-col.cons li::before { content: "✘"; color: var(--red); font-weight: 900; }

/* ---------- Loyalty table ---------- */
.tier-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); max-width: 520px; }
.tier-table th, .tier-table td { padding: 11px 18px; border-bottom: 1px solid var(--border); text-align: left; font-size: 14.5px; }
.tier-table thead th { background: var(--navy); color: var(--white); text-transform: uppercase; font-size: 12.5px; letter-spacing: 1px; }
.tier-table tr:last-child td { border-bottom: none; }

/* ---------- FAQ ---------- */
.faq-item { background: var(--white); border-radius: 10px; box-shadow: var(--shadow); margin-bottom: 12px; overflow: hidden; }
.faq-item summary {
  cursor: pointer;
  padding: 17px 20px;
  font-weight: 800;
  color: var(--navy);
  font-size: 15.5px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--gold-dark); font-weight: 900; }
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body { padding: 0 20px 17px; font-size: 15px; }

/* ---------- Verdict box ---------- */
.verdict-box {
  background: var(--navy);
  color: var(--gray-light);
  border-radius: var(--radius);
  padding: 34px 34px 38px;
}
.verdict-box h2 { color: var(--white); }
.verdict-box .btn-cta { margin-top: 10px; }
.verdict-score { display: flex; align-items: baseline; gap: 12px; margin: 8px 0 18px; }
.verdict-score .score { font-size: 46px; font-weight: 900; color: var(--gold); }
.verdict-score .stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }

/* ---------- Legal pages ---------- */
.legal-hero {
  background: var(--navy);
  padding: 56px 0 48px;
  border-bottom: 4px solid var(--gold);
}
.legal-hero h1 { color: var(--white); font-size: clamp(28px, 4vw, 42px); font-weight: 900; text-transform: uppercase; }
.legal-hero p { color: var(--gray-light); margin-top: 8px; font-size: 14px; }
.legal-content { max-width: 860px; }
.legal-content .section { margin-bottom: 34px; }
.legal-content h2 { font-size: 23px; }
.legal-content h3 { font-size: 18px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: var(--gray-light); margin-top: 40px; }
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding: 48px 0 34px;
}
.footer-main h4 { color: var(--white); font-size: 14px; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 14px; }
.footer-main p { font-size: 13.5px; line-height: 1.7; }
.footer-main ul { list-style: none; }
.footer-main li { margin-bottom: 9px; }
.footer-main a { color: var(--gray-light); text-decoration: none; font-size: 14px; }
.footer-main a:hover { color: var(--gold); }
.footer-badges { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.badge-pill {
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}
.badge-pill.gold { border-color: var(--gold); color: var(--gold); }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 24px 0;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--gray);
}
.footer-disclaimer p { margin-bottom: 10px; }
.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0;
  font-size: 12.5px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}
.footer-copy nav { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-copy a { color: var(--gray-light); text-decoration: none; }
.footer-copy a:hover { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .pros-cons { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .rating-top { flex-direction: column; text-align: center; }
  .main-nav { display: none; }
  .score-row .label { width: 118px; font-size: 12px; }
  .facts-table { display: block; overflow-x: auto; }
  .rating-top, .rating-bottom { padding-left: 18px; padding-right: 18px; }
}

@media (max-width: 480px) {
  .verdict-box { padding: 26px 20px 30px; }
  .pc-col { padding: 18px 18px; }
}
