/* ==========================================================================
   cloverbonus.com — main.css
   LIGHT clover theme · en-IE · static HTML, no framework
   Fonts: Bricolage Grotesque (display) · Inter (text) · IBM Plex Mono (T&C maths)
   Breakpoints: 840px (nav collapses / cards stack) · 560px (small phones)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100vh; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
img, picture, svg, video { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
ul[class], ol[class] { list-style: none; }
a { color: inherit; }
table { border-collapse: collapse; border-spacing: 0; }
summary { cursor: pointer; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* --------------------------------------------------------------------------
   2. Tokens
   -------------------------------------------------------------------------- */
:root {
  --bg: #f7faf5;
  --card: #ffffff;
  --ink: #14251b;
  --ink-soft: #47604f;
  --clover: #17753a;
  --clover-2: #1f9a4d;
  --clover-deep: #0d4f26;
  --amber: #e8a317;
  --amber-2: #f5bd45;
  --line: rgba(23, 117, 58, .16);
  --danger: #cc4433;
  --radius: 14px;
  --radius-s: 8px;
  --max: 1180px;
  --shadow: 0 8px 26px rgba(13, 79, 38, .10);
  --font-display: "Bricolage Grotesque", "Archivo", sans-serif;
  --font-text: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "Consolas", monospace;
}

/* --------------------------------------------------------------------------
   3. Base typography
   -------------------------------------------------------------------------- */
body {
  font-family: var(--font-text);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--clover-deep);
  line-height: 1.15;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); font-weight: 800; }
h2 { font-size: clamp(1.45rem, 3vw, 2rem); font-weight: 700; margin: 2.4rem 0 .9rem; }
h3 { font-size: 1.18rem; font-weight: 700; margin: 1.4rem 0 .5rem; }
p  { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
main p, main li { color: var(--ink); }
.muted, .small { color: var(--ink-soft); }
.small { font-size: .85rem; }
strong { font-weight: 700; }
code, .mono { font-family: var(--font-mono); font-size: .92em; }
main a { color: var(--clover); text-decoration-color: rgba(23, 117, 58, .35); text-underline-offset: 2px; }
main a:hover { color: var(--clover-deep); }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.section { padding: 2.2rem 0; }
.section-alt {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
main > .wrap > h2[id], main h2[id] { scroll-margin-top: 90px; }

/* --------------------------------------------------------------------------
   4. Buttons (amber primary · green ghost secondary)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 26px;
  border-radius: var(--radius-s);
  text-decoration: none;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--amber-2), var(--amber));
  color: #3a2a05;
  box-shadow: 0 4px 14px rgba(232, 163, 23, .35);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #f8c85e, var(--amber-2));
  box-shadow: 0 6px 18px rgba(232, 163, 23, .45);
  color: #3a2a05;
}
.btn-ghost {
  background: transparent;
  color: var(--clover);
  border-color: var(--clover);
}
.btn-ghost:hover { background: rgba(23, 117, 58, .07); color: var(--clover-deep); }

/* --------------------------------------------------------------------------
   5. Rating pills / status chips
   -------------------------------------------------------------------------- */
.pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(23, 117, 58, .06);
  color: var(--clover);
  white-space: nowrap;
}
.pill-pending { background: rgba(232, 163, 23, .12); border-color: rgba(232, 163, 23, .4); color: #8a6410; }
.pill-good    { background: rgba(31, 154, 77, .12);  border-color: rgba(31, 154, 77, .4);  color: var(--clover-deep); }
.pill-warn    { background: rgba(204, 68, 51, .10);  border-color: rgba(204, 68, 51, .35); color: var(--danger); }

/* --------------------------------------------------------------------------
   6. Sticky nav (checkbox-hack hamburger, no JS)
   -------------------------------------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 64px;
  position: relative;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.28rem;
  letter-spacing: -.02em;
  color: var(--clover-deep);
  margin-right: auto;
}
.brand .brand-mark { width: 28px; height: 28px; flex: none; }
.brand .brand-bonus { color: var(--amber); }
.nav-check { position: absolute; opacity: 0; pointer-events: none; }
.nav-toggle { display: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 9px 13px;
  border-radius: var(--radius-s);
  font-size: .93rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.nav-links a:hover { background: rgba(23, 117, 58, .07); color: var(--clover-deep); }
.nav-links a.active { background: rgba(23, 117, 58, .1); color: var(--clover-deep); }
.nav-links a.nav-rg { color: var(--clover); font-weight: 700; }

/* --------------------------------------------------------------------------
   7. Hero (subtle clover watermark)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3.4rem 0 2.6rem;
  background:
    radial-gradient(760px 340px at 85% -60px, rgba(31, 154, 77, .09), transparent 70%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='%2317753a' fill-opacity='0.045'%3E%3Ccircle cx='52' cy='52' r='11'/%3E%3Ccircle cx='68' cy='52' r='11'/%3E%3Ccircle cx='52' cy='68' r='11'/%3E%3Ccircle cx='68' cy='68' r='11'/%3E%3C/g%3E%3C/svg%3E"),
    var(--bg);
}
.hero-kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clover);
  background: rgba(23, 117, 58, .08);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 1.1rem;
}
.hero h1 { max-width: 780px; margin-bottom: 1rem; }
.hero-lead {
  max-width: 700px;
  font-size: 1.09rem;
  color: var(--ink-soft);
  margin-bottom: 1.6rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 1.2rem; }
.hero-meta { font-size: .84rem; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   8. Top-3 strip
   -------------------------------------------------------------------------- */
.top3-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 1.4rem 0 2rem;
}
.top3-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.top3-rank {
  position: absolute;
  top: -11px;
  left: 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .82rem;
  color: #fff;
  background: linear-gradient(180deg, var(--clover-2), var(--clover));
  border-radius: 999px;
  padding: 3px 12px;
  box-shadow: 0 3px 8px rgba(13, 79, 38, .25);
}
.top3-card:first-child .top3-rank { background: linear-gradient(180deg, var(--amber-2), var(--amber)); color: #3a2a05; }
.top3-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--clover-deep);
  margin-top: 6px;
}
.top3-offer { font-size: .88rem; color: var(--ink-soft); flex: 1; }
.top3-card .btn { width: 100%; padding: 12px 16px; font-size: .92rem; }

