/* =====================================================
   BitcoinCasino.kz — Main Stylesheet
   Theme: Light Clean Casino Affiliate (ice-fishing style)
   ===================================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-light: #e8f0fe;
  --blue-mid: #c7d7f8;
  --blue-pale: #f0f5ff;
  --accent-blue: #2563eb;
  --accent-blue-dark: #1d4ed8;
  --green: #16a34a;
  --green-light: #dcfce7;
  --orange: #ea580c;
  --orange-light: #ffedd5;
  --orange-cta: #f05a28;
  --orange-cta-hover: #dc4a18;
  --text-dark: #1e293b;
  --text-body: #374151;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: #e2e8f0;
  --border-card: #d1dded;
  --bg-page: #f0f5ff;
  --bg-white: #ffffff;
  --bg-section: #f8faff;
  --bg-section-alt: #eef4ff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-card: 0 4px 16px rgba(37,99,235,0.08), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-hover: 0 8px 24px rgba(37,99,235,0.15), 0 4px 12px rgba(0,0,0,0.08);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition: 0.2s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-page);
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 16px;
}

a { color: var(--accent-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-blue-dark); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font);
  line-height: 1.3;
  color: var(--text-dark);
  font-weight: 700;
}

img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #111827;
  border-bottom: 2px solid #1f2937;
  box-shadow: var(--shadow-sm);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: #f7931a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  font-weight: 900;
  flex-shrink: 0;
}

.logo-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.logo-kz { color: var(--accent-blue); }

/* Nav */
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition);
}

