:root {
  --bg: #120d10;
  --surface: #1b1418;
  --surface2: #241a20;
  --border: #43303a;
  --accent: #c53b4d;
  --accent-light: #e27886;
  --accent-dim: #922737;
  --gold: #d4a445;
  --gold-light: #f0cc7a;
  --gold-dim: #a87924;
  --text: #fff6f7;
  --muted: #a88f96;
  --radius: 12px;
  --radius-sm: 8px;
  --gap: 1.5rem;
  --max-w: 1120px;
  --narrow: 780px;
  --header-h: 64px;
  --transition: .25s ease;
}

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 3px; }

ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

.wrap-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.wrap-narrow {
  max-width: var(--narrow);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(18, 13, 16, .97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 400;
  white-space: nowrap;
}
.brand-logo strong { color: var(--gold); font-weight: 700; }
.brand-logo:hover { color: var(--gold-light); }
.brand-logo svg { flex-shrink: 0; }

.nav-list {
  display: flex;
  gap: .25rem;
}
.nav-link {
  padding: .5rem .85rem;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: .9rem;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: var(--surface2);
}

.menu-trigger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1010;
}
.menu-trigger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.menu-trigger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-trigger.open span:nth-child(2) { opacity: 0; }
.menu-trigger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* BREADCRUMBS */
.crumb-trail ol {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.crumb-trail li { display: flex; align-items: center; gap: .4rem; }
.crumb-trail li + li::before { content: "›"; color: var(--border); }
.crumb-trail a { color: var(--gold-dim); }
.crumb-trail a:hover { color: var(--gold-light); }
.crumb-trail span { color: var(--muted); }

/* HERO */
.hero-banner {
  background: linear-gradient(170deg, var(--surface2) 0%, var(--bg) 100%);
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid var(--border);
}
.hero-banner h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.lead-intro {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 700px;
  line-height: 1.7;
}

/* PAGE HERO (subpages) */
.page-hero {
  background: var(--surface);
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.3;
}

/* SECTIONS */
section { padding: 3rem 0; }
section:nth-child(even) { background: var(--surface); }
section:nth-child(odd) { background: var(--bg); }
.hero-banner, .page-hero { background: linear-gradient(170deg, var(--surface2) 0%, var(--bg) 100%); }

section h2 {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.3;
  letter-spacing: -.01em;
}
section p {
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.75;
}
section p:last-child { margin-bottom: 0; }

/* CONTENT SECTION (subpages) */
.content-section { padding: 3rem 0 4rem; }
.content-section h2 { margin-top: 2rem; }
.content-section h2:first-child { margin-top: 0; }
.content-section ul, .content-section ol {
  margin: 1rem 0 1.5rem 1.25rem;
  list-style: disc;
}
.content-section ol { list-style: decimal; }
.content-section li {
  margin-bottom: .4rem;
  color: var(--text);
  line-height: 1.65;
}

/* BUTTONS */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.75rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn-gold:hover {
  box-shadow: 0 8px 20px rgba(212, 164, 69, .18);
  color: #fff;
  transform: translateY(-1px);
}
.btn-compact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .5rem 1.1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #fff;
  font-weight: 600;
  font-size: .85rem;
  border-radius: var(--radius-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-compact:hover {
  box-shadow: 0 6px 16px rgba(197, 59, 77, .2);
  color: #fff;
  transform: translateY(-1px);
}

/* SHOWCASE */
.brand-showcase { padding: 3rem 0; background: var(--surface); }
.showcase-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.showcase-entry {
  position: relative;
  display: grid;
  grid-template-columns: 52px 140px 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.showcase-entry:hover { border-color: var(--gold-dim); }
.pos-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.entry-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: .65rem .75rem;
  min-height: 52px;
}
.entry-logo img { max-height: 36px; width: auto; }
.entry-offer { min-width: 0; }
.offer-tag {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent-light);
  font-size: .72rem;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 20px;
  margin-bottom: .35rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.offer-val {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: .3rem;
  line-height: 1.35;
}
.offer-txt {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.entry-cta { flex-shrink: 0; }

/* EVAL SECTION */
.eval-section { background: var(--bg); }
.eval-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.eval-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.eval-card {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
}
.eval-card svg { flex-shrink: 0; }

/* COMPARISON TABLE */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 1.25rem; }
.compare-table {
  min-width: 780px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-table th {
  background: var(--surface2);
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table td {
  padding: .85rem 1rem;
  font-size: .9rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(212, 164, 69, .04); }
.pill-gold {
  display: inline-block;
  background: rgba(212, 164, 69, .12);
  color: var(--gold-light);
  padding: .25rem .65rem;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
}

.section-summary {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
}
.section-lead {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* REVIEW CARDS */
.review-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: border-color var(--transition);
}
.review-card:hover { border-color: var(--gold-dim); }
.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.review-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.review-logo {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: .6rem .9rem;
  display: flex;
  align-items: center;
}
.review-logo img { max-height: 36px; width: auto; }
.review-card h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: var(--text);
}
.review-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.review-text p {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--text);
}

.bonus-block {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--bg);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-sm);
}
.bonus-label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: .3rem;
}
.bonus-amount {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.35;
}

