/* =========================================================
   Casino non AAMS — Medieval / Heraldic theme
   Palette: pergamena, pietra del castello, oro araldico,
            rosso vino, verde bosco
   ========================================================= */

:root {
  --parch: #f2e6cc;
  --parch-light: #fbf4e3;
  --parch-dark: #e4d3ad;
  --ink: #2a1e14;
  --ink-soft: #5b4834;
  --stone: #2e2a26;
  --stone-2: #3d3731;
  --stone-3: #544b42;
  --gold: #c39a3e;
  --gold-light: #e6c979;
  --gold-dark: #8e6c26;
  --wine: #7a1e22;
  --wine-light: #9e2a2f;
  --wine-dark: #4f1215;
  --green: #2f5a3a;
  --line: #cfb383;
  --line-soft: #e6d6b2;

  --font-head: "Cinzel", Georgia, "Times New Roman", serif;
  --font-body: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", "Times New Roman", serif;

  --header-h: 66px;
  --radius-s: 4px;
  --radius-m: 8px;
  --radius-l: 12px;
  --shadow: 0 2px 0 var(--parch-dark), 0 8px 22px rgba(60, 40, 15, .09);
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--parch);
  background-image:
    radial-gradient(ellipse at 50% 0%, var(--parch-light) 0%, rgba(251, 244, 227, 0) 60%),
    linear-gradient(180deg, var(--parch) 0%, #efe0c1 100%);
  overflow-x: clip;
  overflow-wrap: break-word;
}

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

a { color: var(--wine); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--wine-light); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--stone);
  font-weight: 700;
  border-radius: var(--radius-s);
  text-decoration: none;
}
.skip-link:focus { top: 10px; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow { max-width: 920px; }

/* ---------- Header (sticky) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, var(--stone-2) 0%, var(--stone) 100%);
  box-shadow: inset 0 -2px 0 var(--gold-dark);
  transition: box-shadow .2s ease;
}

/* crenellated castle-wall edge */
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--stone) 50%, transparent 50%) 0 0 / 28px 8px repeat-x;
  pointer-events: none;
}

.site-header.is-scrolled {
  box-shadow: inset 0 -2px 0 var(--gold-dark), 0 10px 24px rgba(20, 14, 8, .35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header-h);
}

.logo { display: block; flex: 0 0 auto; }
.logo img { width: auto; height: 40px; }

.main-nav { flex: 1 1 auto; display: flex; justify-content: center; }

.main-nav ul {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  display: block;
  padding: 8px 13px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--gold-light);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius-s);
  white-space: nowrap;
  transition: color .15s ease, border-color .15s ease, background-color .15s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #fff;
  border-color: rgba(195, 154, 62, .55);
  background: rgba(195, 154, 62, .1);
}

.btn-bonus {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 10px 18px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.2;
  color: #fff;
  background: linear-gradient(180deg, var(--wine-light) 0%, var(--wine) 100%);
  border: 1px solid var(--gold);
  border-radius: var(--radius-m);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 0 var(--gold-dark), inset 0 1px 0 rgba(255, 255, 255, .15);
}
.btn-bonus:hover { color: #fff; filter: brightness(1.1); }
.btn-bonus svg { width: 18px; height: 18px; flex: 0 0 18px; }

/* ---------- Hero ---------- */
.hero { padding: 38px 0 18px; }

.hero h1 {
  margin: 0 0 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.45rem, 1rem + 2.1vw, 2.45rem);
  line-height: 1.2;
  letter-spacing: .005em;
  color: var(--wine);
}

.hero-intro {
  max-width: 900px;
  margin: 0 0 16px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.author-box {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  padding: 9px 16px 9px 10px;
  background: rgba(255, 252, 243, .6);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.author-box img {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  background: var(--parch-dark);
}

.author-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 10px;
  font-size: 14px;
  line-height: 1.35;
}

.author-name { font-weight: 700; color: var(--ink); }

.badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 9px 2px 7px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
}
.badge-verified svg { width: 12px; height: 12px; }

.author-date { width: 100%; color: var(--ink-soft); font-size: 13px; }

/* ---------- Listing ---------- */
.listing { padding: 18px 0 34px; }