/* --------------------------------------------------------------------------
   9. Full toplist table
   -------------------------------------------------------------------------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.2rem 0 .5rem; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--card); }
.toplist-table { width: 100%; min-width: 680px; font-size: .93rem; }
.toplist-table th {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  text-align: left;
  color: #fff;
  background: linear-gradient(180deg, var(--clover-2), var(--clover));
  padding: 12px 14px;
  white-space: nowrap;
}
.toplist-table td { padding: 13px 14px; border-top: 1px solid var(--line); vertical-align: middle; }
.toplist-table tbody tr:nth-child(even) { background: rgba(23, 117, 58, .03); }
.toplist-table tbody tr:hover { background: rgba(232, 163, 23, .06); }
.toplist-table .num { font-family: var(--font-mono); font-weight: 700; color: var(--clover); }
.toplist-table .t-name { font-weight: 700; color: var(--clover-deep); white-space: nowrap; }
.toplist-table .t-offer { font-family: var(--font-mono); font-size: .84rem; color: var(--ink-soft); }
.mini-cta {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--clover);
  text-decoration: none;
  border: 1px solid var(--clover);
  border-radius: 999px;
  padding: 4px 12px;
  white-space: nowrap;
  transition: background .15s ease;
}
.mini-cta:hover { background: rgba(23, 117, 58, .08); }

/* --------------------------------------------------------------------------
   10. Review card (light restyle of the emeraldscout structure)
       article.review-card > .rc-rank + a.rc-phone + .rc-body
   -------------------------------------------------------------------------- */
.rc-list { display: flex; flex-direction: column; gap: 26px; margin: 1.6rem 0 2.2rem; }

.review-card {
  position: relative;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  scroll-margin-top: 90px;
}
.review-card.featured { border-color: rgba(232, 163, 23, .55); box-shadow: 0 10px 30px rgba(232, 163, 23, .16), var(--shadow); }

