/* =========================================================
   ICE FISHING TR — Landing Page Stylesheet
   Renk Şeması: Arka plan #013B70 | Şapka/Menü #FFFFFF | Buton #80BBFB
   ========================================================= */

:root {
  --bg-main: #013B70;
  --bg-deep: #012A52;
  --bg-card: #02468a;
  --header-bg: #FFFFFF;
  --menu-color: #FFFFFF;
  --btn-bg: #80BBFB;
  --btn-hover: #5BA3F5;
  --btn-text: #012A52;
  --accent-orange: #F39C2A;
  --accent-red: #E23B3B;
  --accent-ice: #BFE3FF;
  --text-light: #EAF4FF;
  --text-muted: #A9C7E6;
  --text-dark: #06243F;
  --border-ice: rgba(128, 187, 251, 0.28);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.25);
  --radius: 16px;
  --maxw: 1180px;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-main);
  color: var(--text-light);
  line-height: 1.75;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 12% 8%, rgba(128,187,251,0.10), transparent 42%),
    radial-gradient(circle at 88% 18%, rgba(128,187,251,0.07), transparent 38%),
    linear-gradient(180deg, #013B70 0%, #012A52 100%);
  background-attachment: fixed;
}

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

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ====================== HEADER ====================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo img { height: 56px; width: auto; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.main-nav a {
  color: var(--text-dark);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.main-nav a:hover { background: #EAF4FF; color: var(--bg-main); }

.header-cta {
  background: var(--btn-bg);
  color: var(--btn-text) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 30px !important;
  box-shadow: 0 4px 14px rgba(128, 187, 251, 0.5);
}
.header-cta:hover { background: var(--btn-hover) !important; transform: translateY(-1px); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  width: 26px; height: 3px;
  background: var(--bg-main);
  border-radius: 3px;
  transition: 0.3s;
}
.burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ====================== BUTTONS ====================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 15px 38px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.22s ease;
  text-align: center;
}
.btn-primary {
  background: var(--btn-bg);
  color: var(--btn-text);
  box-shadow: 0 8px 24px rgba(128, 187, 251, 0.45);
}
.btn-primary:hover {
  background: var(--btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(128, 187, 251, 0.6);
}
.btn-lg { font-size: 1.2rem; padding: 18px 50px; }
.btn-block { display: flex; width: 100%; }
.btn-pulse { animation: pulse 2.4s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(128,187,251,0.6); }
  70% { box-shadow: 0 0 0 18px rgba(128,187,251,0); }
  100% { box-shadow: 0 0 0 0 rgba(128,187,251,0); }
}

/* ====================== HERO ====================== */
.hero {
  position: relative;
  padding: 70px 0 60px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url('/static/images/ice-fishing-intro.webp') center/cover no-repeat;
  opacity: 0.18;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}
.hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-text h1 .hl { color: var(--btn-bg); }
.hero-text .lead {
  font-size: 1.12rem;
  color: var(--text-light);
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(128,187,251,0.12);
  border: 1px solid var(--border-ice);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--accent-ice);
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 16px; }

/* ====================== DEMO BOX ====================== */
.demo-box {
  background: linear-gradient(165deg, #02468a 0%, #012A52 100%);
  border: 2px solid var(--border-ice);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.demo-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #001b36;
}
.demo-frame img { width: 100%; height: 100%; object-fit: cover; }
.demo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1,42,82,0.05) 0%, rgba(1,42,82,0.75) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}
.demo-play-icon {
  width: 78px; height: 78px;
  background: var(--btn-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
  transition: transform 0.2s;
}
.demo-frame:hover .demo-play-icon { transform: scale(1.08); }
.demo-play-icon svg { width: 34px; height: 34px; fill: var(--btn-text); margin-left: 4px; }
.demo-label {
  background: rgba(1,27,54,0.7);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-ice);
  letter-spacing: 0.5px;
}
.demo-box .btn { margin-top: 16px; }
.demo-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ====================== SECTION GENERAL ====================== */
section { padding: 58px 0; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-title .hl { color: var(--btn-bg); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 760px;
}
h2 { scroll-margin-top: 90px; }
h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-ice);
  margin: 26px 0 12px;
}
p { margin-bottom: 16px; color: var(--text-light); }
.lead-p { font-size: 1.08rem; }
strong { color: #fff; }

/* prose blocks */
.prose { max-width: 880px; }
.prose ul, .prose ol { margin: 0 0 18px 22px; }
.prose li { margin-bottom: 8px; color: var(--text-light); }

/* full-width image inside text */
.content-img {
  border-radius: var(--radius);
  border: 1px solid var(--border-ice);
  box-shadow: var(--shadow-soft);
  margin: 30px 0;
  width: 100%;
}
.content-img figcaption,
.figure figcaption {
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 10px;
  font-style: italic;
}
.figure { margin: 30px 0; }

.alt-bg { background: rgba(1, 27, 54, 0.45); }

/* ====================== FEATURE CARDS ====================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  margin-top: 14px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-ice);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.card-icon {
  width: 56px; height: 56px;
  background: rgba(128,187,251,0.16);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.card h3 { margin-top: 0; color: #fff; font-size: 1.12rem; }
.card p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 0; }

/* ====================== FISH BONUS TABLE ====================== */
.fish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 28px 0;
}
.fish-card {
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  border: 1px solid var(--border-ice);
  position: relative;
  overflow: hidden;
}
.fish-card.blue { background: linear-gradient(160deg, #1b6fc4, #0b3d78); }
.fish-card.orange { background: linear-gradient(160deg, #e88a2a, #b85f12); }
.fish-card.red { background: linear-gradient(160deg, #d8403f, #962020); }
.fish-card h3 { color: #fff; margin: 0 0 8px; font-size: 1.3rem; }
.fish-card .mult { font-size: 2rem; font-weight: 900; font-family: var(--font-head); color: #fff; }
.fish-card .desc { font-size: 0.88rem; color: rgba(255,255,255,0.9); margin-top: 8px; }

/* ====================== DATA TABLE ====================== */
.table-wrap { overflow-x: auto; margin: 26px 0; border-radius: var(--radius); }
table.data {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  min-width: 480px;
}
table.data th, table.data td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border-ice);
}
table.data th {
  background: rgba(128,187,251,0.16);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
}
table.data td { color: var(--text-light); font-size: 0.94rem; }
table.data tr:last-child td { border-bottom: none; }
table.data tr:hover td { background: rgba(128,187,251,0.06); }

/* ====================== CASINO / OPERATOR CARDS ====================== */
.operators { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 24px; }
.operator-card {
  background: var(--bg-card);
  border: 1px solid var(--border-ice);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.operator-card .op-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.operator-card .op-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--btn-bg);
}
.op-rating { color: var(--accent-orange); font-weight: 700; font-size: 0.95rem; }
.operator-card ul { list-style: none; margin: 0 0 22px; }
.operator-card li { padding: 7px 0 7px 28px; position: relative; font-size: 0.95rem; color: var(--text-light); }
.operator-card li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--btn-bg); font-weight: 900;
}
.operator-card .btn { margin-top: auto; }

/* screenshot images for crypto */
.crypto-shots { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 30px 0; }
.crypto-shots figure {
  background: var(--bg-card);
  border: 1px solid var(--border-ice);
  border-radius: var(--radius);
  padding: 12px;
}
.crypto-shots img { border-radius: 10px; }

/* ====================== STEPS ====================== */
.steps { counter-reset: step; margin-top: 20px; }
.step {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-ice);
}
.step:last-child { border-bottom: none; }
.step-num {
  counter-increment: step;
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--btn-bg);
  color: var(--btn-text);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.3rem;
}
.step-num::before { content: counter(step); }
.step-body h3 { margin-top: 0; }
.step-body p { margin-bottom: 0; }

/* ====================== FAQ ====================== */
.faq-list { margin-top: 20px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-ice);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 20px 56px 20px 22px;
  cursor: pointer;
  position: relative;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--btn-bg);
  transition: transform 0.25s;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 600px; padding: 0 22px 20px; }
