/* ============================================================
   Online Casino Top 10: single stylesheet, no frameworks
   White page, black type, amber CTAs. System fonts only.
   ============================================================ */

:root {
  --bg:      #ffffff;
  --ink:     #000000;
  --muted:   #565656;
  --faint:   #8a8a8a;
  --line:    #000000;
  --hair:    #dcdcdc;
  --card:    #060606;
  --amber:   #f6a524;
  --amber-d: #e0921a;
  --deep:    #0b062b;
  --green:   #16a34a;
  --wrap:    1140px;
  --sans:    -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

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

h1, h2, h3, h4 {
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.75rem; margin-top: 2em; }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1.1rem; }
a { color: var(--green); text-decoration: underline; }
a:hover { color: #0f7a37; }
img { max-width: 100%; }
hr { border: 0; border-top: 1px solid var(--hair); margin: 40px 0; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
main.wrap { padding-top: 34px; }
.section { padding: 8px 0 24px; }
.lead { font-size: 1.05rem; }
.muted { color: var(--muted); }
.small { font-size: .85rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  background: var(--amber);
  color: var(--deep);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: underline;
  padding: 13px 26px;
  border: 0;
  border-radius: 24px;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { background: var(--amber-d); color: var(--deep); }
.btn-sm { font-size: .85rem; padding: 9px 18px; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 24px;
  text-transform: none;
}
.btn-outline:hover { background: var(--ink); color: #fff; }

/* ---------- header ---------- */
.site-header { background: #fff; border-bottom: 1px solid var(--hair); }
.site-header .wrap { display: flex; align-items: center; gap: 28px; min-height: 78px; }

.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--ink); }
.logo .spade { font-size: 1.4rem; line-height: 1; }
.logo .word {
  font-weight: 800;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: -.02em;
  border-bottom: 3px dotted var(--ink);
  padding-bottom: 3px;
}
.logo:hover { color: var(--ink); }

.nav { display: flex; gap: 26px; margin-left: auto; align-items: center; }
.nav a { color: var(--ink); text-decoration: none; font-size: .95rem; }
.nav a:hover, .nav a.active { text-decoration: underline; }

.nav-toggle {
  display: none; margin-left: auto; background: #f2f2f2; border: 1px solid var(--hair);
  padding: 12px 15px; font-size: 1.1rem; line-height: 1; cursor: pointer;
}

/* ---------- byline ---------- */
.byline { display: flex; align-items: center; gap: 14px; margin: 0 0 22px; }
.avatar {
  width: 56px; height: 56px; border-radius: 50%; flex: none;
  background: #ececec; border: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--muted); font-size: .95rem;
}
.byline div { font-size: .95rem; line-height: 1.5; }
.byline b { font-weight: 700; }

/* ---------- collapsible intro ---------- */
.intro { position: relative; }
.intro .clip { max-height: 96px; overflow: hidden; }
.intro .clip::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 34px; height: 60px;
  background: linear-gradient(rgba(255,255,255,0), #fff);
}
.intro.open .clip { max-height: none; }
.intro.open .clip::after { display: none; }
.show-more {
  background: none; border: 0; padding: 0; font: inherit;
  color: var(--green); text-decoration: underline; cursor: pointer;
}

/* ---------- offer bars (the ranking list) ---------- */
.offers { margin: 26px 0 8px; }
.offer {
  position: relative;
  background: var(--card);
  border-radius: 4px;
  padding: 18px 22px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.offer .rank {
  position: absolute; top: 6px; left: 6px;
  width: 22px; height: 22px;
  background: #fff; color: #000;
  font-size: .72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
}
.offer .tile {
  width: 160px; height: 78px; flex: none;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.05rem; text-align: center;
  color: #fff; letter-spacing: -.01em; padding: 6px;
}
.offer .deal { flex: 1; color: #fff; font-weight: 700; font-size: 1.05rem; line-height: 1.35; }
.offer .deal span { display: block; font-weight: 400; font-size: .82rem; color: #b5b5b5; margin-top: 4px; }
.offer .deal .review-link {
  display: inline-block; margin-top: 7px;
  font-size: .8rem; font-weight: 400;
  color: #cfcfcf; text-decoration: underline;
}
.offer .deal .review-link:hover { color: #fff; }

.offer .score { text-align: center; color: #fff; flex: none; width: 110px; }
.offer .score b { font-size: 1.15rem; font-weight: 800; }
.offer .score b i { font-style: normal; font-size: .75rem; color: #b5b5b5; }
.offer .score .star { color: var(--amber); }
.offer .score span { display: block; font-size: .68rem; color: #9a9a9a; text-transform: uppercase; letter-spacing: .04em; }

.offer .tile.has-logo { padding: 0; overflow: hidden; background: #140a06; }
.offer .tile.has-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }

.review-logo {
  display: block; width: 100%; max-width: 480px; height: auto;
  border-radius: 4px; margin: 4px 0 22px;
}

/* logo tile colours */
.t1 { background: #5b57e0; }
.t2 { background: #c53bb0; }
.t3 { background: #1f7a3f; }
.t4 { background: #b02a2a; }
.t5 { background: #1f4f9c; }
.t6 { background: #7a3fb5; }
.t7 { background: #16603f; }
.t8 { background: #b5761f; }
.t9 { background: #8c2f5a; }
.t10 { background: #245c8c; }

/* ---------- hard-edged tables ---------- */
.table-wrap { overflow-x: auto; margin: 22px 0; }
table { width: 100%; border-collapse: collapse; min-width: 720px; font-size: .95rem; }
th, td { border: 1px solid var(--line); padding: 12px 14px; text-align: left; vertical-align: top; }
thead th { background: #000; color: #fff; font-weight: 800; }
tbody th { background: #f4f4f4; font-weight: 700; width: 190px; }
td strong { font-weight: 700; }

/* ---------- lists ---------- */
.check, .dot { list-style: none; padding: 0; margin: 0 0 1.1rem; }
.check li, .dot li { position: relative; padding-left: 26px; margin-bottom: 9px; }
.check li::before { content: "✔"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.check.warn li::before { content: "✖"; color: #c0392b; }
.dot li::before { content: "▪"; position: absolute; left: 6px; }

/* ---------- boxes ---------- */
.box { border: 1px solid var(--line); border-radius: 4px; padding: 20px 22px; margin-bottom: 18px; }
.box h3 { margin-top: 0; }
.box-amber { background: #fff8ec; border-color: var(--amber); }
.box-dark { background: var(--card); color: #fff; border-color: var(--card); }
.box-dark h3 { color: #fff; }

.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* ---------- score bars ---------- */
.scorecard { display: grid; grid-template-columns: 220px 1fr; gap: 26px; align-items: start; margin: 24px 0; }
.score-badge { background: var(--card); color: #fff; border-radius: 4px; padding: 24px; text-align: center; }
.score-badge b { display: block; font-size: 3.2rem; font-weight: 800; line-height: 1; }
.score-badge span { display: block; font-size: .8rem; color: #b5b5b5; margin-top: 6px; }
.score-badge .label {
  display: block; margin-top: 14px; background: var(--amber); color: var(--deep);
  font-size: .72rem; font-weight: 800; text-transform: uppercase; padding: 5px 10px; border-radius: 2px;
}
.bar-row { margin-bottom: 14px; }
.bar-row .bar-label { display: flex; justify-content: space-between; font-size: .92rem; font-weight: 700; margin-bottom: 5px; }
.bar { background: #ececec; height: 10px; border-radius: 2px; overflow: hidden; }
.bar i { display: block; height: 100%; background: var(--ink); }

/* ---------- blog ---------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 24px 0; }
.post { border: 1px solid var(--line); border-radius: 4px; padding: 20px; display: flex; flex-direction: column; }
.post .kicker { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 8px; }
.post h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.post h3 a { color: var(--ink); text-decoration: none; }
.post h3 a:hover { text-decoration: underline; }
.post p { font-size: .9rem; color: var(--muted); }
.post .meta { margin-top: auto; padding-top: 10px; font-size: .78rem; color: var(--faint); }

.article { max-width: 760px; }
.article blockquote {
  margin: 1.5rem 0; padding: 14px 18px;
  border-left: 5px solid var(--amber); background: #fff8ec; font-weight: 600;
}

/* ---------- faq ---------- */
.faq details { border: 1px solid var(--line); border-radius: 4px; padding: 14px 18px; margin-bottom: 10px; }
.faq summary { font-weight: 800; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; font-weight: 800; }
.faq details[open] summary::after { content: "\2212"; }
.faq p { margin: 12px 0 0; color: var(--muted); font-size: .95rem; }

/* ---------- footer ---------- */
.site-footer { background: #fff; border-top: 1px solid var(--hair); margin-top: 56px; padding: 34px 0 44px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-bottom: 20px; font-size: .92rem; }
.footer-nav a { color: var(--ink); text-decoration: none; }
.footer-nav a:hover { text-decoration: underline; }
.site-footer .disclaimer { font-size: .78rem; color: var(--faint); line-height: 1.65; }
.site-footer .copyright { font-size: .85rem; margin-top: 16px; font-weight: 700; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  .cols-2, .cols-3, .posts, .scorecard { grid-template-columns: 1fr; }
  .offer { flex-wrap: wrap; padding: 26px 16px 16px; gap: 14px; }
  .offer .tile { width: 100%; height: 66px; }
  .offer .tile.has-logo { height: 104px; }
  .offer .deal { flex: 1 1 100%; font-size: 1rem; }
  .offer .score { width: auto; text-align: left; }
  .offer .btn { flex: 1 1 100%; text-align: center; }
  .nav {
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    width: 100%; order: 3; margin: 0 0 12px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; border-top: 1px solid var(--hair); }
  .nav-toggle { display: block; }
  .site-header .wrap { flex-wrap: wrap; }
}