.rc-rank {
  position: absolute;
  top: -13px;
  left: 20px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .06em;
  color: #fff;
  background: linear-gradient(180deg, var(--clover-2), var(--clover));
  border-radius: 999px;
  padding: 4px 14px;
  box-shadow: 0 3px 8px rgba(13, 79, 38, .25);
}
.review-card.featured .rc-rank { background: linear-gradient(180deg, var(--amber-2), var(--amber)); color: #3a2a05; }

/* phone mockup with data-letter fallback */
.rc-phone { display: block; text-decoration: none; text-align: center; }
.rc-phone-screen {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  border: 6px solid var(--clover-deep);
  background: linear-gradient(160deg, #eaf5ec, #d7ecdc);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.rc-phone-screen::before {
  content: attr(data-letter);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 4.4rem;
  color: var(--clover);
  opacity: .55;
}
.rc-phone-screen img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .3s ease; }
.rc-phone-screen.img-loaded img { opacity: 1; }
.rc-phone-screen.img-loaded::before { content: none; }
.rc-phone-cta {
  display: inline-block;
  margin-top: 12px;
  font-size: .86rem;
  font-weight: 700;
  color: var(--clover);
}
.rc-phone:hover .rc-phone-cta { color: var(--clover-deep); text-decoration: underline; }

/* body */
.rc-body { display: flex; flex-direction: column; min-width: 0; }
.rc-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: .7rem;
}
.rc-name-wrap { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.rc-name { font-family: var(--font-display); font-weight: 800; font-size: 1.45rem; color: var(--clover-deep); }
.rc-flag {
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #8a6410;
  background: rgba(232, 163, 23, .13);
  border: 1px solid rgba(232, 163, 23, .4);
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
}
.rc-rating { text-align: right; line-height: 1.05; flex: none; }
.rc-rating-val { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: var(--clover); }
.rc-rating-max { font-family: var(--font-mono); font-size: .8rem; color: var(--ink-soft); margin-left: 3px; }

.rc-intro { color: var(--ink); margin-bottom: .8rem; }
.rc-mobile-meta { display: none; font-family: var(--font-mono); font-size: .78rem; color: var(--ink-soft); margin-bottom: .8rem; }

.rc-usps { list-style: none; margin: 0 0 1.1rem; display: flex; flex-direction: column; gap: 7px; }
.rc-usps li { position: relative; padding-left: 26px; font-size: .93rem; }
.rc-usps li::before { content: "✓"; position: absolute; left: 0; top: 0; font-weight: 700; color: var(--clover-2); }
.rc-usps li.pending { color: var(--ink-soft); }
.rc-usps li.pending::before { content: "…"; color: var(--amber); }

.rc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.rc-bonus-label { font-family: var(--font-mono); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); }
.rc-bonus-val { font-family: var(--font-display); font-weight: 800; font-size: 1.08rem; color: var(--clover-deep); }
.rc-cta-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.rc-cta-primary {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .96rem;
  color: #3a2a05;
  background: linear-gradient(180deg, var(--amber-2), var(--amber));
  border-radius: var(--radius-s);
  padding: 13px 22px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(232, 163, 23, .35);
  transition: box-shadow .15s ease, transform .15s ease;
}
.rc-cta-primary:hover { box-shadow: 0 6px 18px rgba(232, 163, 23, .45); }
.rc-cta-primary:active { transform: translateY(1px); }
.rc-cta-secondary { font-size: .9rem; font-weight: 700; color: var(--clover); text-decoration: underline; text-underline-offset: 3px; }
.rc-cta-secondary:hover { color: var(--clover-deep); }

/* --------------------------------------------------------------------------
   11. Educational blocks
   -------------------------------------------------------------------------- */
.edu-block { max-width: 780px; }
.edu-block h3 { color: var(--clover); }
.edu-block ul { margin: 0 0 1rem 1.2rem; }
.edu-block li { margin-bottom: .4rem; }
.edu-callout {
  background: rgba(23, 117, 58, .05);
  border-left: 4px solid var(--clover-2);
  border-radius: 0 var(--radius-s) var(--radius-s) 0;
  padding: 16px 20px;
  margin: 1.2rem 0;
}
.edu-warn {
  background: rgba(204, 68, 51, .06);
  border-left: 4px solid var(--danger);
  border-radius: 0 var(--radius-s) var(--radius-s) 0;
  padding: 16px 20px;
  margin: 1.2rem 0;
}
.wager-maths {
  font-family: var(--font-mono);
  font-size: .88rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 16px 20px;
  margin: 1.2rem 0;
  overflow-x: auto;
}

/* --------------------------------------------------------------------------
   12. Glossary (definition list)
   -------------------------------------------------------------------------- */
.glossary {
  max-width: 780px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 28px;
  margin: 1.4rem 0;
}
.glossary dt {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--clover);
  margin-top: 1.1rem;
}
.glossary dt:first-child { margin-top: 0; }
.glossary dd { margin: .25rem 0 0; color: var(--ink-soft); font-size: .95rem; }