.listing-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.3rem, 1rem + 1.3vw, 1.95rem);
  line-height: 1.25;
  text-align: center;
  color: var(--stone);
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.listing-title::before,
.listing-title::after {
  content: "";
  flex: 1 1 60px;
  max-width: 140px;
  height: 2px;
  background: linear-gradient(90deg, rgba(195, 154, 62, 0), var(--gold));
}
.listing-title::after { background: linear-gradient(90deg, var(--gold), rgba(195, 154, 62, 0)); }

.casino-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.casino-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(200px, 1.15fr) minmax(0, 1.3fr) minmax(0, 1.1fr) 176px;
  grid-template-areas: "rank brand bonus features cta";
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background: linear-gradient(180deg, #fffaf0 0%, #f6ebd2 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
}

.casino-card--top {
  border: 2px solid var(--gold);
  box-shadow: 0 2px 0 var(--gold-dark), 0 12px 28px rgba(122, 30, 34, .14);
}

.casino-card--top::before {
  content: "Scelta del Re";
  position: absolute;
  top: -12px;
  left: 22px;
  padding: 2px 12px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--stone);
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius-s);
}

/* heraldic shield rank */
.rank {
  grid-area: rank;
  display: grid;
  place-items: center;
  width: 48px;
  height: 56px;
  padding-bottom: 9px;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--stone);
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 50% 100%, 0 60%);
}

.brand {
  grid-area: brand;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: grid;
  place-items: center;
  flex: 0 0 100px;
  width: 100px;
  height: 58px;
  padding: 6px 8px;
  background: var(--stone);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius-m);
  overflow: hidden;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-info { min-width: 0; }

.brand-name {
  display: block;
  margin: 0 0 4px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  line-height: 1;
  color: var(--ink-soft);
}

.stars {
  position: relative;
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 1px;
  color: #d8c69c;
  white-space: nowrap;
}
.stars::before { content: "★★★★★"; }
.stars::after {
  content: "★★★★★";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--w, 100%);
  overflow: hidden;
  color: var(--gold-dark);
}
.r5 { --w: 100%; }
.r45 { --w: 90%; }
.r4 { --w: 80%; }
.r35 { --w: 70%; }

.bonus-block {
  grid-area: bonus;
  padding: 10px 14px;
  background: rgba(122, 30, 34, .06);
  border-left: 3px solid var(--wine);
  border-radius: 0 var(--radius-m) var(--radius-m) 0;
}

.bonus-label {
  display: block;
  margin-bottom: 2px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--wine);
}

.bonus-text {
  margin: 0;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
}

.bonus-terms {
  margin: 4px 0 0;
  font-size: 12.5px;
  line-height: 1.35;
  color: var(--ink-soft);
}

.features {
  grid-area: features;
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14.5px;
  line-height: 1.3;
}

.features li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.features svg { width: 18px; height: 18px; flex: 0 0 18px; }

.cta {
  grid-area: cta;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.btn-play {
  display: block;
  padding: 13px 16px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.2;
  color: #fff;
  background: linear-gradient(180deg, var(--wine-light) 0%, var(--wine) 100%);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius-m);
  text-decoration: none;
  box-shadow: 0 3px 0 var(--wine-dark), inset 0 1px 0 rgba(255, 255, 255, .15);
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn-play:hover { color: #fff; filter: brightness(1.08); }
.btn-play:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--wine-dark); }

.cta-note { font-size: 11.5px; line-height: 1.3; color: var(--ink-soft); }

/* ---------- Article content ---------- */
.content { padding: 6px 0 20px; }

.content h2 {
  position: relative;
  margin: 2.3em 0 .75em;
  padding-bottom: .5em;
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 1rem + 1.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--stone);
  border-bottom: 2px solid var(--gold);
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 72px;
  height: 4px;
  background: var(--wine);
}

.content > h2:first-child { margin-top: .6em; }

