/* ===================================================
   Honest Casino Reviews — Main Stylesheet
   honest-casino-reviews.org
   Prefix: hcr- / ca-
=================================================== */

/* ---- TOKENS & RESET ---- */
:root {
  --hcr-bg:         #08090f;
  --hcr-surface:    #111527;
  --hcr-surface2:   #181e35;
  --hcr-border:     #252d4a;
  --hcr-gold:       #c9a84c;
  --hcr-gold-light: #f0d080;
  --hcr-gold-dim:   #7a6228;
  --hcr-red:        #b93535;
  --hcr-green:      #29a870;
  --hcr-green-dim:  #1a6646;
  --hcr-text:       #dde1f0;
  --hcr-text-muted: #7a82a0;
  --hcr-white:      #ffffff;
  --hcr-rank1:      #c9a84c;
  --hcr-rank2:      #8fa3b8;
  --hcr-rank3:      #b87333;
  --hcr-radius:     10px;
  --hcr-radius-lg:  18px;
  --hcr-shadow:     0 4px 32px rgba(0,0,0,.55);
  --hcr-glow:       0 0 24px rgba(201,168,76,.18);
  --hcr-font:       'Rajdhani', 'Segoe UI', sans-serif;
  --hcr-font-body:  'Inter', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--hcr-bg);
  color: var(--hcr-text);
  font-family: var(--hcr-font-body);
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
}

a { color: var(--hcr-gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--hcr-gold-light); }

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

h1, h2, h3, h4 {
  font-family: var(--hcr-font);
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--hcr-white);
}

/* ---- SUIT DECORATIONS ---- */
.hcr-suit-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  opacity: .03;
}
.hcr-suit-bg span {
  position: absolute;
  font-size: clamp(60px, 8vw, 140px);
  color: var(--hcr-gold);
  user-select: none;
  animation: hcr-float 20s ease-in-out infinite;
}
.hcr-suit-bg span:nth-child(1) { top: 5%;  left: 3%;  animation-delay: 0s; }
.hcr-suit-bg span:nth-child(2) { top: 20%; right: 5%; animation-delay: -5s; }
.hcr-suit-bg span:nth-child(3) { top: 55%; left: 7%;  animation-delay: -10s; }
.hcr-suit-bg span:nth-child(4) { top: 75%; right: 8%; animation-delay: -15s; }
.hcr-suit-bg span:nth-child(5) { top: 40%; left: 50%; animation-delay: -7s; }
.hcr-suit-bg span:nth-child(6) { top: 85%; left: 30%; animation-delay: -12s; }

@keyframes hcr-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-20px) rotate(8deg); }
  66%       { transform: translateY(10px) rotate(-5deg); }
}

/* ---- LAYOUT ---- */
.hcr-page { position: relative; z-index: 1; }

.hcr-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- NAVIGATION ---- */
.hcr-nav {
  background: rgba(8,9,15,.92);
  border-bottom: 1px solid var(--hcr-border);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.hcr-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1140px;
  margin: 0 auto;
  gap: 16px;
}
.hcr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--hcr-font);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--hcr-white);
  text-decoration: none;
}
.hcr-logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--hcr-gold), var(--hcr-gold-dim));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 0 12px rgba(201,168,76,.4);
}
.hcr-logo span { color: var(--hcr-gold); }
.hcr-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.hcr-nav-links a {
  font-family: var(--hcr-font);
  font-size: .95rem;
  font-weight: 600;
  color: var(--hcr-text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s;
}
.hcr-nav-links a:hover { color: var(--hcr-gold); }

/* ---- LANGUAGE SWITCHER ---- */
.hcr-lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.hcr-lang-btn {
  background: var(--hcr-surface2);
  border: 1px solid var(--hcr-border);
  color: var(--hcr-text-muted);
  font-family: var(--hcr-font);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 4px 9px;
  border-radius: 5px;
  cursor: pointer;
  transition: all .2s;
}
.hcr-lang-btn:hover,
.hcr-lang-btn.active {
  background: var(--hcr-gold);
  border-color: var(--hcr-gold);
  color: #000;
}

/* ---- HERO ---- */
.hcr-hero-section {
  padding: 70px 20px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hcr-hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hcr-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hcr-surface2);
  border: 1px solid var(--hcr-gold-dim);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--hcr-gold);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hcr-hero-chip::before { content: '♠'; font-size: 1rem; }