.faq-a p { margin-bottom: 0; color: var(--text-muted); }

/* ====================== TOC ====================== */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border-ice);
  border-radius: var(--radius);
  padding: 26px 30px;
}
.toc h2 { font-size: 1.3rem; margin-bottom: 16px; color: #fff; }
.toc ol { list-style: none; counter-reset: toc; columns: 2; column-gap: 36px; }
.toc li { counter-increment: toc; padding: 7px 0; break-inside: avoid; }
.toc a { color: var(--accent-ice); font-size: 0.96rem; transition: color 0.2s; }
.toc a::before { content: counter(toc) ". "; color: var(--btn-bg); font-weight: 700; }
.toc a:hover { color: #fff; }

/* ====================== CTA BANNER ====================== */
.cta-banner {
  background: linear-gradient(120deg, #1b6fc4, #02468a);
  border: 1px solid var(--border-ice);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  margin: 20px 0;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: var(--accent-ice); margin-bottom: 26px; max-width: 620px; margin-left: auto; margin-right: auto; }

/* ====================== FOOTER ====================== */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-ice);
  padding: 50px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-col h4 {
  font-family: var(--font-head);
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.footer-col p, .footer-col li { color: var(--text-muted); font-size: 0.9rem; }
.footer-col ul { list-style: none; }
.footer-col li { padding: 5px 0; }
.footer-col a:hover { color: var(--btn-bg); }
.footer-logo img { height: 60px; margin-bottom: 14px; }
.licenses { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin: 14px 0; }
.licenses img { height: 30px; opacity: 0.85; filter: grayscale(0.2); }
.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 2px solid var(--accent-red);
  color: var(--accent-red);
  border-radius: 50%;
  font-weight: 900;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid var(--border-ice);
  padding-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); max-width: 760px; margin-bottom: 0; }
.disclaimer {
  background: rgba(226,59,59,0.08);
  border: 1px solid rgba(226,59,59,0.3);
  border-radius: 12px;
  padding: 18px 22px;
  margin-top: 20px;
}
.disclaimer p { font-size: 0.84rem; color: var(--text-muted); margin: 0; }

/* ====================== MOBILE NAV DRAWER ====================== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}
.nav-overlay.show { display: block; }

/* ====================== STATS BAR ====================== */
.stats-section { padding: 8px 0 4px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  background: linear-gradient(135deg, rgba(128,187,251,0.14), rgba(128,187,251,0.05));
  border: 1px solid var(--border-ice);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(4px);
}
.stat-card {
  text-align: center;
  position: relative;
  padding: 6px 8px;
}
.stat-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -8px; top: 50%;
  transform: translateY(-50%);
  height: 56%;
  width: 1px;
  background: var(--border-ice);
}
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.1;
  color: var(--btn-bg);
  text-shadow: 0 2px 14px rgba(128,187,251,0.4);
}
.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  letter-spacing: 0.4px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ====================== FEATURE MINI CARDS ====================== */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin: 28px 0 8px;
}
.feature-mini {
  background: linear-gradient(160deg, var(--bg-card), var(--bg-deep));
  border: 1px solid var(--border-ice);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.feature-mini:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  border-color: var(--btn-bg);
}
.feature-mini-icon {
  font-size: 2rem;
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: rgba(128,187,251,0.16);
  margin-bottom: 14px;
}
.feature-mini h3 { color: var(--accent-ice); font-size: 1.12rem; margin: 0 0 8px; }
.feature-mini p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }

/* ====================== CHECK LIST ====================== */
.check-list { list-style: none; margin: 14px 0; padding: 0; }
.check-list li {
  position: relative;
  padding: 8px 0 8px 34px;
  color: var(--text-light);
  border-bottom: 1px dashed var(--border-ice);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 8px;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  background: var(--btn-bg);
  color: var(--btn-text);
  font-weight: 800;
  border-radius: 50%;
  font-size: 0.8rem;
}

/* ====================== SCROLL REVEAL ====================== */
/* JS adds .js-reveal to <html>; only then do we hide-before-reveal.
   Without JS (or for screenshots/crawlers) content stays fully visible. */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.js-reveal .reveal.in-view { opacity: 1; transform: translateY(0); }

/* enhanced section title underline accent */
.section-title { position: relative; }

/* card hover lift for existing components */
.fish-card { transition: transform 0.28s ease, box-shadow 0.28s ease; }
.fish-card:hover { transform: translateY(-6px) scale(1.015); box-shadow: 0 18px 44px rgba(0,0,0,0.4); }
.operator-card { transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease; }
.operator-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.35); }
.data tbody tr { transition: background 0.2s ease; }
.data tbody tr:hover { background: rgba(128,187,251,0.10); }
.content-img { transition: transform 0.4s ease; }
figure.figure:hover .content-img { transform: scale(1.02); }