.content h3 {
  margin: 1.7em 0 .5em;
  font-family: var(--font-head);
  font-size: clamp(1.08rem, 1rem + .45vw, 1.3rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--wine);
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.content p { margin: 0 0 1em; }

/* "Tendenze" paragraphs: bold lead becomes a small heading */
.content p > strong:first-child {
  display: block;
  margin-bottom: .1em;
  font-family: var(--font-head);
  font-size: 1.04em;
  color: var(--wine);
}

/* unordered lists: heraldic lozenge bullets */
.content ul {
  margin: 0 0 1.2em;
  padding: 0;
  list-style: none;
}
.content ul > li {
  position: relative;
  margin: 0 0 .5em;
  padding-left: 1.6em;
}
.content ul > li::before {
  content: "";
  position: absolute;
  left: .25em;
  top: .62em;
  width: .5em;
  height: .5em;
  background: var(--gold);
  border: 1px solid var(--gold-dark);
  transform: rotate(45deg);
}

/* ordered lists (real sequences): gold seals */
.content ol {
  margin: 0 0 1.3em;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.content ol > li {
  position: relative;
  min-height: 1.9em;
  margin: 0 0 .7em;
  padding-left: 2.5em;
  counter-increment: step;
}
.content ol > li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: .1em;
  display: grid;
  place-items: center;
  width: 1.75em;
  height: 1.75em;
  font-family: var(--font-head);
  font-size: .85em;
  font-weight: 700;
  line-height: 1;
  color: var(--stone);
  background: var(--gold-light);
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
}

/* ---------- Tables (scroll inside own wrapper) ---------- */
.table-wrap {
  width: 100%;
  max-width: 100%;
  margin: 1.2em 0 1.7em;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: 0 4px 16px rgba(60, 40, 15, .07);
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--parch-dark);
}
.table-wrap::-webkit-scrollbar { height: 8px; }
.table-wrap::-webkit-scrollbar-track { background: var(--parch-dark); }
.table-wrap::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 8px; }

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 15px;
  line-height: 1.45;
}

.table-wrap td {
  padding: 11px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line-soft);
}
.table-wrap td + td { border-left: 1px solid #efe3c7; }
.table-wrap td p { margin: 0; }

/* first row acts as header */
.table-wrap tr:first-child td {
  vertical-align: middle;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--gold-light);
  background: var(--stone);
  border-bottom: 2px solid var(--gold);
  border-left-color: var(--stone-3);
}

.table-wrap tr:nth-child(odd):not(:first-child) td { background: rgba(228, 211, 173, .35); }
.table-wrap tr:last-child td { border-bottom: 0; }

/* column minimum widths so columns stay readable */
.cols-3 table { min-width: 560px; }
.cols-4 table { min-width: 700px; }
.cols-5 table { min-width: 780px; }

/* 2-col spec tables: label column */
.spec tr:not(:first-child) td:first-child { width: 36%; font-weight: 700; }
/* 2-col equal tables (pros/cons, good/bad) */
.equal td { width: 50%; }
/* tables whose first column is a name */
.name-first tr:not(:first-child) td:first-child { font-weight: 700; color: var(--ink); }
.name-first td:first-child { min-width: 150px; }

/* ---------- Review images ---------- */
.review-img { margin: 1.2em 0 1.9em; }
.review-img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--parch-dark);
  border: 3px solid var(--parch-light);
  outline: 1px solid var(--gold-dark);
  border-radius: var(--radius-m);
  box-shadow: 0 6px 18px rgba(60, 40, 15, .12);
}

/* ---------- FAQ ---------- */
.faq-item {
  margin: 0 0 12px;
  padding: 16px 20px 6px;
  background: rgba(255, 252, 243, .65);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-m) var(--radius-m) 0;
}
.content .faq-item h3 { margin: 0 0 .4em; }

/* ---------- Author bio ---------- */
.author-bio {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin: 44px 0 10px;
  padding: 22px;
  background: linear-gradient(180deg, #fffaf0, #f4e7ca);
  border: 1px solid var(--gold);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
}
.author-bio img {
  width: 84px;
  height: 84px;
  flex: 0 0 84px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  object-fit: cover;
  background: var(--parch-dark);
}
.author-bio-name {
  margin: 0 0 2px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--stone);
}
.author-bio-role { margin: 0 0 8px; font-size: 14px; color: var(--wine); font-weight: 700; }
.author-bio-text { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  margin-top: 56px;
  padding: 42px 0 24px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #d9ccb0;
  background: var(--stone);
  border-top: 2px solid var(--gold-dark);
}
.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + 2px);
  height: 10px;
  background: linear-gradient(90deg, var(--stone) 50%, transparent 50%) 0 0 / 28px 10px repeat-x;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
}