.hcr-hero-chip::after  { content: '♥'; font-size: 1rem; color: var(--hcr-red); }

.hcr-hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #ffffff 30%, var(--hcr-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hcr-hero-sub {
  font-size: 1.1rem;
  color: var(--hcr-text-muted);
  max-width: 600px;
  margin: 0 auto 30px;
}
.hcr-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hcr-stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.hcr-stat-num {
  font-family: var(--hcr-font);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--hcr-gold);
}
.hcr-stat-label {
  font-size: .8rem;
  color: var(--hcr-text-muted);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hcr-stat-sep {
  width: 1px; height: 40px;
  background: var(--hcr-border);
}

/* ---- SECTION TITLES ---- */
.hcr-section {
  padding: 50px 0;
}
.hcr-section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.hcr-section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--hcr-gold-dim), transparent);
}
.hcr-section-title {
  font-family: var(--hcr-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hcr-white);
  white-space: nowrap;
}
.hcr-section-title .suit { color: var(--hcr-gold); margin-right: 8px; }

/* ---- CASINO CARDS LIST ---- */
.hcr-casino-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ---- CASINO CARD ---- */
.ca-casino-card {
  background: var(--hcr-surface);
  border: 1px solid var(--hcr-border);
  border-radius: var(--hcr-radius-lg);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 0 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.ca-casino-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--hcr-border);
  border-radius: var(--hcr-radius-lg) 0 0 var(--hcr-radius-lg);
}
.ca-casino-card.rank-1 {
  border-color: var(--hcr-gold-dim);
  background: linear-gradient(135deg, #1a1c2e 0%, #181527 100%);
  box-shadow: var(--hcr-glow);
}
.ca-casino-card.rank-1::before { background: linear-gradient(to bottom, var(--hcr-gold), var(--hcr-gold-dim)); }
.ca-casino-card.rank-2::before { background: var(--hcr-rank2); }
.ca-casino-card.rank-3::before { background: var(--hcr-rank3); }

.ca-casino-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0,0,0,.5), var(--hcr-glow);
  border-color: var(--hcr-gold-dim);
}

/* Rank badge */
.ca-rank-col { width: 56px; text-align: center; }
.ca-badge-rank {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-family: var(--hcr-font);
  font-size: 1.2rem;
  font-weight: 800;
  border: 2px solid var(--hcr-border);
}
.ca-casino-card.rank-1 .ca-badge-rank {
  background: linear-gradient(135deg, var(--hcr-gold), var(--hcr-gold-dim));
  color: #000;
  border-color: var(--hcr-gold);
  box-shadow: 0 0 16px rgba(201,168,76,.4);
}
.ca-casino-card.rank-2 .ca-badge-rank { background: var(--hcr-surface2); color: var(--hcr-rank2); border-color: var(--hcr-rank2); }
.ca-casino-card.rank-3 .ca-badge-rank { background: var(--hcr-surface2); color: var(--hcr-rank3); border-color: var(--hcr-rank3); }
.ca-casino-card:not(.rank-1):not(.rank-2):not(.rank-3) .ca-badge-rank {
  background: var(--hcr-surface2);
  color: var(--hcr-text-muted);
}

/* Casino info */
.ca-info-col { flex: 1; }
.ca-casino-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}
.ca-casino-name {
  font-family: var(--hcr-font);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--hcr-white);
}
.ca-casino-card.rank-1 .ca-casino-name { color: var(--hcr-gold-light); }

