

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Figtree:wght@300;400;500;600&display=swap');

:root {
  --bg:          #07090f;
  --bg-2:        #0d1020;
  --bg-card:     #111525;
  --bg-card-2:   #181d30;
  --gold:        #c9a052;
  --gold-light:  #e4c07a;
  --gold-dim:    rgba(201,160,82,.12);
  --cream:       #ddd5c0;
  --text:        #a0a8b8;
  --muted:       #5a6070;
  --white:       #ffffff;
  --green:       #2ecc71;
  --red:         #e05252;
  --orange:      #e0a03a;
  --border:      rgba(201,160,82,.18);
  --border-sub:  rgba(255,255,255,.06);
  --r:           12px;
  --r-lg:        20px;
  --shadow:      0 8px 40px rgba(0,0,0,.55);
  --shadow-sm:   0 2px 16px rgba(0,0,0,.4);
  --glow:        0 0 32px rgba(201,160,82,.15);
  --max-w:       1160px;
  --transition:  .25s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Figtree', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.gold { color: var(--gold); }
.cream { color: var(--cream); }
.white { color: var(--white); }
.muted { color: var(--muted); font-size: .875rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,9,15,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: .8rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  padding: 9px 22px;
  background: var(--gold);
  color: var(--bg) !important;
  border-radius: 6px;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.hero {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(165deg, #0d1325 0%, #07090f 60%);
  overflow: hidden;
}
.hero-inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
.hero-content {
  flex: 1 1 0;
  min-width: 0;
}
.hero-visual {
  flex-shrink: 0;
  width: 400px;
  max-width: 400px;
  padding-top: 8px;
}
.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
.hero-img-mobile {
  display: none;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(201,160,82,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--white);
  max-width: 760px;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-intro {
  font-size: 1.05rem;
  max-width: 640px;
  color: var(--cream);
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border-sub);
}
.hero-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-card-2), var(--bg-card));
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.author-info { font-size: .85rem; }
.author-name { color: var(--cream); font-weight: 600; }
.author-title { color: var(--muted); font-size: .78rem; }
.hero-updated {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  color: var(--muted);
  margin-left: auto;
}
.hero-updated svg { color: var(--gold); }

.section-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.22;
  margin-bottom: 14px;
}
.section-desc {
  font-size: 1rem;
  color: var(--text);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 48px;
}
.section-divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 16px 0 20px;
}

.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rank-card {
  display: grid;
  grid-template-columns: 56px 160px 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--r);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.rank-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}
.rank-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-sm), var(--glow);
  transform: translateY(-2px);
}
.rank-card:hover::before { opacity: 1; }
.rank-card.rank-1 {
  background: linear-gradient(135deg, #16200d 0%, #111525 50%);
  border-color: rgba(201,160,82,.3);
}
.rank-card.rank-1::before { opacity: 1; }

.rank-badge {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--muted);
  flex-shrink: 0;
}
.rank-card.rank-1 .rank-badge {
  background: var(--gold);
  border-color: var(--gold-light);
  color: var(--bg);
  box-shadow: 0 0 18px rgba(201,160,82,.4);
}
.rank-card.rank-2 .rank-badge { border-color: rgba(180,180,180,.4); color: #c0c0c0; }
.rank-card.rank-3 .rank-badge { border-color: rgba(205,127,50,.4); color: #cd7f32; }

.rank-logo {
  width: 140px;
  /*height: 56px;*/
  background: var(--bg-2);
  border: 1px solid var(--border-sub);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.rank-logo img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }

.rank-logo .logo-placeholder {
  font-family: 'Cormorant Garamond', serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--cream);
  text-align: center;
  padding: 4px;
  line-height: 1.2;
}

.rank-info { min-width: 0; }
.rank-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.rank-bonus {
  font-size: .875rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}
.rank-features {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.rank-features li {
  font-size: .78rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.5;
}
.rank-features li::before {
  content: '✓';
  color: var(--green);
  font-size: .7rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.rank-score {
  text-align: center;
  flex-shrink: 0;
}
.score-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.score-stars {
  display: flex;
  gap: 2px;
  justify-content: center;
  margin-top: 4px;
}
.star { color: var(--gold); font-size: .9rem; }
.star.half { opacity: .5; }

.rank-cta {
  flex-shrink: 0;
}
.btn-cta {
  display: inline-block;
  padding: 12px 22px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 8px;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.btn-cta:hover {
  background: var(--gold-light);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,160,82,.35);
}
.btn-outline {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
}

.top1-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--bg);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--r);
  border: 1px solid var(--border);
  margin-bottom: 48px;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}