.footer-title {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-light);
}

.footer-logo img { width: auto; height: 38px; margin-bottom: 12px; }
.footer-about { margin: 0; color: #bfb296; }

.footer-links {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links a { color: #e8dcc0; text-decoration: none; }
.footer-links a:hover { color: var(--gold-light); text-decoration: underline; }

.rg-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(195, 154, 62, .4);
  border-radius: var(--radius-m);
}
.rg-box p { margin: 0; color: #cfc2a5; font-size: 13.5px; }

.age-badge {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--wine);
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 16px;
  font-size: 13px;
  text-align: center;
  color: #a99c82;
  border-top: 1px solid rgba(195, 154, 62, .25);
}
.footer-bottom p { margin: 0 0 4px; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--gold-light);
  background: var(--stone);
  border: 1px solid var(--gold);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.to-top.is-visible { opacity: 1; visibility: visible; }
.to-top svg { width: 20px; height: 20px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
  .casino-card {
    grid-template-columns: 52px minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "rank brand cta"
      "rank bonus features";
    align-items: start;
  }
  .rank { align-self: start; }
  .cta { align-self: center; }
}

@media (max-width: 1000px) {
  .main-nav { display: none; }
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
}

@media (max-width: 680px) {
  body { font-size: 16px; line-height: 1.65; }
  .container { padding: 0 14px; }

  .hero { padding: 18px 0 8px; }
  .hero h1 { margin-bottom: 10px; }
  .hero-intro { font-size: 15px; line-height: 1.55; margin-bottom: 12px; }
  .author-box { padding: 6px 12px 6px 6px; gap: 10px; }
  .author-box img { width: 38px; height: 38px; flex-basis: 38px; }
  .author-meta { font-size: 13px; }
  .author-date { font-size: 12px; }

  .listing { padding: 12px 0 24px; }
  .listing-title { margin-bottom: 18px; gap: 10px; }
  .listing-title::before,
  .listing-title::after { flex-basis: 24px; }

  .casino-list { gap: 20px; }

  .casino-card {
    grid-template-columns: 40px minmax(0, 1fr);
    grid-template-areas:
      "rank brand"
      "bonus bonus"
      "features features"
      "cta cta";
    gap: 10px 12px;
    padding: 16px 14px 14px;
  }
  .casino-card--top::before { left: 14px; top: -11px; font-size: 11px; }

  .rank { width: 38px; height: 46px; font-size: 17px; padding-bottom: 7px; align-self: center; }
  .brand-logo { flex-basis: 88px; width: 88px; height: 50px; }
  .brand-name { font-size: 16px; }

  .bonus-block { padding: 8px 12px; }
  .bonus-text { font-size: 15px; }

  .features {
    grid-template-columns: 1fr 1fr;
    gap: 6px 10px;
    font-size: 13.5px;
  }
  .features li:first-child { grid-column: 1 / -1; }

  .btn-play { padding: 12px 14px; font-size: 15px; }

  .content h2 { margin-top: 2em; }
  .table-wrap { margin: 1em 0 1.4em; }
  .table-wrap table { font-size: 14px; }
  .table-wrap td { padding: 9px 11px; }
  .table-wrap tr:first-child td { font-size: 13px; }
  .spec tr:not(:first-child) td:first-child { width: 40%; }
  .name-first td:first-child { min-width: 130px; }

  .faq-item { padding: 14px 14px 4px; }

  .author-bio { flex-direction: column; align-items: center; text-align: center; padding: 18px; }
}

@media (max-width: 480px) {
  :root { --header-h: 58px; }
  .header-inner { gap: 10px; }
  .logo img { height: 34px; }
  .btn-bonus { padding: 8px 12px; font-size: 13px; gap: 6px; }
  .btn-bonus svg { width: 16px; height: 16px; flex-basis: 16px; }
}

@media (max-width: 360px) {
  .btn-bonus span { display: none; }
  .btn-bonus { padding: 9px; }
  .features { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { transition: none !important; animation: none !important; }
}
