/* ========================================
   CryptoGambling.best - Main Stylesheet
   Dark Premium Crypto Casino Review Theme
   ======================================== */

:root {
  --bg-primary: #0a0e17;
  --bg-secondary: #111827;
  --bg-card: #1a2235;
  --bg-card-hover: #1f2a42;
  --accent-gold: #f0b90b;
  --accent-gold-dim: #c99a08;
  --accent-green: #00c853;
  --accent-red: #ff4757;
  --accent-blue: #3b82f6;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: #1e293b;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { color: var(--text-primary); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
a { color: var(--accent-gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-gold-dim); }
p { color: var(--text-secondary); }

/* ---- Container ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---- Header ---- */
.site-header {
  background: rgba(10, 14, 23, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
    background-color: var(--bg-primary) !important;
  padding: 0 20px;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-gold), #fbbf24);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.logo-text { display: inline; color: #f8fafc !important; }
.logo-accent { color: var(--accent-gold) !important; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent-gold); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
}
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(240,185,11,0.06) 0%, transparent 60%);
}
.hero-badge {
  display: inline-block;
  background: rgba(240, 185, 11, 0.1);
  border: 1px solid rgba(240, 185, 11, 0.3);
  color: var(--accent-gold);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero h1 { margin-bottom: 16px; }
.hero p { font-size: 1.125rem; max-width: 600px; margin: 0 auto 40px; }
.search-bar {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  transition: var(--transition);
}
.search-bar:focus-within {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(240,185,11,0.1);
}
.search-bar input {
  flex: 1;
  background: none;
  border: none;
  padding: 16px 24px;
  color: var(--text-primary);
  font-size: 1rem;
  outline: none;
}
.search-bar input::placeholder { color: var(--text-muted); }
.search-bar button {
  background: var(--accent-gold);
  border: none;
  padding: 12px 28px;
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}
.search-bar button:hover { background: var(--accent-gold-dim); }

/* ---- Ranking Table ---- */
.section { padding: 60px 0; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.section-header h2 { display: flex; align-items: center; gap: 12px; }
.section-header h2::before {
  content: '';
  width: 4px;
  height: 28px;
  background: var(--accent-gold);
  border-radius: 2px;
}
.ranking-table-wrap {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.ranking-table { width: 100%; border-collapse: collapse; }
.ranking-table thead th {
  background: var(--bg-secondary);
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.ranking-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.ranking-table tbody tr:last-child { border-bottom: none; }
.ranking-table tbody tr:hover { background: rgba(240,185,11,0.04); }
.ranking-table td { padding: 16px; vertical-align: middle; }
.rank-cell {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-muted);
  width: 60px;
  text-align: center;
  vertical-align: middle;
  line-height: 44px;
}
.rank-cell > span {
  display: inline;
  vertical-align: middle;
}
  align-items: center;
  justify-content: center;
}
.rating-cell {
  width: 100px;
  text-align: center;
}
.rank-cell.top-3 { color: var(--accent-gold); }
.rank-cell.gold { color: #f59e0b; }
.rank-cell.silver { color: #94a3b8; }
.rank-cell.bronze { color: #cd7f32; }
.casino-cell {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  min-width: 200px;
  justify-content: flex-start;
}
.casino-logo {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.casino-name { font-weight: 600; font-size: 0.95rem; }
.casino-name small { display: block; color: var(--text-muted); font-size: 0.8rem; font-weight: 400; }
.rating-cell .rating-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(0,200,83,0.1);
  color: var(--accent-green);
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 80px;
  text-align: center;
}
.bonus-cell { color: var(--text-secondary); font-size: 0.85rem; max-width: 200px; }
.bonus-cell strong { color: var(--accent-gold); font-size: 0.85rem; display: block; }
.pros-cell, .cons-cell { font-size: 0.8rem; }
.pros-cell li, .cons-cell li { list-style: none; padding: 2px 0; }
.pros-cell li::before { content: '+ '; color: var(--accent-green); font-weight: 700; }
.cons-cell li::before { content: '− '; color: var(--accent-red); font-weight: 700; }
.play-btn {
  display: inline-block;
  background: var(--accent-gold);
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  white-space: nowrap;
}
.play-btn:hover {
  background: var(--accent-gold-dim);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(240,185,11,0.3);
}
.review-link {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-decoration: underline;
  margin-top: 4px;
  display: block;
}

/* ---- Feature Cards ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: rgba(240,185,11,0.3);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(240,185,11,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.feature-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.feature-card p { font-size: 0.9rem; }

/* ---- Casino Review ---- */
.review-hero {
  padding: 60px 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.review-logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  object-fit: cover;
  border: 2px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.casino-logo-img {
  height: 80px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  border-radius: 12px;
  flex-shrink: 0;
}
.review-title-area h1 { font-size: 2rem; margin-bottom: 8px; }
.review-title-area p { color: var(--text-muted); }
.review-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.meta-item .badge {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}
.badge-green { background: rgba(0,200,83,0.1); color: var(--accent-green); }
.badge-gold { background: rgba(240,185,11,0.1); color: var(--accent-gold); }
.badge-red { background: rgba(255,71,87,0.1); color: var(--accent-red); }
.badge-blue { background: rgba(59,130,246,0.1); color: var(--accent-blue); }

/* ---- Pros/Cons ---- */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px 0;
}
.pros-box, .cons-box {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}
.pros-box { border-top: 3px solid var(--accent-green); }
.cons-box { border-top: 3px solid var(--accent-red); }
.pros-box h3 { color: var(--accent-green); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.cons-box h3 { color: var(--accent-red); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.pros-box ul, .cons-box ul { list-style: none; }
.pros-box li, .cons-box li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.pros-box li:last-child, .cons-box li:last-child { border-bottom: none; }

/* ---- Bonus Box ---- */
.bonus-box {
  background: linear-gradient(135deg, rgba(240,185,11,0.1), rgba(240,185,11,0.03));
  border: 1px solid rgba(240,185,11,0.3);
  border-radius: var(--radius);
  padding: 32px;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}
.bonus-box::before {
  content: '🎁';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 80px;
  opacity: 0.1;
}
.bonus-box h3 { color: var(--accent-gold); margin-bottom: 16px; font-size: 1.3rem; }
.bonus-item {
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.bonus-item:last-child { margin-bottom: 0; }
.bonus-label { font-size: 0.85rem; color: var(--text-muted); }
.bonus-value { font-weight: 700; color: var(--accent-gold); font-size: 1rem; }

/* ---- Info Grid ---- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.info-card .label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.info-card .value { font-weight: 600; font-size: 0.95rem; }

/* ---- Content ---- */
.content-body {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 40px;
  margin: 32px 0;
  font-size: 1rem;
}
.content-body h2 { margin: 32px 0 16px; font-size: 1.5rem; }
.content-body h2:first-child { margin-top: 0; }
.content-body p { margin-bottom: 16px; }
.content-body ul { margin: 16px 0 16px 24px; }
.content-body li { color: var(--text-secondary); margin-bottom: 8px; }
.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.9rem;
}
.content-body th, .content-body td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  text-align: left;
}
.content-body th { background: var(--bg-secondary); font-weight: 600; color: var(--text-primary); }
.content-body tr:nth-child(even) { background: rgba(255,255,255,0.02); }

/* ---- CTA ---- */
.cta-section {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  margin: 32px 0;
}
.cta-section h2 { margin-bottom: 12px; }
.cta-section p { max-width: 500px; margin: 0 auto 24px; }

/* ---- Footer ---- */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p { font-size: 0.9rem; margin-top: 12px; max-width: 300px; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-secondary); font-size: 0.9rem; }
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.disclaimer-text {
  background: rgba(255,71,87,0.05);
  border: 1px solid rgba(255,71,87,0.2);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  /* Header — sticky, consistent on all pages */
  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000;
    background-color: var(--bg-primary) !important;
    height: 60px;
  }
  .header-inner {
    height: 60px;
    padding: 0 16px;
  }
  .logo {
    font-size: 1.15rem;
    gap: 0;
  }
  .logo img {
    height: 28px !important;
    width: auto;
  }
  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin-left: auto;
  }
  .mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    margin: 4px 0;
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    gap: 0;
    flex-direction: column;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links a:hover, .nav-links a.active { color: var(--accent-gold); }
  .hero { padding: 40px 0 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .content-body { padding: 24px; }
  .cta-section { padding: 32px 24px; }
  /* Review page mobile */
  .review-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }
  .review-header .casino-logo-img {
    height: 56px !important;
    max-width: 140px !important;
    width: auto !important;
  }
  .review-title-area {
    width: 100% !important;
  }
  .review-title-area h1 {
    font-size: 1.4rem !important;
  }
  .review-meta {
    gap: 8px !important;
  }
  .rating-badge, .meta-badge {
    font-size: 0.75rem !important;
    padding: 4px 8px !important;
  }
  .welcome-box {
    padding: 16px !important;
  }
  .welcome-bonus {
    font-size: 1.1rem !important;
  }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.75rem; }
}

/* ============================================
   MOBILE CARD VIEW (shown <= 768px)
   ============================================ */
.casino-cards-view {
  display: none;
}

.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
}

.casino-card.top-3-card {
  border: 1px solid rgba(240, 185, 11, 0.3);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(240, 185, 11, 0.04) 100%);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.card-rank {
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 28px;
}

.card-title {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-bonus {
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .casino-table-view {
    display: none;
  }
  .casino-cards-view {
    display: block;
  }
  .section-header h2 {
    font-size: 1.5rem;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .casino-card {
    padding: 16px;
  }
  .card-header {
    gap: 10px;
  }
  .card-logo {
    width: 40px !important;
    height: 40px !important;
  }
}



/* ---- Ranking Table ---- */
.ranking-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ranking-table {
  width: 100%;
  border-collapse: collapse;
}

.ranking-table thead tr {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.ranking-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  white-space: nowrap;
}
.ranking-table th:nth-child(3) { width: 100px; text-align: center; }
.ranking-table th:nth-child(4) { width: 200px; }
.ranking-table th:nth-child(5) { min-width: 160px; }

.ranking-table th:first-child { width: 50px; text-align: center; }
.ranking-table th:last-child { width: 90px; text-align: center; }

.ranking-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.ranking-table tbody tr:last-child { border-bottom: none; }
.ranking-table tbody tr:hover { background: rgba(240,185,11,0.04); }

.ranking-table td {
  padding: 14px 16px;
  vertical-align: middle;
}

.rank-cell { text-align: center; vertical-align: middle; }
.rank-cell span {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-muted);
  display: inline;
  vertical-align: middle;
}
.rank-cell span.gold { color: #f0b90b; }
.rank-cell span.silver { color: #c0c0c0; }
.rank-cell span.bronze { color: #cd7f32; }
.top-3 td { border-left: 3px solid var(--accent-gold); }

.casino-cell {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.casino-logo {
  
  height: 78px;
  border-radius: 8px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  overflow: hidden;
}

.casino-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(0, 200, 83, 0.1);
  color: var(--accent-green);
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
}

.bonus-cell { max-width: 220px; }
.bonus-cell strong {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent-gold);
  line-height: 1.3;
  margin-bottom: 2px;
}

.pros-cell ul {
  list-style: none;
  padding: 0;
  margin: 0 0 6px 0;
}

.pros-cell li {
  font-size: 0.78rem;
  color: var(--text-secondary);
  padding-left: 12px;
  position: relative;
  margin-bottom: 3px;
}

.pros-cell li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 700;
}

.pros-cell .review-link {
  font-size: 0.78rem;
  color: var(--accent-gold);
  text-decoration: none;
  white-space: nowrap;
}

.play-btn {
  background: var(--accent-gold);
  color: #000;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  white-space: nowrap;
}

.play-btn:hover {
  background: var(--accent-gold-dim);
  color: #f0b90b;
}

.ranking-desktop { display: block; }

/* ---- Blog Card Desktop ---- */
.blog-card {
  padding: 24px;
  border-radius: 12px;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.blog-card h2 {
  font-size: clamp(0.95rem, 1.5vw, 1.2rem) !important;
  line-height: 1.35 !important;
  margin-bottom: 8px !important;
}
.blog-card p {
  font-size: 0.85rem;
  line-height: 1.55;
}
.blog-card-category {
  font-size: 0.7rem;
}

/* ---- Mobile Fixed Header Body Offset ---- */

/* ---- Blog Grid + Card Mobile ---- */
@media (max-width: 768px) {
  .blog-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 24px 16px !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box;
  }
  .blog-hero {
    padding: 40px 0 !important;
  }
  .blog-hero h1 {
    font-size: 1.6rem !important;
  }
  .blog-card {
    padding: 16px !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
  .blog-card h2 {
    font-size: 1rem !important;
    line-height: 1.3 !important;
  }
  .blog-card p {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
  }
  .blog-card-category {
    font-size: 0.6rem !important;
  }
  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000;
    background-color: var(--bg-primary) !important;
    height: 60px;
  }
  body {
    padding-top: 60px !important;
    box-sizing: border-box;
  }
}


/* ---- Blog Post Content Classes ---- */
.post-body .casino-review { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 1.5rem; margin: 1.5rem 0; }
.post-body .casino-review img.casino-screenshot { width: 100%; max-height: 240px; object-fit: cover; border-radius: 6px; margin-bottom: 1.25rem; display: block; background: #0d1220; }
.post-body .casino-review p { margin: 0.6rem 0; color: var(--text-secondary); line-height: 1.65; }
.post-body .casino-review strong { color: var(--text-primary); }
.key-takeaways { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 1.5rem; margin: 2rem 0; }
.key-takeaways-label { display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--accent-gold); margin-bottom: 12px; }
.key-takeaways ul { margin: 0 0 0 20px; }
.key-takeaways li { line-height: 1.7; margin-bottom: 6px; }
.hook { font-size: 1.15rem; color: var(--text-primary); line-height: 1.7; margin-bottom: 24px; font-weight: 500; }
.bridge { font-size: 0.95rem; color: var(--text-muted); font-style: italic; line-height: 1.7; margin: 24px 0; }
.faq-section { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.faq-section h2 { font-size: 1.4rem; margin-bottom: 1.5rem; }
.faq-item { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.faq-item h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); }
.faq-item p { margin: 0; color: var(--text-secondary); line-height: 1.7; }


/* Tools Dropdown - click to toggle */
.nav-dropdown{position:relative;display:inline-block}
.nav-dropdown>a{cursor:pointer}
.nav-dropdown-menu{display:none;position:absolute;top:calc(100% + 4px);left:0;min-width:220px;background:var(--bg-card);border:1px solid var(--border);border-radius:10px;padding:6px;z-index:1000;box-shadow:0 8px 24px rgba(0,0,0,.4)}
.nav-dropdown.open .nav-dropdown-menu{display:block}
.nav-dropdown-menu a{display:block;padding:10px 14px;border-radius:7px;font-size:.85rem;color:#94a2b3;text-decoration:none;transition:all .15s;font-weight:500}
.nav-dropdown-menu a:hover{background:rgba(251,191,36,.08);color:#f0b90b}


/* ===== REVIEW PAGES ===== */
.review-hero {
  background: linear-gradient(135deg, rgba(240,185,11,.06), rgba(240,185,11,.02));
  border-bottom: 1px solid rgba(240,185,11,.12);
  padding: 32px 0;
}
.score-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  margin-top: 20px;
}
.score-section h3 {
  font-size: .95rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #f7f4ed;
}
.info-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 16px 0;
}
.info-chip {
  text-align: center;
}
.info-chip .val {
  font-size: .9rem;
  font-weight: 800;
  color: #f7f4ed;
}
.info-chip .lbl {
  font-size: .65rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.score-bar-wrap {
  margin-bottom: 12px;
}


/* ===== BLOG POST PAGES ===== */
.post-hero {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}
.post-hero .container { max-width: 800px; margin: 0 auto; }
.post-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  margin-bottom: 14px;
  padding: 3px 10px;
  border: 1px solid var(--accent-gold);
  border-radius: 100px;
}
.post-hero h1 { font-size: clamp(1.8rem, 5vw, 2.6rem); line-height: 1.2; margin-bottom: 16px; }
.post-meta { display: flex; align-items: center; gap: 16px; color: var(--text-muted); font-size: 0.82rem; flex-wrap: wrap; }
.post-body { max-width: 800px; margin: 0 auto; padding: 48px 0; }
.post-body h2 { font-size: 1.5rem; margin: 40px 0 16px; }
.post-body h3 { font-size: 1.15rem; margin: 28px 0 12px; }
.post-body p { line-height: 1.8; margin-bottom: 16px; color: var(--text-secondary); }
.post-body ul, .post-body ol { margin: 0 0 20px 24px; color: var(--text-secondary); }
.post-body li { line-height: 1.7; margin-bottom: 8px; }
.post-body a { color: var(--accent-gold); text-decoration: none; }
.post-body a:hover { text-decoration: underline; }
.post-body strong { color: var(--text-primary); }
.post-cta { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 28px; margin: 36px 0; text-align: center; }
.post-cta h3 { margin: 0 0 10px; }

/* ============================================
   PAGE-SPECIFIC STYLES
   (moved from individual page inline <style> blocks)
   ============================================ */

/* ---- Homepage: Best-For Grid (.bfc-*) ---- */
.best-for-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.bfc-card{flex:0 0 auto;padding:18px 18px 60px;border-radius:16px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);text-decoration:none;transition:all .2s;display:flex;flex-direction:column;gap:10px;position:relative}
.bfc-card:hover{transform:translateY(-3px);border-color:rgba(251,191,36,.4);background:rgba(251,191,36,.06);box-shadow:0 8px 24px rgba(0,0,0,.3)}
.bfc-top{background:linear-gradient(145deg,rgba(251,191,36,.12),rgba(251,191,36,.04));border-color:rgba(251,191,36,.35)}
.bfc-card-header{display:flex;align-items:center;justify-content:space-between;gap:8px}.bfc-card-link{position:absolute;top:0;left:0;right:0;bottom:0;border-radius:16px;z-index:1}
.bfc-logo{width:42px;height:42px;object-fit:contain;border-radius:10px;flex-shrink:0}
.bfc-badge{font-size:.6rem;letter-spacing:.08em;text-transform:uppercase;color:#c7a961;background:rgba(251,191,36,.1);border:1px solid rgba(251,191,36,.2);padding:3px 7px;border-radius:6px;white-space:nowrap}
.bfc-name{font-size:1rem;font-weight:800;color:#f7f4ed}
.bfc-stats{display:flex;flex-direction:column;gap:5px}
.bfc-stat{display:flex;justify-content:space-between;align-items:center}
.bfc-stat-label{font-size:.72rem;color:#6b7280}
.bfc-stat-value{font-size:.78rem;font-weight:700;color:#f7f4ed}
.bfc-play-btn{background:linear-gradient(135deg,#f0b90b,#fbbf24);color:#0b0b12;font-weight:800;font-size:.8rem;padding:8px 14px;border-radius:8px;text-align:center;margin-top:auto!important;text-decoration:none;display:block;position:absolute;bottom:14px;left:14px;right:14px;z-index:2}
.bfc-card:hover .bfc-play-btn{background:linear-gradient(135deg,#fbbf24,#f0b90b)}
.rank-num{font-weight:900;font-size:.9rem;color:#6b7280}
.rank-gold .rank-num{color:#ffd700}
.rank-silver .rank-num{color:#c0c0c0}
.rank-bronze .rank-num{color:#cd7f32}
.kyc-full{background:rgba(52,211,153,.1);color:#34d399;border:1px solid rgba(52,211,153,.18)}
.kyc-partial{background:rgba(251,191,36,.08);color:#fbbf24;border:1px solid rgba(251,191,36,.18)}
.casino-row:hover{background:rgba(251,191,36,.04)}
.score-factors{display:flex;gap:8px;flex-wrap:wrap}
.fp{display:flex;align-items:center;gap:5px;font-size:.72rem;color:#6b7280;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06);border-radius:999px;padding:3px 9px}
.fpp{width:7px;height:7px;border-radius:50%}
@media(max-width:900px){.best-for-grid{grid-template-columns:repeat(2,1fr)!important}}@media(max-width:500px){.best-for-grid{grid-template-columns:1fr!important}.bfc-card{padding:14px 14px 60px!important}.bfc-logo{width:36px;height:36px}.bfc-name{font-size:.9rem}}@media(max-width:640px){.filter-bar{gap:8px}.sort-wrap{width:100%}.ranking-desktop{display:none!important}.ranking-mobile-cards{display:flex!important;flex-direction:column!important;gap:10px!important}}

/* ---- Mobile Cards (homepage ranking) ---- */
.mobile-card{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:12px;padding:14px;display:flex;flex-direction:column;gap:8px}
.mobile-card-header{display:flex;align-items:center;gap:8px}
.mobile-rank{font-weight:900;font-size:.85rem;color:#f0b90b;min-width:20px}
.mobile-name{font-weight:800;font-size:.95rem;color:#f7f4ed;flex:1}
.mobile-score{font-weight:700;font-size:.8rem;color:#f0b90b;white-space:nowrap}
.mobile-tags{display:flex;flex-wrap:wrap;gap:4px}
.mobile-tag{font-size:.6rem;padding:2px 6px;border-radius:4px;background:rgba(251,191,36,.1);color:#c7a961;border:1px solid rgba(251,191,36,.2)}
.mobile-facts{display:grid;grid-template-columns:1fr 1fr;gap:6px}
.mobile-fact{display:flex;flex-direction:column;gap:1px}
.mobile-fact-label{font-size:.62rem;color:#6b7280}
.mobile-fact-val{font-size:.72rem;font-weight:600;color:#f7f4ed}
.mobile-welcome{font-size:.72rem;font-weight:600;color:#f7f4ed;background:rgba(251,191,36,.06);border:1px solid rgba(251,191,36,.15);border-radius:6px;padding:6px 8px}
.mobile-actions{display:flex;gap:6px;margin-top:4px}
.mobile-review-btn{flex:1;text-align:center;padding:7px 10px;border-radius:7px;font-size:.72rem;font-weight:700;border:1px solid rgba(255,255,255,.1);color:#98a2b3;text-decoration:none;background:rgba(255,255,255,.04)}
.mobile-play-btn{flex:1;text-align:center;padding:7px 10px;border-radius:7px;font-size:.72rem;font-weight:800;background:linear-gradient(135deg,#f0b90b,#fbbf24);color:#0b0b12;text-decoration:none}

/* ---- Bonuses Page ---- */
body{background:var(--bg-primary);color:var(--text-primary);font-family:'Inter',sans-serif}
.container{max-width:1100px;margin:0 auto;padding:0 20px}
.page-header{text-align:center;padding:48px 0 32px;border-bottom:1px solid var(--border)}
.page-header h1{font-size:2.2rem;font-weight:900;margin-bottom:12px;background:linear-gradient(135deg,#f0b90b,#fbbf24);-webkit-background-clip:text;-webkit-text-fill-color:transparent}
.page-header p{font-size:1rem;color:#94a3b8;max-width:600px;margin:0 auto}
.bonus-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:16px;padding:32px 0}
.bonus-card{background:var(--bg-card);border:1px solid var(--border);border-radius:16px;padding:20px;transition:all .2s;position:relative}
.bonus-card.top{border-color:rgba(240,185,11,.35);background:linear-gradient(145deg,var(--bg-card),rgba(240,185,11,.04))}
.bonus-card:hover{transform:translateY(-2px);border-color:rgba(240,185,11,.4);box-shadow:0 8px 24px rgba(0,0,0,.3)}
.bonus-rank{position:absolute;top:-1px;left:20px;background:linear-gradient(135deg,#f0b90b,#fbbf24);color:#0b0b12;font-size:.65rem;font-weight:800;padding:3px 10px;border-radius:0 0 8px 8px}
.bonus-logo-wrap{width:48px;height:48px;background:var(--bg-secondary);border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:12px;overflow:hidden}
.bonus-logo-img{width:100%;height:100%;object-fit:contain;padding:4px}
.bonus-name{font-size:1.1rem;font-weight:800;margin-bottom:4px}
.bonus-rating{font-size:.75rem;color:#94a3b8;margin-bottom:14px}
.bonus-amount{font-size:1.4rem;font-weight:900;color:#f0b90b;margin-bottom:8px;line-height:1.2}
.bonus-type{display:inline-block;font-size:.65rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:#0b0b12;background:linear-gradient(135deg,#f0b90b,#fbbf24);padding:3px 8px;border-radius:4px;margin-bottom:14px}
.bonus-details{list-style:none;padding:0;margin:0 0 14px;display:flex;flex-direction:column;gap:6px}
.bonus-details li{font-size:.78rem;color:#94a3b8;display:flex;justify-content:space-between;align-items:center}
.bonus-details li span:last-child{color:#f7f4ed;font-weight:600}
.bonus-cta{display:flex;gap:8px}
.bonus-cta a{flex:1;text-align:center;padding:9px 12px;border-radius:8px;font-size:.8rem;font-weight:700;text-decoration:none;transition:all .15s}
.bonus-cta .review-btn{border:1px solid rgba(255,255,255,.1);color:#98a2b3}
.bonus-cta .review-btn:hover{border-color:rgba(255,255,255,.25)}
.bonus-cta .play-btn{background:linear-gradient(135deg,#f0b90b,#fbbf24);color:#0b0b12;font-weight:800}
.bonus-cta .play-btn:hover{background:linear-gradient(135deg,#fbbf24,#f0b90b)}
.bonus-section{padding:32px 0}
.section-title{font-size:1.3rem;font-weight:800;margin-bottom:16px;display:flex;align-items:center;gap:10px}
.section-title::before{content:'';width:4px;height:24px;background:linear-gradient(180deg,#f0b90b,#fbbf24);border-radius:2px}
.matrix-wrap{overflow-x:auto;border-radius:12px;border:1px solid var(--border)}
.matrix-table{width:100%;border-collapse:collapse;font-size:.82rem}
.matrix-table th{background:var(--bg-card);padding:12px 14px;text-align:left;font-weight:700;border-bottom:1px solid var(--border);white-space:nowrap}
.matrix-table th:first-child{border-radius:12px 0 0 0}
.matrix-table th:last-child{border-radius:0 12px 0 0}
.matrix-table td{padding:11px 14px;border-bottom:1px solid rgba(255,255,255,.04);vertical-align:middle}
.matrix-table tr:last-child td:first-child{border-radius:0 0 0 12px}
.matrix-table tr:last-child td:last-child{border-radius:0 0 12px 0}
.matrix-table tr:hover td{background:rgba(255,255,255,.02)}
.matrix-casino{display:flex;align-items:center;gap:8px;font-weight:700}
.matrix-logo{width:28px;height:28px;border-radius:6px;object-fit:contain}
.matrix-bonus{color:#f0b90b;font-weight:800}
.matrix-badge{display:inline-block;font-size:.6rem;padding:2px 6px;border-radius:4px;background:rgba(240,185,11,.1);color:#c7a961;margin-left:6px}
.matrix-cta{padding:5px 12px;border-radius:6px;font-size:.72rem;font-weight:700;text-decoration:none;background:linear-gradient(135deg,#f0b90b,#fbbf24);color:#0b0b12;white-space:nowrap}
.matrix-cta:hover{background:linear-gradient(135deg,#fbbf24,#f0b90b)}
.no-dep{color:#34d399}
.wager{color:#94a3b8;font-size:.72rem}
.info-boxes{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:14px;padding:32px 0}
.info-box{background:var(--bg-card);border:1px solid var(--border);border-radius:12px;padding:18px}
.info-box h3{font-size:.9rem;font-weight:800;margin-bottom:8px}
.info-box p{font-size:.8rem;color:#94a3b8;line-height:1.5;margin:0}


/* ---- News Page (from original news.html inline <style>) ---- */
.news-hero {
      background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
      padding: 80px 0 60px;
      text-align: center;
      border-bottom: 1px solid var(--border);
    }
    .news-hero h1 {
      font-size: clamp(2rem, 5vw, 3rem);
      margin-bottom: 16px;
      background: linear-gradient(135deg, var(--text-primary), var(--accent-gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .news-hero p {
      color: var(--text-muted);
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto;
    }
    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 24px;
    }
    .news-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 24px;
      transition: all 0.2s ease;
    }
    .news-card:hover {
      border-color: var(--accent-gold);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(240, 185, 11, 0.08);
    }
    .news-meta {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
      flex-wrap: wrap;
    }
    .news-source {
      font-size: 0.7rem;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 6px;
      border: 1px solid;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .news-label {
      font-size: 0.75rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .news-time {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-left: auto;
    }
    .news-title {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 10px;
      line-height: 1.4;
    }
    .news-title a {
      color: var(--text-primary);
      text-decoration: none;
      transition: color 0.2s;
    }
    .news-title a:hover {
      color: var(--accent-gold);
    }
    .news-snippet {
      font-size: 0.875rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 14px;
    }
    .news-read-more {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--accent-gold);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .news-read-more:hover {
      text-decoration: underline;
    }
    .news-updated {
      text-align: center;
      padding: 20px;
      color: var(--text-muted);
      font-size: 0.85rem;
    }
    @media (max-width: 768px) {
      .news-grid {
        grid-template-columns: 1fr;
      }
    }}