thead th {
  background: var(--bg-card-2);
  color: var(--gold);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
tbody tr { border-bottom: 1px solid var(--border-sub); transition: background var(--transition); }
tbody tr:last-child { border-bottom: 0; }
tbody tr:hover { background: var(--bg-card); }
tbody td {
  padding: 14px 20px;
  color: var(--text);
  vertical-align: middle;
}
tbody td:first-child { color: var(--cream); font-weight: 600; }
.score-cell {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold) !important;
}

.reviews-list { display: flex; flex-direction: column; gap: 64px; }
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.review-card:hover { border-color: var(--border); }
.review-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: var(--bg-card-2);
  border-bottom: 1px solid var(--border-sub);
  flex-wrap: wrap;
}
.review-rank {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  min-width: 36px;
}
.review-casino-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  flex: 1;
}
.review-score-badge {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.review-score-badge .score-num { font-size: 1.6rem; }
.review-score-badge .score-max { font-size: .875rem; color: var(--muted); }
.review-tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 100px;
}
.review-body { padding: 32px; }
.review-intro {
  font-size: .975rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 24px;
}
.review-intro p { margin-bottom: 14px; }
.review-intro p:last-child { margin-bottom: 0; }
.review-bonus-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 20px;
  margin-bottom: 28px;
}
.bonus-icon { font-size: 1.4rem; flex-shrink: 0; }
.bonus-label { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.bonus-text { font-size: .9rem; color: var(--cream); font-weight: 500; }

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.pros, .cons {
  background: var(--bg-2);
  border-radius: var(--r);
  padding: 20px;
}
.pros { border-top: 2px solid var(--green); }
.cons { border-top: 2px solid var(--red); }
.pros-cons-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pros .pros-cons-title { color: var(--green); }
.cons .pros-cons-title { color: var(--red); }
.pros-cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .83rem;
  color: var(--text);
  line-height: 1.55;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-sub);
}
.pros-cons-list li:last-child { border-bottom: 0; }
.pros-cons-list .ic { flex-shrink: 0; font-size: .7rem; margin-top: 3px; }
.pros .ic { color: var(--green); }
.cons .ic { color: var(--red); }

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.review-license {
  font-size: .78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
}
.review-license .shield { color: var(--gold); }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: border-color var(--transition), transform var(--transition);
}
.info-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}
.info-card-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}
.info-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.info-card-text { font-size: .875rem; line-height: 1.75; color: var(--text); }

.highlight-box {
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 28px;
  margin: 28px 0;
}
.highlight-box p { font-size: .92rem; color: var(--cream); line-height: 1.8; }
.highlight-box strong { color: var(--gold); }

.content-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 32px 0 12px;
}
.content-block p { font-size: .95rem; color: var(--text); line-height: 1.82; margin-bottom: 16px; }
.content-block ul li {
  font-size: .9rem;
  color: var(--text);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.65;
}
.content-block ul li::before { content: '◆'; color: var(--gold); font-size: .55rem; margin-top: 6px; flex-shrink: 0; }

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--r);
  padding: 22px 20px;
}
.payment-card .payment-icon { font-size: 1.6rem; margin-bottom: 10px; }
.payment-card .payment-title {
  font-weight: 700;
  color: var(--cream);
  font-size: .95rem;
  margin-bottom: 6px;
}
.payment-card .payment-delay {
  font-size: .8rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.payment-card .payment-desc { font-size: .8rem; color: var(--text); line-height: 1.6; }

.withdrawal-table { margin-bottom: 32px; }
.withdrawal-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-sub);
  border-radius: 0;
}
.withdrawal-row:first-child { border-radius: var(--r) var(--r) 0 0; background: var(--bg-card-2); }
.withdrawal-row:last-child { border-bottom: 0; border-radius: 0 0 var(--r) var(--r); }
.withdrawal-row { background: var(--bg-card); }
.wr-method { flex: 1; color: var(--cream); font-weight: 600; font-size: .9rem; }
.wr-time {
  font-weight: 700;
  font-size: .9rem;
}
.wr-fast { color: var(--green); }
.wr-mid { color: var(--gold); }
.wr-slow { color: var(--red); }
.wr-header { background: var(--bg-card-2) !important; }
.wr-header .wr-method, .wr-header .wr-time { color: var(--gold) !important; font-size: .73rem; letter-spacing: .1em; text-transform: uppercase; }

.bonus-table-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-sub);
  overflow: hidden;
  margin-bottom: 32px;
}
.bonus-table-card .table-wrap { border: 0; border-radius: 0; margin-bottom: 0; }
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .73rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}
.status-active { background: rgba(46,204,113,.12); color: var(--green); border: 1px solid rgba(46,204,113,.25); }
.status-warn { background: rgba(224,160,58,.12); color: var(--orange); border: 1px solid rgba(224,160,58,.25); }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
details.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--transition);
}
details.faq-item[open] { border-color: var(--border); }
details.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  transition: color var(--transition);
  user-select: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  font-family: 'Figtree', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}