/* --------------------------------------------------------------------------
   13. FAQ accordion (details/summary)
   -------------------------------------------------------------------------- */
.faq { max-width: 780px; margin: 1.2rem 0 2rem; }
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--clover-deep);
  padding: 16px 20px;
  transition: background .15s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.3rem; font-weight: 400; color: var(--clover); flex: none; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { background: rgba(23, 117, 58, .05); }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq details > p, .faq details > div { padding: 14px 20px 18px; color: var(--ink-soft); font-size: .95rem; }

/* --------------------------------------------------------------------------
   14. Responsible-gambling box + compliance note (discreet, LOW on page)
   -------------------------------------------------------------------------- */
.rg-box {
  max-width: 780px;
  background: rgba(23, 117, 58, .05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 2rem 0 1rem;
  font-size: .9rem;
  color: var(--ink-soft);
}
.rg-box strong { color: var(--clover-deep); }
.rg-box .rg-phone { font-family: var(--font-mono); font-weight: 700; color: var(--clover); white-space: nowrap; }
.compliance-note { max-width: 780px; font-size: .82rem; color: var(--ink-soft); margin: 1rem 0 2rem; }

.badge-18 {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--danger);
  color: var(--danger);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .78rem;
  flex: none;
}

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  margin-top: 3rem;
  background: var(--clover-deep);
  color: #d9eadf;
  padding: 2.6rem 0 2rem;
  font-size: .88rem;
}
.site-footer a { color: #bfe3cb; }
.site-footer a:hover { color: #fff; }
.footer-about { max-width: 640px; margin-bottom: 1.4rem; color: #bfe3cb; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-bottom: 1.4rem; list-style: none; }
.footer-links a { font-weight: 600; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-legal { border-top: 1px solid rgba(255, 255, 255, .14); padding-top: 1.3rem; color: #a9d3b7; }
.footer-legal p { margin-bottom: .55rem; font-size: .82rem; }
.footer-legal .rg-line { display: flex; align-items: center; gap: 12px; }
.footer-legal .badge-18 { border-color: #f0b8ae; color: #f0b8ae; }
.footer-legal .helpline { font-family: var(--font-mono); font-weight: 700; color: #fff; white-space: nowrap; }

/* --------------------------------------------------------------------------
   16. Responsive — 840px
   -------------------------------------------------------------------------- */
@media (max-width: 840px) {
  /* nav: hamburger via checkbox hack */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: var(--radius-s);
    cursor: pointer;
  }
  .nav-toggle:hover { background: rgba(23, 117, 58, .07); }
  .nav-toggle span {
    display: block;
    height: 2.5px;
    width: 100%;
    border-radius: 2px;
    background: var(--clover-deep);
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav-check:checked ~ .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-check:checked ~ .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-check:checked ~ .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 8px 10px 14px;
  }
  .nav-check:checked ~ .nav-links { display: flex; }
  .nav-links a { padding: 13px 14px; font-size: 1rem; }

  /* cards stack */
  .review-card { grid-template-columns: 1fr; gap: 18px; padding: 22px 20px; }
  .rc-phone { max-width: 190px; margin: 6px auto 0; }
  .rc-usps { display: none; }
  .rc-mobile-meta { display: block; }
  .top3-strip { grid-template-columns: 1fr; gap: 20px; }
  .hero { padding: 2.6rem 0 2rem; }
}

/* --------------------------------------------------------------------------
   17. Responsive — 560px
   -------------------------------------------------------------------------- */
@media (max-width: 560px) {
  .wrap { padding: 0 16px; }
  body { font-size: .97rem; }
  .hero-ctas .btn { width: 100%; }
  .rc-footer { flex-direction: column; align-items: stretch; text-align: center; }
  .rc-cta-row { flex-direction: column; align-items: stretch; }
  .rc-cta-primary { width: 100%; }
  .rc-head { flex-direction: column; }
  .rc-rating { text-align: left; }
  .glossary { padding: 20px 18px; }
  .footer-links { flex-direction: column; gap: 10px; }
  .toplist-table { font-size: .88rem; }
}

/* Fix 28-07: as capturas tinham opacity:0 a espera de uma classe .img-loaded que
   o JS de lazy-load ja nao poe (as imagens passaram a ter src real). Quem tem
   src mostra-se; a letra de fallback so aparece quando nao ha imagem. */
.rc-phone-screen img[src]{opacity:1}
.rc-phone-screen:has(img[src])::after{display:none}