/* ====================== REVIEWS / RATINGS ====================== */
.rating-summary {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-ice);
  border-radius: var(--radius);
  padding: 30px 34px;
  box-shadow: var(--shadow-soft);
  margin: 8px 0 34px;
}
.rating-score { text-align: center; }
.rating-big {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.rating-stars {
  display: block;
  margin: 8px 0 4px;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--accent-orange);
}
.rating-meta { display: block; font-size: 13px; color: var(--text-muted); }
.rating-bars { display: flex; flex-direction: column; gap: 10px; }
.rbar { display: grid; grid-template-columns: 34px 1fr 44px; align-items: center; gap: 12px; }
.rbar-label { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.rbar-track {
  height: 10px;
  background: rgba(128,187,251,0.16);
  border-radius: 999px;
  overflow: hidden;
}
.rbar-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--btn-bg), var(--accent-orange));
  border-radius: 999px;
}
.rbar-pct { font-size: 13px; color: var(--text-muted); text-align: right; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-bottom: 22px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-ice);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.review-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.35); }
.review-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.review-avatar {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--btn-text);
  background: linear-gradient(135deg, var(--btn-bg), var(--accent-ice));
}
.review-name { display: block; font-weight: 700; color: #fff; font-size: 15px; }
.review-stars { display: block; color: var(--accent-orange); font-size: 14px; letter-spacing: 2px; }
.review-card p { color: var(--text-light); font-size: 14.5px; line-height: 1.7; margin: 0 0 14px; }
.review-date { display: block; font-size: 12px; color: var(--text-muted); }
.reviews-note { font-size: 13px; color: var(--text-muted); font-style: italic; text-align: center; max-width: 760px; margin: 0 auto; }

/* ====================== RESPONSIVE ====================== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-text { order: 2; }
  .demo-box { order: 1; }
  .operators { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .toc ol { columns: 1; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); row-gap: 22px; }
  .stat-card:nth-child(3)::after { display: none; }
}

@media (max-width: 760px) {
  .burger { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 30px rgba(0,0,0,0.3);
    padding: 84px 24px 24px;
    transition: right 0.32s ease;
    z-index: 999;
    overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav a { display: block; padding: 14px 16px; border-radius: 10px; font-size: 1rem; }
  .header-cta { text-align: center; margin-top: 12px; }
  .crypto-shots { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 22px 16px; }
  .stat-card::after { display: none !important; }
  .stat-num { font-size: 1.6rem; }
  .rating-summary { grid-template-columns: 1fr; gap: 22px; padding: 24px 20px; text-align: center; }
  .rating-bars { max-width: 380px; margin: 0 auto; width: 100%; }
  section { padding: 42px 0; }
  .hero { padding: 44px 0 40px; }
  .cta-banner { padding: 36px 22px; }
  .btn-lg { font-size: 1.05rem; padding: 16px 36px; }
}

@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .fish-card .mult { font-size: 1.6rem; }
  .hero-text h1 { font-size: 1.85rem; }
}

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