details.faq-item[open] summary::after { transform: rotate(45deg); }
details.faq-item summary:hover { color: var(--white); }
.faq-answer {
  padding: 0 24px 22px;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.82;
  border-top: 1px solid var(--border-sub);
  margin-top: 0;
}
.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }

.verdict-section {
  background: linear-gradient(135deg, #0d1325 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.verdict-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.verdict-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--r);
  padding: 24px;
  border-top: 2px solid var(--gold);
}
.verdict-card .casino-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.verdict-card .casino-for {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.verdict-card .casino-reason { font-size: .85rem; color: var(--text); line-height: 1.65; }

.sources-block {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--r);
  padding: 28px 32px;
  margin-bottom: 32px;
}
.sources-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 16px;
}
.sources-block ul li {
  font-size: .83rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-sub);
}
.sources-block ul li:last-child { border-bottom: 0; }
.sources-block ul li::before { content: '→'; color: var(--gold); }

.disclaimer {
  background: var(--bg-2);
  border-top: 1px solid var(--border-sub);
  padding: 20px 0;
}
.disclaimer p {
  font-size: .75rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
}
.disclaimer strong { color: var(--text); }

.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 32px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: .83rem; color: var(--muted); max-width: 420px; line-height: 1.7; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.footer-nav a { font-size: .82rem; color: var(--muted); }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border-sub);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: .78rem; color: var(--muted); }
.footer-resp {
  font-size: .78rem;
  font-weight: 600;
  color: var(--orange);
  padding: 4px 12px;
  background: rgba(224,160,58,.08);
  border: 1px solid rgba(224,160,58,.2);
  border-radius: 100px;
}

.bg-alt { background: var(--bg-2); }
.bg-dark { background: var(--bg); }

.ornament {
  text-align: center;
  padding: 8px 0;
  color: var(--border);
  letter-spacing: .4em;
  font-size: .8rem;
  margin: 40px 0;
}

:target { scroll-margin-top: 80px; }

@media (max-width: 900px) {
  .rank-card {
    grid-template-columns: 44px 120px 1fr auto;
    grid-template-rows: auto auto;
    gap: 10px 14px;
  }
  .rank-logo {
    display: flex;
    width: 120px;
    height: 48px;
    grid-column: 2;
    grid-row: 1;
  }
  .rank-score { grid-column: 4; grid-row: 1; }
  .rank-info { grid-column: 2 / 5; grid-row: 2; }
  .rank-cta { grid-column: 1 / -1; grid-row: 3; }
  .pros-cons { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { align-items: flex-start; }
}
@media (max-width: 640px) {
  .hero { padding: 64px 0 56px; }
  .section { padding: 56px 0; }
  .review-body { padding: 20px; }
  .review-header { padding: 20px; }
  .rank-card {
    padding: 14px 12px;
    grid-template-columns: 36px 100px 1fr auto;
  }
  .rank-logo { width: 100px; height: 40px; }
  .rank-badge { width: 36px; height: 36px; font-size: .9rem; }
  .score-num { font-size: 1.6rem; }
  .btn-cta { padding: 10px 16px; font-size: .75rem; }
  .payment-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { flex-direction: column; gap: 0; }
  .hero-visual { display: none; }
  .hero-img-mobile {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    margin: 20px 0 24px;
  }
}


.resp-banner {
  background: #0a1020;
  border-bottom: 1px solid rgba(201,160,82,.2);
  padding: 0;
  height: 56px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.resp-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  flex-wrap: nowrap;
}
.resp-banner-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.resp-banner-badge {
  background: #c0392b;
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.resp-banner-text {
  font-size: .78rem;
  color: #8a95a8;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.resp-banner-text strong { color: #b0bac8; }
.resp-banner-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.resp-banner-tel {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.resp-banner-tel svg { flex-shrink: 0; }
.resp-banner-link {
  font-size: .72rem;
  color: #5a6470;
  text-decoration: underline;
  white-space: nowrap;
  transition: color var(--transition);
}
.resp-banner-link:hover { color: var(--gold); }
@media (max-width: 768px) {
  .resp-banner { height: auto; padding: 8px 0; }
  .resp-banner-inner { flex-wrap: wrap; gap: 6px; }
  .resp-banner-text { display: none; }
  .resp-banner-link { display: none; }
}
@media (max-width: 480px) {
  .resp-banner-right { gap: 10px; }
}