.ca-badge-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid;
}
.ca-badge-tag.tag-top { color: var(--hcr-gold); border-color: var(--hcr-gold-dim); background: rgba(201,168,76,.1); }
.ca-badge-tag.tag-crypto { color: #60c0d0; border-color: #2a5a65; background: rgba(96,192,208,.08); }
.ca-badge-tag.tag-new { color: var(--hcr-green); border-color: var(--hcr-green-dim); background: rgba(41,168,112,.08); }

/* Score row */
.ca-score-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ca-score-display {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.ca-score-num {
  font-family: var(--hcr-font);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--hcr-gold);
}
.ca-score-max {
  font-size: .85rem;
  color: var(--hcr-text-muted);
}
.ca-stars {
  display: flex;
  gap: 2px;
}
.ca-stars svg {
  width: 15px; height: 15px;
}
.ca-star-fill { fill: var(--hcr-gold); }
.ca-star-half { fill: url(#half-grad); }
.ca-star-empty { fill: var(--hcr-border); }

/* Casino params */
.ca-params-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 10px;
}
.ca-param-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .82rem;
}
.ca-param-label {
  color: var(--hcr-text-muted);
  font-weight: 500;
}
.ca-param-val {
  color: var(--hcr-text);
  font-weight: 600;
}
.ca-param-icon { font-size: .9rem; }

/* Action col */
.ca-action-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 130px;
}

/* ---- BUTTONS ---- */
.ca-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--hcr-radius);
  font-family: var(--hcr-font);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .2s;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.ca-btn-play {
  background: linear-gradient(135deg, var(--hcr-gold) 0%, #e8c060 50%, var(--hcr-gold) 100%);
  background-size: 200% 100%;
  color: #000;
  border-color: var(--hcr-gold);
  box-shadow: 0 4px 16px rgba(201,168,76,.35);
  width: 100%;
  animation: hcr-shimmer 3s linear infinite;
}
.ca-btn-play:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,168,76,.5);
  color: #000;
}
@keyframes hcr-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.ca-btn-review {
  background: transparent;
  color: var(--hcr-text-muted);
  border-color: var(--hcr-border);
  width: 100%;
  font-size: .88rem;
}
.ca-btn-review:hover {
  border-color: var(--hcr-gold-dim);
  color: var(--hcr-gold);
}
.ca-btn-primary {
  background: linear-gradient(135deg, var(--hcr-gold), var(--hcr-gold-dim));
  color: #000;
  border-color: var(--hcr-gold);
  box-shadow: 0 4px 16px rgba(201,168,76,.3);
}
.ca-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,.45);
  color: #000;
}
.ca-btn-outline {
  background: transparent;
  color: var(--hcr-gold);
  border-color: var(--hcr-gold-dim);
}
.ca-btn-outline:hover {
  background: rgba(201,168,76,.1);
  color: var(--hcr-gold-light);
}
.ca-btn-ghost-best {
  background: rgba(41,168,112,.12);
  color: var(--hcr-green);
  border-color: var(--hcr-green-dim);
  font-size: .88rem;
}
.ca-btn-ghost-best:hover {
  background: rgba(41,168,112,.2);
  color: #fff;
  border-color: var(--hcr-green);
}

/* ---- TRUST BADGES ---- */
.hcr-trust-strip {
  background: var(--hcr-surface);
  border-top: 1px solid var(--hcr-border);
  border-bottom: 1px solid var(--hcr-border);
  padding: 18px 0;
}
.hcr-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.hcr-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--hcr-text-muted);
  font-weight: 500;
}
.hcr-trust-item .icon { font-size: 1.2rem; }