.review-pros-cons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pros-col h4, .cons-col h4 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .5rem;
}
.pros-col h4 { color: #4caf50; }
.cons-col h4 { color: var(--accent-light); }
.pros-col ul, .cons-col ul { list-style: none; }
.pros-col li, .cons-col li {
  position: relative;
  padding-left: 1.15rem;
  font-size: .88rem;
  margin-bottom: .35rem;
  line-height: 1.5;
  color: var(--text);
}
.pros-col li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: 700;
  font-size: .8rem;
}
.cons-col li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--accent-light);
  font-weight: 700;
  font-size: .8rem;
}

.review-cta {
  display: block;
  text-align: center;
  margin-bottom: 1.5rem;
  padding: .85rem 2rem;
}

.info-table {
  width: 100%;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.info-table tr:nth-child(even) { background: var(--bg); }
.info-table td {
  padding: .6rem 1rem;
  font-size: .87rem;
  border-bottom: 1px solid var(--border);
}
.info-table tr:last-child td { border-bottom: none; }
.info-table td:first-child {
  font-weight: 600;
  color: var(--muted);
  width: 40%;
}

.review-extra {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  padding-top: .5rem;
}

/* GAME CATEGORIES */
.game-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.game-cat-card {
  padding: 1.25rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
}
.game-cat-card svg { margin: 0 auto .65rem; }
.game-cat-card h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .25rem;
  color: var(--text);
}
.game-cat-card p {
  font-size: .8rem;
  color: var(--muted);
  margin: 0;
}

/* PAYMENT TABLE */
.pay-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 500px;
}
.pay-table th {
  background: var(--surface2);
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.pay-table td {
  padding: .7rem 1rem;
  font-size: .9rem;
  border-bottom: 1px solid var(--border);
}
.pay-table tr:last-child td { border-bottom: none; }
.pay-table tr:hover td { background: rgba(212, 164, 69, .04); }
.pay-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: .35rem;
  font-size: .9rem;
}

/* REGISTER */
.register-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}
.register-block { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.register-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}
.step-list { counter-reset: none; }
.step-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .85rem;
  font-size: .9rem;
  line-height: 1.55;
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #fff;
  font-weight: 700;
  font-size: .8rem;
  flex-shrink: 0;
}
.mistake-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin-bottom: .75rem;
  font-size: .9rem;
  line-height: 1.55;
}
.mistake-list li svg { flex-shrink: 0; margin-top: 2px; }

/* MOBILE FEATURES */
.mobile-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.mobile-feat {
  padding: 1.25rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
}
.mobile-feat svg { margin: 0 auto .6rem; }
.mobile-feat h4 { font-size: .9rem; font-weight: 700; margin-bottom: .2rem; }
.mobile-feat p { font-size: .8rem; color: var(--muted); margin: 0; }

/* TRUST INDICATORS */
.trust-indicators {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}

/* VERDICT */
.verdict-box {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--surface2);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.verdict-box h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: .65rem;
}
.verdict-box p { margin: 0; font-size: .95rem; line-height: 1.7; }