.main-nav a:hover { color: #fff; text-decoration: none; }

/* Recommended button */
.btn-rec {
  background: var(--orange-cta);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none !important;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.btn-rec:hover {
  background: var(--orange-cta-hover);
  transform: translateY(-1px);
  text-decoration: none !important;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #94a3b8;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #111827;
  border-top: 1px solid #1f2937;
  padding: 16px 20px;
  gap: 4px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
  border-bottom: 1px solid #1f2937;
}

.mobile-menu a:last-child { border-bottom: none; }

.btn-rec-mobile {
  background: var(--orange-cta) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  text-align: center;
  font-weight: 700 !important;
  border-bottom: none !important;
  margin-top: 8px;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #dbeafe 0%, #ede9fe 50%, #dcfce7 100%);
  padding: 40px 0 32px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero h1 {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.25;
}

.h1-year {
  color: var(--accent-blue);
}

.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.hero-inner {
  padding: 32px 0 24px;
}

.hero-inner h1 {
  font-size: 26px;
}

/* ===== TOP BANNER ===== */
.top-banner-wrap {
  background: var(--bg-section-alt);
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.top-banner-link {
  text-decoration: none !important;
  display: block;
}

.top-banner {
  background: var(--bg-white);
  border: 2px solid var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: box-shadow var(--transition), border-color var(--transition);
  flex-wrap: wrap;
}

.top-banner-link:hover .top-banner {
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-blue);
}

.tb-logo-wrap {
  width: 130px;
  height: 60px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.tb-logo {
  max-width: 106px;
  max-height: 46px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.tb-bonus {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}

.tb-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.tb-amount {
  font-size: 22px;
  font-weight: 900;
  color: var(--green);
  line-height: 1.1;
}

.tb-desc {
  flex: 1;
  font-size: 14px;
  color: var(--text-body);
  min-width: 160px;
}

.tb-btn {
  background: var(--orange-cta);
  color: #fff !important;
  padding: 13px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  display: inline-block;
  flex-shrink: 0;
  transition: background var(--transition);
}

.top-banner-link:hover .tb-btn {
  background: var(--orange-cta-hover);
}

/* ===== SECTIONS ===== */
.casinos-section {
  padding: 40px 0;
  background: var(--bg-section);
}

.casinos-section h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.section-lead {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 15px;
}

/* ===== CASINO LIST (ice-fishing style) ===== */
.casinos-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.casino-row {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  position: relative;
}

.casino-row:hover {
  box-shadow: var(--shadow-hover);
  border-color: #93c5fd;
  transform: translateY(-2px);
}

.casino-row.featured {
  border-color: var(--accent-blue);
  border-width: 2px;
}

.star-badge {
  display: inline-block;
  background: var(--accent-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 2;
}

.casino-row-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  flex-wrap: wrap;
}

.casino-row.featured .casino-row-inner {
  padding-top: 34px;
}

/* Logo block */
.casino-logo-wrap {
  width: 120px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.casino-logo {
  max-width: 106px;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.logo-text-fallback {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* Bonus block */
.casino-bonus {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 170px;
  flex-shrink: 0;
}

.bonus-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bonus-label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2'%3E%3Crect x='3' y='8' width='18' height='13' rx='2'/%3E%3Cpath d='M12 8V21M3 13h18'/%3E%3Cpath d='M7 8c-1-1-1.5-2-1-3.5C7 3 9 3 12 8c3-5 5-5 6-3.5.5 1.5 0 2.5-1 3.5'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}

.bonus-amount {
  font-size: 21px;
  font-weight: 900;
  color: var(--green);
  line-height: 1.1;
  display: block;
}

.promo-tag {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--green-light);
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-block;
  margin-top: 2px;
}

.promo-tag b {
  color: var(--green);
  font-weight: 700;
}

/* Description */
.casino-desc-short {
  flex: 1;
  font-size: 14px;
  color: var(--text-body);
  min-width: 140px;
}

/* CTA Button */
.btn-play {
  background: var(--orange-cta);
  color: #fff !important;
  padding: 13px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none !important;
  display: inline-block;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}

.btn-play:hover {
  background: var(--orange-cta-hover);
  transform: translateY(-1px);
  text-decoration: none !important;
}

/* ===== BONUS TYPES ===== */
.bonus-types-section {
  padding: 40px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bonus-types-section h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.bonus-types-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
}

.bonus-types-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.65;
}

.bonus-types-list li:last-child { border-bottom: none; }

.bonus-types-list li strong {
  color: var(--text-dark);
}

.bonus-types-section > .container > p {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== ARTICLE SECTIONS ===== */
.article-section {
  padding: 40px 0;
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
}

.article-section:nth-child(even) {
  background: var(--bg-white);
}

.article-section h2 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.article-section h3 {
  font-size: 17px;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-weight: 700;
}

.article-section p {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 14px;
  line-height: 1.75;
}

.article-section p:last-child { margin-bottom: 0; }

.article-list {
  list-style: disc;
  padding-left: 20px;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-list li {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.65;
}

/* Overview table */
.overview-table-wrap {
  overflow-x: auto;
  margin: 16px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.overview-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--bg-white);
  border: 1px solid var(--border);
}

.overview-table th {
  background: var(--bg-section-alt);
  color: var(--text-dark);
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--border);
  font-size: 13px;
}

.overview-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
}

.overview-table tr:last-child td { border-bottom: none; }

.overview-table tr:hover td { background: var(--blue-pale); }

/* Payment methods */
.payment-methods {
  background: var(--blue-pale);
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 20px;
}

.payment-methods h3 {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 12px;
}

.payment-methods ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.payment-methods li {
  font-size: 14px;
  color: var(--text-body);
  padding-left: 16px;
  position: relative;
}

.payment-methods li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: 700;
}

.payment-methods li strong {
  color: var(--text-dark);
}

/* ===== FAQ ===== */
.faq-section {
  padding: 40px 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.faq-section h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font);
  transition: color var(--transition);
}

.faq-q:hover { color: var(--accent-blue); }

.faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}

.faq-q[aria-expanded="true"]::after {
  transform: rotate(45deg);
  color: var(--accent-blue);
}

.faq-a {
  display: none;
  padding: 0 0 16px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
}

.faq-a.open { display: block; }

.faq-a p { margin: 0; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--text-dark);
  color: #94a3b8;
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-logo { margin-bottom: 16px; }

.footer-logo .logo-name { color: #f1f5f9; }

.site-footer p {
  font-size: 14px;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 16px;
}

.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge-18 {
  background: #dc2626;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}

.badge-crypto {
  background: #1d4ed8;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}

.badge-crypto.eth { background: #6366f1; }
.badge-crypto.usdt { background: #059669; }

.footer-links-col h4 {
  color: #f1f5f9;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-col a {
  color: #94a3b8;
  font-size: 14px;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links-col a:hover { color: #f1f5f9; text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}

.disclaimer {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 12px;
  line-height: 1.6;
}

.copyright {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

/* ===== INNER PAGES ===== */
.inner-article {
  max-width: 760px;
}

.inner-article h2 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
}

.inner-article h2:first-child { margin-top: 0; }

.inner-article p {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 14px;
  line-height: 1.75;
}

.inner-article ul.article-list {
  list-style: disc;
  padding-left: 20px;
  margin: 12px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inner-article ul.article-list li {
  font-size: 15px;
  color: var(--text-body);
}

.lead-text {
  font-size: 17px !important;
  font-weight: 500;
  color: var(--text-dark) !important;
  margin-bottom: 24px !important;
}

.last-updated {
  font-size: 13px !important;
  color: var(--text-light) !important;
  margin-bottom: 20px !important;
}

.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--accent-blue);
  text-decoration: none;
}

.warning-banner {
  background: #fef9c3;
  border: 1px solid #fde047;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 15px;
  color: #854d0e;
  margin-bottom: 24px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .container { max-width: 100%; }

  .hero h1 { font-size: 26px; }

  .top-banner {
    flex-wrap: wrap;
    gap: 14px;
  }

  .tb-desc { min-width: 100%; }

  .casino-row-inner {
    flex-wrap: wrap;
    gap: 14px;
    padding: 16px 18px;
  }

  .casino-desc-short { min-width: 100%; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 700px) {
  .main-nav { display: none; }
  .btn-rec { display: none; }
  .burger { display: flex; }

  .hero { padding: 28px 0 22px; }
  .hero h1 { font-size: 22px; }
  .hero-sub { font-size: 14px; }

  .casinos-section h2,
  .bonus-types-section h2,
  .article-section h2,
  .faq-section h2 { font-size: 19px; }

  .casino-logo-wrap { width: 100px; height: 44px; }
  .casino-logo { max-width: 86px; max-height: 36px; width: auto; height: auto; }

  .casino-bonus { min-width: 140px; }
  .bonus-amount { font-size: 18px; }

  .btn-play { width: 100%; text-align: center; padding: 13px 16px; }

  .tb-logo-wrap { width: 100px; height: 46px; }
  .tb-amount { font-size: 18px; }
  .tb-btn { width: 100%; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; }

  .overview-table th,
  .overview-table td { padding: 9px 12px; font-size: 13px; }
}

@media (max-width: 480px) {
  .casino-row-inner { padding: 14px 14px; }
  .hero h1 { font-size: 20px; }
}

/* ===== CASINO NUMBER BADGE ===== */
.casino-num {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 11px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.5px;
  z-index: 2;
}

/* ===== CASINO RATING ===== */
.casino-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 150px;
  flex-shrink: 0;
}

.casino-rating {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
}

.rating-score {
  font-size: 22px;
  font-weight: 900;
  color: var(--accent-blue);
  line-height: 1;
}

.rating-out {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: -4px;
  align-self: flex-end;
  padding-bottom: 2px;
}

.rating-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

.casino-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.casino-features li {
  font-size: 11px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  color: var(--text-body);
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 500;
}

/* ===== CASINO CTA BLOCK ===== */
.casino-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 160px;
  align-items: flex-end;
}

.casino-cta .casino-desc-short {
  text-align: right;
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== METHODOLOGY SECTION ===== */
.methodology-section {
  padding: 56px 0;
  background: var(--bg-section-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.methodology-section h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 32px;
  text-align: center;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.method-item {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.method-item:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.method-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
}

.method-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.method-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== RESPONSIVE: NEW ELEMENTS ===== */
@media (max-width: 768px) {
  .casino-meta { min-width: 100%; flex-direction: row; flex-wrap: wrap; }
  .casino-cta { align-items: flex-start; min-width: 100%; }
  .casino-cta .casino-desc-short { text-align: left; }
  .method-grid { grid-template-columns: 1fr; }
}

/* ===== CASINO REVIEW BLOCK ===== */
.casino-review {
  display: flex;
  gap: 32px;
  padding: 28px 28px 28px 28px;
  border-top: 1px solid var(--border);
  background: var(--bg-section);
  align-items: flex-start;
}

.casino-review-text {
  flex: 1;
  min-width: 0;
}

.casino-review-text p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 14px;
}

.casino-review-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 18px 0 8px;
}

.btn-review-cta {
  display: inline-block;
  margin-top: 8px;
  background: transparent;
  border: 2px solid var(--orange-cta);
  color: var(--orange-cta);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.btn-review-cta:hover {
  background: var(--orange-cta);
  color: #fff;
  text-decoration: none;
}

.casino-review-img {
  flex-shrink: 0;
  width: 380px;
}

.casino-review-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: block;
}

@media (max-width: 900px) {
  .casino-review {
    flex-direction: column-reverse;
    padding: 20px 16px;
    gap: 20px;
  }
  .casino-review-img {
    width: 100%;
  }
}

/* ===== REVIEW PAGES ===== */

/* "Read full review" link in casino card */
.btn-review-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}
.btn-review-link:hover { color: var(--accent-dark); text-decoration: underline; }

/* Review hero section */
.review-hero {
  padding: 40px 0 48px;
}
.review-hero-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.review-hero-logo {
  flex-shrink: 0;
}
.review-logo-wrap {
  width: 180px;
  height: 80px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.review-logo-img {
  max-width: 160px;
  max-height: 64px;
  object-fit: contain;
}
.logo-text-fallback-lg {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}
.review-hero-info {
  flex: 1;
  color: #fff;
}
.review-hero-info h1 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 16px;
  color: #fff;
  line-height: 1.3;
}
.review-rating-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-score-big {
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 6px 14px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.review-score-num {
  font-size: 28px;
  font-weight: 900;
  color: #4ade80;
  line-height: 1;
}
.review-score-denom {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.review-rating-label-big {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.review-bonus-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.review-bonus-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}
.review-bonus-amount {
  font-size: 22px;
  font-weight: 800;
  color: #4ade80;
}
.btn-play-hero {
  font-size: 16px;
  padding: 14px 32px;
}

/* Review body layout */
.review-body-section {
  padding: 48px 0 64px;
}
.review-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.review-main {
  min-width: 0;
}

/* Quick feature tags */
.review-features-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.review-feature-tag {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

/* Screenshot in review */
.review-screenshot {
  margin-bottom: 32px;
}

/* Article text in review */
.review-article-text h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent-light);
}
.review-article-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 24px 0 10px;
}
.review-article-text p {
  margin-bottom: 14px;
  line-height: 1.75;
  color: var(--text-body);
}
.review-article-text ul.article-list {
  margin: 12px 0 20px 0;
  padding-left: 0;
  list-style: none;
}
.review-article-text ul.article-list li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 14px;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
}
.review-article-text ul.article-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* Review table */
.review-table-wrap {
  margin: 20px 0 24px;
  overflow-x: auto;
}

/* Review CTA block */
.review-cta-block {
  margin-top: 40px;
  padding: 32px;
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  border: 2px solid var(--accent-light);
  text-align: center;
}
.review-cta-text {
  font-size: 16px;
  color: var(--text-body);
  margin-bottom: 16px;
}

/* Sidebar */
.review-sidebar {
  position: sticky;
  top: 90px;
}
.sidebar-widget {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
}
.sidebar-widget h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sidebar-casino-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sidebar-casino-item {
  display: flex;
  gap: 12px;
  align-items: center;
}
.sidebar-logo-wrap {
  width: 80px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 4px;
}
.sidebar-logo {
  max-width: 70px;
  max-height: 28px;
  object-fit: contain;
}
.logo-text-fallback-sm {
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}
.sidebar-info {
  flex: 1;
  min-width: 0;
}
.sidebar-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.sidebar-bonus {
  display: block;
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 6px;
}
.sidebar-actions {
  display: flex;
  gap: 6px;
}
.sidebar-btn-play {
  display: inline-block;
  background: var(--cta);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-decoration: none;
  transition: background var(--transition);
}
.sidebar-btn-play:hover { background: var(--cta-hover); }
.sidebar-btn-review {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-decoration: none;
  transition: all var(--transition);
}
.sidebar-btn-review:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.sidebar-all-link {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.sidebar-all-link:hover { text-decoration: underline; }
.sidebar-warning {
  border-color: #fbbf24;
  background: #fffbeb;
}
.sidebar-warning p {
  font-size: 12px;
  color: #78350f;
  margin: 0;
  line-height: 1.6;
}
.sidebar-warning a { color: #92400e; }

/* Breadcrumb light (on dark bg) */
.breadcrumb-light {
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.breadcrumb-light a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}
.breadcrumb-light a:hover { color: #fff; }
.breadcrumb-light span { color: rgba(255,255,255,0.6); }

/* Review responsive */
@media (max-width: 1024px) {
  .review-layout {
    grid-template-columns: 1fr;
  }
  .review-sidebar {
    position: static;
  }
  .sidebar-casino-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}
@media (max-width: 640px) {
  .review-hero-inner {
    flex-direction: column;
    gap: 20px;
  }
  .review-hero-info h1 { font-size: 20px; }
  .review-score-num { font-size: 22px; }
  .review-bonus-amount { font-size: 18px; }
  .sidebar-casino-list { grid-template-columns: 1fr; }
  .review-cta-block { padding: 20px 16px; }
}

/* ===== REVIEW PAGE — FULL STYLES ===== */

/* Layout */
.review-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
}

.review-main { min-width: 0; }
.review-section { background: var(--bg-page); }

/* Quick card */
.review-quick-card {
  display: flex;
  gap: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-card);
  flex-wrap: wrap;
}

.review-logo-block {
  width: 180px;
  height: 80px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.review-logo-img { width: 160px; height: 68px; object-fit: contain; }

.review-quick-info { flex: 1; min-width: 200px; }

.review-rating-big {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}

.rqb-score {
  font-size: 38px;
  font-weight: 900;
  color: var(--accent-blue);
  line-height: 1;
}

.rqb-out {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
}

.rqb-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  padding: 2px 10px;
  border-radius: 20px;
}

.review-info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: 14px;
}

.review-info-table td {
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.review-info-table td:first-child {
  color: var(--text-muted);
  width: 130px;
  font-weight: 500;
  padding-right: 12px;
}

.promo-highlight {
  background: var(--green-light);
  color: var(--green);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}

.btn-play-review {
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  font-size: 15px;
}

.review-disclaimer {
  font-size: 11px;
  color: var(--text-light);
  text-align: center;
  margin-top: 6px;
}

/* Screenshot */
.review-screenshot {
  margin-bottom: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.review-screenshot img { width: 100%; height: auto; display: block; }

/* Pros/Cons */
.review-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.review-pros, .review-cons {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 18px 20px;
  border: 1px solid var(--border);
}

.review-pros { border-left: 4px solid var(--green); }
.review-cons { border-left: 4px solid var(--orange); }

.review-pros h3, .review-cons h3 {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.review-pros ul, .review-cons ul { list-style: none; padding: 0; }

.review-pros li, .review-cons li {
  font-size: 13px;
  padding: 4px 0;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
}

.review-pros li:last-child, .review-cons li:last-child { border-bottom: none; }

/* Review text */
.review-text {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  border: 1px solid var(--border);
  margin-bottom: 28px;
  line-height: 1.8;
}

.review-text h2 {
  font-size: 20px;
  margin: 28px 0 12px;
  color: var(--text-dark);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.review-text h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }

.review-text p { font-size: 15px; color: var(--text-body); margin-bottom: 14px; }

.review-text strong { color: var(--text-dark); font-weight: 700; }

.review-list { list-style: none; padding: 0; margin: 10px 0 16px 0; }

.review-list li {
  font-size: 14px;
  padding: 6px 0 6px 18px;
  position: relative;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
}

.review-list li:last-child { border-bottom: none; }

.review-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: 700;
}

/* Bottom CTA */
.review-cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-pale) 100%);
  border: 2px solid var(--accent-blue);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.review-cta-bonus { display: flex; flex-direction: column; gap: 4px; }
.review-cta-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); font-weight: 600; }
.review-cta-amount { font-size: 26px; font-weight: 900; color: var(--accent-blue); line-height: 1; }
.review-cta-promo { font-size: 13px; color: var(--text-body); }
.review-cta-promo b { background: var(--green-light); color: var(--green); padding: 2px 8px; border-radius: 6px; }

/* Sidebar */
.review-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 80px;
}

/* Sidebar rating card */
.sidebar-rating-card {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.sidebar-rating-card h3 {
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 700;
}

.sidebar-score-big {
  font-size: 48px;
  font-weight: 900;
  color: var(--accent-blue);
  line-height: 1;
  margin-bottom: 16px;
}

.sidebar-score-big span {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Rating bars */
.rating-bars { display: flex; flex-direction: column; gap: 10px; margin-bottom: 4px; }

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.rating-bar-row span { width: 90px; flex-shrink: 0; font-weight: 500; }

.rating-bar {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-blue), var(--green));
  border-radius: 3px;
  transition: width 0.6s ease;
}

/* Sidebar other casinos */
.review-sidebar-casinos {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.review-sidebar-casinos h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.sidebar-casino-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.sidebar-casino-card:last-child { border-bottom: none; padding-bottom: 0; }

.sidebar-casino-logo {
  width: 100%;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sidebar-casino-logo img { width: 80px; height: 34px; object-fit: contain; }

.sidebar-casino-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-casino-info strong { font-size: 14px; color: var(--text-dark); }
.sidebar-bonus { font-size: 13px; color: var(--green); font-weight: 700; }
.sidebar-rating { font-size: 11px; color: var(--text-muted); }

.sidebar-casino-btns {
  display: flex;
  gap: 8px;
}

.sidebar-casino-btns .btn-play {
  flex: 1;
  text-align: center;
  padding: 8px 10px;
  font-size: 13px;
}

.sidebar-casino-btns .btn-review-link {
  flex: 1;
  text-align: center;
  padding: 8px 10px;
  font-size: 12px;
  border: 1px solid var(--accent-blue);
  border-radius: 50px;
  color: var(--accent-blue);
  font-weight: 600;
  white-space: nowrap;
}

/* btn-review-link в карточках главной */
.btn-review-link {
  display: inline-block;
  font-size: 13px;
  color: var(--accent-blue);
  font-weight: 600;
  text-decoration: none;
  margin-top: 4px;
}
.btn-review-link:hover { text-decoration: underline; }

/* Review FAQ */
.review-faq { background: var(--bg-section); }

/* Responsive review */
@media (max-width: 768px) {
  .review-layout {
    grid-template-columns: 1fr;
  }
  .review-sidebar {
    position: static;
    order: -1;
  }
  .review-quick-card { flex-direction: column; }
  .review-logo-block { width: 100%; height: 60px; }
  .review-pros-cons { grid-template-columns: 1fr; }
  .review-cta-block { flex-direction: column; text-align: center; }
  .review-text { padding: 20px 18px; }
  .rqb-score { font-size: 30px; }
  .review-cta-amount { font-size: 22px; }
}

/* ===== REVIEW LINK IN CARD ===== */
.btn-review-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-blue);
  text-decoration: none;
  padding: 6px 0;
  transition: color var(--transition);
}
.btn-review-link:hover { color: var(--accent-blue-dark); text-decoration: underline; }

/* ===== REVIEW PAGE — HERO ===== */
.hero-review {
  padding: 28px 0 24px;
  background: linear-gradient(135deg, #dbeafe 0%, #ede9fe 50%, #dcfce7 100%);
  border-bottom: 1px solid var(--border);
}

.breadcrumb-hero {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.breadcrumb-hero a { color: var(--accent-blue); }
.breadcrumb-hero span { color: var(--text-body); }

.review-hero-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.review-hero-logo {
  width: 180px;
  height: 78px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 8px;
}

.review-hero-logo-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.review-logo-fallback {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.review-hero-info { flex: 1; min-width: 200px; }

.review-hero-info h1 {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 900;
  margin-bottom: 8px;
}

.review-hero-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.review-hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-big-score {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.review-score-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--accent-blue);
  line-height: 1;
}

.review-score-of {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
  padding-bottom: 2px;
}

.review-score-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  padding: 3px 10px;
  border-radius: 20px;
}

/* ===== REVIEW FACTS ===== */
.review-facts-section {
  background: var(--bg-white);
  padding: 28px 0 24px;
  border-bottom: 1px solid var(--border);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.fact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.fact-icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
}

.fact-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fact-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fact-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

.fact-value.promo-highlight {
  color: var(--green);
  font-size: 15px;
  letter-spacing: 1px;
}

.review-cta-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-play-big {
  padding: 15px 32px;
  font-size: 16px;
}

.cta-promo-note {
  font-size: 13px;
  color: var(--text-muted);
}

.cta-promo-note strong {
  color: var(--green);
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* ===== REVIEW SCREENSHOT ===== */
.review-screen-section {
  padding: 24px 0;
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
}

.review-screenshot {
  width: 100%;
  max-width: 860px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  display: block;
  margin: 0 auto;
}

/* ===== REVIEW ARTICLE ===== */
.review-article .review-body h3 {
  font-size: 17px;
  margin-top: 22px;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-weight: 700;
}

.review-article .review-body p {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 14px;
  line-height: 1.8;
}

.review-feature-list {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.review-feature-list li {
  padding: 10px 14px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

.review-feature-list li strong { color: var(--text-dark); }

/* ===== PROS & CONS ===== */
.pros-cons-section {
  padding: 40px 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.pros-cons-section h2 {
  font-size: 22px;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pros-block, .cons-block {
  border-radius: var(--radius);
  padding: 20px 22px;
}

.pros-block {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.cons-block {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.pros-title {
  font-size: 15px;
  font-weight: 700;
  color: #15803d;
  margin-bottom: 14px;
}

.cons-title {
  font-size: 15px;
  font-weight: 700;
  color: #b91c1c;
  margin-bottom: 14px;
}

.pros-list, .cons-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pros-list li {
  font-size: 14px;
  color: #166534;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.pros-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #16a34a;
}

.cons-list li {
  font-size: 14px;
  color: #991b1b;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.cons-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #dc2626;
}

/* ===== FINAL CTA SECTION ===== */
.review-final-cta {
  padding: 40px 0;
  background: var(--bg-section-alt);
  border-bottom: 1px solid var(--border);
}

.final-cta-box {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  background: var(--bg-white);
  border: 2px solid var(--accent-blue);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  flex-wrap: wrap;
}

.final-cta-logo {
  width: 140px;
  height: 60px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.final-cta-info {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.final-cta-bonus {
  font-size: 22px;
  font-weight: 900;
  color: var(--green);
}

.final-cta-promo {
  font-size: 13px;
  color: var(--text-muted);
}

.final-cta-promo strong {
  color: var(--green);
  font-size: 14px;
  letter-spacing: 0.5px;
}

.final-cta-rating {
  font-size: 13px;
  color: var(--text-muted);
}

.final-cta-rating strong { color: var(--text-dark); }

.final-cta-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
}

/* ===== OTHER CASINOS ===== */
.other-casinos-section {
  padding: 40px 0;
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
}

.other-casinos-section h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.other-casinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.other-casino-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  text-decoration: none !important;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  box-shadow: var(--shadow-sm);
}

.other-casino-card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  text-decoration: none !important;
}

.other-casino-logo {
  width: 70px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.oc-fallback {
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.other-casino-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.other-casino-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

.other-casino-bonus {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
}

.other-casino-rating {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== REVIEW RESPONSIVE ===== */
@media (max-width: 640px) {
  .review-hero-inner { gap: 16px; }
  .review-hero-logo { width: 140px; height: 60px; }
  .review-score-num { font-size: 28px; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .final-cta-box { gap: 16px; }
  .final-cta-logo { width: 110px; height: 48px; }
  .final-cta-bonus { font-size: 18px; }
  .btn-play-big { width: 100%; text-align: center; }
  .other-casinos-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .facts-grid { grid-template-columns: 1fr; }
  .other-casinos-grid { grid-template-columns: 1fr; }
  .review-hero-logo { width: 120px; height: 52px; }
}

/* ===== SITE LOGO IMAGE ===== */
.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  background: none;
  border-radius: 0;
  padding: 0;
  /* тень чтобы белый текст "Casino" читался на светлом фоне */
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.35));
}

.footer-logo-img {
  height: 48px;
  padding: 0;
  background: none;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.35));
}