/* ---- HOW WE REVIEW ---- */
.hcr-review-method {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 10px;
}
.ca-method-card {
  background: var(--hcr-surface);
  border: 1px solid var(--hcr-border);
  border-radius: var(--hcr-radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.ca-method-card:hover {
  border-color: var(--hcr-gold-dim);
  transform: translateY(-3px);
}
.ca-method-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.ca-method-title {
  font-family: var(--hcr-font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hcr-white);
  margin-bottom: 8px;
}
.ca-method-desc {
  font-size: .83rem;
  color: var(--hcr-text-muted);
  line-height: 1.55;
}

/* ---- FAQ ---- */
.hcr-faq-list { display: flex; flex-direction: column; gap: 10px; }
.hcr-faq-item {
  background: var(--hcr-surface);
  border: 1px solid var(--hcr-border);
  border-radius: var(--hcr-radius);
  overflow: hidden;
}
.hcr-faq-q {
  padding: 16px 20px;
  font-family: var(--hcr-font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--hcr-white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.hcr-faq-q::after {
  content: '♦';
  color: var(--hcr-gold);
  font-size: .8rem;
  transition: transform .3s;
}
.hcr-faq-item.open .hcr-faq-q::after { transform: rotate(90deg); }
.hcr-faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: .9rem;
  color: var(--hcr-text-muted);
  line-height: 1.7;
}
.hcr-faq-item.open .hcr-faq-a {
  max-height: 300px;
  padding: 0 20px 16px;
}

/* ---- FOOTER ---- */
.hcr-footer {
  background: var(--hcr-surface);
  border-top: 1px solid var(--hcr-border);
  padding: 50px 0 30px;
  margin-top: 60px;
}
.hcr-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.hcr-footer-brand p {
  font-size: .87rem;
  color: var(--hcr-text-muted);
  line-height: 1.7;
  margin-top: 12px;
}
.hcr-footer-col h4 {
  font-family: var(--hcr-font);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--hcr-gold);
  margin-bottom: 14px;
}
.hcr-footer-col ul { list-style: none; }
.hcr-footer-col ul li { margin-bottom: 8px; }
.hcr-footer-col ul a {
  font-size: .87rem;
  color: var(--hcr-text-muted);
  transition: color .2s;
}
.hcr-footer-col ul a:hover { color: var(--hcr-gold); }
.hcr-footer-bottom {
  border-top: 1px solid var(--hcr-border);
  max-width: 1140px;
  margin: 30px auto 0;
  padding: 20px 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.hcr-footer-legal {
  font-size: .78rem;
  color: var(--hcr-text-muted);
  line-height: 1.65;
  max-width: 700px;
}
.hcr-footer-copy {
  font-size: .78rem;
  color: var(--hcr-text-muted);
}

/* ---- REVIEW PAGE STYLES ---- */
.hcr-review-hero {
  background: linear-gradient(135deg, var(--hcr-surface) 0%, var(--hcr-surface2) 100%);
  border-bottom: 1px solid var(--hcr-border);
  padding: 50px 0;
}
.hcr-review-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: start;
}
.hcr-review-logo-box {
  width: 90px; height: 90px;
  background: var(--hcr-bg);
  border: 2px solid var(--hcr-border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
}
.hcr-review-logo-box.is-top {
  border-color: var(--hcr-gold);
  box-shadow: 0 0 20px rgba(201,168,76,.3);
  background: linear-gradient(135deg, #1a1c30, #0f1020);
}
.hcr-review-title-block h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 8px;
}
.hcr-review-excerpt {
  color: var(--hcr-text-muted);
  font-size: .95rem;
  max-width: 600px;
}
.hcr-review-score-box {
  background: var(--hcr-bg);
  border: 1px solid var(--hcr-border);
  border-radius: var(--hcr-radius-lg);
  padding: 20px 28px;
  text-align: center;
  min-width: 150px;
}
.hcr-review-score-box.is-top { border-color: var(--hcr-gold-dim); box-shadow: var(--hcr-glow); }
.hcr-big-score {
  font-family: var(--hcr-font);
  font-size: 3rem;
  font-weight: 800;
  color: var(--hcr-gold);
  line-height: 1;
}
.hcr-score-out { font-size: .9rem; color: var(--hcr-text-muted); margin-bottom: 8px; }
.hcr-review-stars { display: flex; justify-content: center; gap: 3px; margin-bottom: 4px; }
.hcr-review-stars svg { width: 18px; height: 18px; }

/* Review body */
.hcr-review-body { padding: 50px 0; }
.hcr-review-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: start;
}
.hcr-review-main > * + * { margin-top: 36px; }
.hcr-review-sidebar > * + * { margin-top: 20px; }

/* Info table */
.ca-info-table {
  width: 100%;
  border-collapse: collapse;
}
.ca-info-table tr:not(:last-child) { border-bottom: 1px solid var(--hcr-border); }
.ca-info-table td {
  padding: 12px 0;
  font-size: .9rem;
}
.ca-info-table td:first-child {
  color: var(--hcr-text-muted);
  width: 40%;
  font-weight: 500;
}
.ca-info-table td:last-child {
  color: var(--hcr-text);
  font-weight: 600;
}

/* Pros / Cons */
.ca-proscons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ca-pros-box, .ca-cons-box {
  background: var(--hcr-surface);
  border: 1px solid var(--hcr-border);
  border-radius: var(--hcr-radius-lg);
  padding: 20px;
}
.ca-pros-box { border-top: 3px solid var(--hcr-green); }
.ca-cons-box { border-top: 3px solid var(--hcr-red); }
.ca-procon-title {
  font-family: var(--hcr-font);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.ca-pros-box .ca-procon-title { color: var(--hcr-green); }
.ca-cons-box .ca-procon-title { color: var(--hcr-red); }
.ca-procon-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.ca-procon-list li {
  font-size: .88rem;
  color: var(--hcr-text);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.5;
}
.ca-procon-list li::before { flex-shrink: 0; margin-top: 1px; }
.ca-pros-box .ca-procon-list li::before { content: '✓'; color: var(--hcr-green); font-weight: 700; }
.ca-cons-box .ca-procon-list li::before { content: '✗'; color: var(--hcr-red); font-weight: 700; }

/* User reviews */
.ca-user-reviews { display: flex; flex-direction: column; gap: 14px; }
.ca-user-review-card {
  background: var(--hcr-surface);
  border: 1px solid var(--hcr-border);
  border-radius: var(--hcr-radius);
  padding: 18px;
}
.ca-review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}
.ca-reviewer-name {
  font-weight: 700;
  font-family: var(--hcr-font);
  font-size: .95rem;
  color: var(--hcr-white);
}
.ca-review-date { font-size: .78rem; color: var(--hcr-text-muted); }
.ca-review-text { font-size: .87rem; color: var(--hcr-text); line-height: 1.65; }

/* Sidebar card */
.hcr-sidebar-card {
  background: var(--hcr-surface);
  border: 1px solid var(--hcr-border);
  border-radius: var(--hcr-radius-lg);
  padding: 22px;
}
.hcr-sidebar-card.is-featured {
  border-color: var(--hcr-gold-dim);
  box-shadow: var(--hcr-glow);
  background: linear-gradient(135deg, #1a1c2e, #131525);
}
.hcr-sidebar-card-title {
  font-family: var(--hcr-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--hcr-gold);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.hcr-sidebar-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--hcr-border);
  font-size: .87rem;
}
.hcr-sidebar-stat:last-of-type { border-bottom: none; }
.hcr-sidebar-stat-label { color: var(--hcr-text-muted); }
.hcr-sidebar-stat-val { color: var(--hcr-text); font-weight: 600; }

/* Best casino CTA box */
.hcr-best-cta {
  background: linear-gradient(135deg, #1a2540 0%, #0f1928 100%);
  border: 1px solid var(--hcr-gold-dim);
  border-radius: var(--hcr-radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--hcr-glow);
}
.hcr-best-cta .crown { font-size: 2rem; margin-bottom: 8px; }
.hcr-best-cta h3 {
  font-size: 1.1rem;
  color: var(--hcr-gold-light);
  margin-bottom: 6px;
}
.hcr-best-cta p {
  font-size: .82rem;
  color: var(--hcr-text-muted);
  margin-bottom: 16px;
  line-height: 1.55;
}
.hcr-best-cta .ca-btn { width: 100%; }

/* Review content */
.hcr-content-block {
  background: var(--hcr-surface);
  border: 1px solid var(--hcr-border);
  border-radius: var(--hcr-radius-lg);
  padding: 28px;
}
.hcr-content-block h2, .hcr-content-block h3 {
  font-family: var(--hcr-font);
  margin-bottom: 12px;
}
.hcr-content-block h2 { font-size: 1.3rem; color: var(--hcr-gold-light); }
.hcr-content-block h3 { font-size: 1.1rem; color: var(--hcr-white); margin-top: 20px; }
.hcr-content-block p {
  font-size: .9rem;
  color: var(--hcr-text);
  line-height: 1.75;
  margin-bottom: 12px;
}

/* ---- BREADCRUMB ---- */
.hcr-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--hcr-text-muted);
  padding: 14px 0;
  flex-wrap: wrap;
}
.hcr-breadcrumb a { color: var(--hcr-text-muted); }
.hcr-breadcrumb a:hover { color: var(--hcr-gold); }
.hcr-breadcrumb span { color: var(--hcr-border); }

/* ---- MOBILE ---- */
@media (max-width: 900px) {
  .hcr-footer-grid { grid-template-columns: 1fr 1fr; }
  .hcr-review-grid { grid-template-columns: 1fr; }
  .hcr-review-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 700px) {
  .ca-casino-card {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    padding: 16px 18px;
    gap: 14px;
  }
  .ca-rank-col { width: 44px; }
  .ca-badge-rank { width: 38px; height: 38px; font-size: 1.05rem; }
  .ca-casino-name { font-size: 1.1rem; }
  .ca-params-row { gap: 6px 14px; margin-top: 8px; }
  .ca-param-item { font-size: .78rem; }
  .ca-score-num { font-size: 1.25rem; }
  .ca-action-col {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: stretch;
    flex-wrap: wrap;
    min-width: unset;
    gap: 8px;
  }
  .ca-action-col .ca-btn { flex: 1; min-width: 120px; }
  .hcr-review-header { grid-template-columns: 1fr; }
  .hcr-review-score-box { width: 100%; }
  .ca-proscons-grid { grid-template-columns: 1fr; }
  .hcr-footer-grid { grid-template-columns: 1fr; }
  .hcr-review-sidebar { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hcr-nav-links { display: none; }
  .hcr-hero-section { padding: 40px 16px 30px; }
  .ca-casino-card {
    padding: 12px 14px;
    gap: 10px;
  }
  .ca-rank-col { width: 36px; }
  .ca-badge-rank { width: 32px; height: 32px; font-size: .95rem; }
  .ca-casino-name { font-size: 1rem; }
  .ca-casino-meta { gap: 5px; margin-bottom: 4px; }
  .ca-badge-tag { font-size: .65rem; padding: 2px 6px; }
  .ca-score-row { gap: 10px; }
  .ca-score-num { font-size: 1.15rem; }
  .ca-stars svg { width: 13px; height: 13px; }
  .ca-params-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 10px;
    margin-top: 6px;
  }
  .ca-param-item { font-size: .74rem; gap: 3px; }
  .ca-param-icon { font-size: .8rem; }
  .ca-action-col { gap: 6px; }
  .ca-btn { padding: 9px 14px; font-size: .88rem; }
  .hcr-casino-list { gap: 10px; }
}

/* ---- UTILITY ---- */
.hcr-badge-new {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(201,168,76,.15);
  color: var(--hcr-gold);
  border: 1px solid var(--hcr-gold-dim);
}
.text-gold { color: var(--hcr-gold); }
.text-muted { color: var(--hcr-text-muted); }
.text-green { color: var(--hcr-green); }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.hidden { display: none; }