/* FAQ */
.faq-section { background: var(--surface); }
.faq-list { max-width: var(--narrow); }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--gold-dim); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  background: var(--surface2);
  transition: background var(--transition);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { background: var(--bg); }
.faq-answer {
  padding: 1rem 1.25rem 1.25rem;
  font-size: .92rem;
  line-height: 1.7;
  color: var(--muted);
}
.faq-answer p { color: var(--muted); }

/* FOOTER */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand .brand-logo { margin-bottom: .75rem; }
.footer-desc { font-size: .85rem; color: var(--muted); line-height: 1.6; }
.footer-nav h4 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  margin-bottom: .75rem;
}
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: .4rem; }
.footer-nav a { color: var(--text); font-size: .9rem; }
.footer-nav a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 800;
  font-size: .9rem;
  margin-bottom: .75rem;
}
.disclaimer {
  font-size: .8rem;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto .75rem;
  line-height: 1.6;
}
.copyright {
  font-size: .78rem;
  color: var(--muted);
}
.copyright a { color: var(--gold-dim); }

/* SCROLL TO TOP */
.scroll-up {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s, transform .3s, box-shadow .3s;
  z-index: 900;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.scroll-up:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212,164,69,.25);
}
.scroll-up.visible { opacity: 1; visibility: visible; }

/* AUTHOR PROFILE */
.author-profile {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.author-avatar { flex-shrink: 0; }
.author-avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--gold-dim);
}
.author-info h2 { margin-top: 0; font-size: 1.4rem; }
.author-role {
  color: var(--gold);
  font-size: .9rem;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .showcase-entry {
    grid-template-columns: 1fr;
    gap: .85rem;
    padding: 1.25rem;
    position: relative;
  }
  .showcase-entry .pos-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 34px;
    height: 34px;
    font-size: .88rem;
  }
  .entry-logo { justify-content: flex-start; padding-left: 3.5rem; }
  .entry-cta { text-align: center; }
  .entry-cta .btn-gold { width: 100%; }

  .eval-grid { grid-template-columns: 1fr; }
  .review-body { grid-template-columns: 1fr; }
  .register-grid { grid-template-columns: 1fr; }
  .game-categories { grid-template-columns: repeat(2, 1fr); }
  .mobile-features { grid-template-columns: repeat(2, 1fr); }
  .trust-indicators { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
  :root { --header-h: 56px; }

  .nav-primary {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--surface);
    border-left: 1px solid var(--border);
    padding: 5rem 1.5rem 2rem;
    transition: right .35s ease;
    z-index: 1005;
    overflow-y: auto;
  }
  .nav-primary.open { right: 0; }
  .nav-list { flex-direction: column; gap: .25rem; }
  .nav-link { font-size: 1rem; padding: .75rem 1rem; }
  .menu-trigger { display: flex; }

  .hero-banner { padding: 2.5rem 0 2rem; }
  section { padding: 2rem 0; }

  .showcase-entry .entry-logo { padding-left: 3.25rem; }

  .review-card { padding: 1.25rem; }
  .review-header { gap: .75rem; }
  .review-rank { width: 38px; height: 38px; font-size: .95rem; }

  .game-categories { grid-template-columns: 1fr 1fr; }

  .author-profile { flex-direction: column; text-align: center; }
  .author-avatar img { width: 100px; height: 100px; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }

  .wrap-main, .wrap-narrow { padding: 0 1rem; }

  .hero-banner h1 { font-size: 1.4rem; }

  .showcase-entry { padding: 1rem; }
  .offer-val { font-size: .9rem; }
  .offer-txt { font-size: .8rem; }

  .review-card { padding: 1rem; }
  .review-card h3 { font-size: 1.05rem; }
  .bonus-block { padding: .85rem; }
  .bonus-amount { font-size: .95rem; }

  .game-categories { grid-template-columns: 1fr; }
  .mobile-features { grid-template-columns: 1fr; }
  .trust-indicators { grid-template-columns: 1fr 1fr; }

  .scroll-up { bottom: 1rem; right: 1rem; width: 42px; height: 42px; }
}