:root {
  --bg: #0f1218;
  --surface: #161a23;
  --primary: #3fb66f;
  --primary-contrast: #0a2818;
  --text: #e7ecf3;
  --muted: #a8b2c1;
  --warning: #ffcc00;
  --danger: #ff5a5f;
  --accent: #4aa9ff;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
}

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

.container { width: min(1100px, 92%); margin: 0 auto; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(22,26,35,.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header .bar { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.logo { font-weight: 700; letter-spacing: .2px; }
.logo a { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.logo a:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  text-decoration: none;
}
.logo .site-logo { 
  display: block; 
  height: 48px; 
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(63, 182, 111, 0.15));
  transition: filter 0.2s ease;
}
.logo a:hover .site-logo {
  filter: drop-shadow(0 4px 12px rgba(63, 182, 111, 0.25));
}
.nav { display: flex; gap: 18px; }
.nav a { color: var(--text); opacity: .9; }

.nav-toggle { display: none; border: 1px solid rgba(255,255,255,.15); background: transparent; color: var(--text); padding: 6px 10px; border-radius: 8px; }

/* Hero */
.hero { padding: 48px 0; }
.hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: center; }
.hero h1 { font-size: clamp(28px, 3.2vw, 44px); line-height: 1.1; margin: 0 0 10px; }
.hero p { color: var(--muted); margin: 0 0 18px; }
.hero .card {
  background: linear-gradient(180deg, rgba(63,182,111,.12), rgba(63,182,111,.06));
  border: 1px solid rgba(63,182,111,.25);
  padding: 22px; border-radius: var(--radius);
}

/* Hero Home */
.hero-home {
  background: linear-gradient(135deg, rgba(63,182,111,.08) 0%, rgba(74,169,255,.08) 100%);
  padding: 60px 0;
  text-align: center;
}
.hero-content { max-width: 900px; margin: 0 auto; }
.hero-home .hero-title {
  font-size: clamp(32px, 5vw, 52px);
  margin: 0 0 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.hero-home .hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text);
  margin: 0 0 28px;
  line-height: 1.5;
}
.badge-highlight {
  background: linear-gradient(135deg, rgba(63,182,111,.2), rgba(63,182,111,.1));
  border: 1px solid rgba(63,182,111,.4);
  color: #b9f3d0;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
}

/* Cards */
.grid { display: grid; gap: 18px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  color: var(--text);
}
.card h2, .card h3, .card h4 {
  color: var(--text);
}
.card p {
  color: var(--text);
}
.card img { max-width: 100%; height: auto; border-radius: 8px; }
.card .title { font-weight: 600; margin-bottom: 6px; }
.card .meta { color: var(--muted); font-size: 14px; margin-bottom: 12px; }
.rating { color: var(--warning); font-weight: 700; }
.badge { display: inline-block; font-size: 12px; padding: 4px 8px; border-radius: 999px; border: 1px solid rgba(255,255,255,.12); }
.badge--license { background: rgba(63,182,111,.15); border-color: rgba(63,182,111,.4); color: #b9f3d0; }
.badge--intl { background: rgba(255,90,95,.15); border-color: rgba(255,90,95,.4); color: #ffd6d6; }

/* Tables */
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { text-align: left; padding: 12px; border-bottom: 1px solid rgba(255,255,255,.08); word-break: break-word; color: var(--text); }
.table th { color: var(--muted); font-weight: 600; }
.table td { color: var(--text); }
.table .casino { font-weight: 600; color: var(--text); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,.12); font-weight: 600; cursor: pointer; transition: transform .06s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,.3); text-decoration: none; }
.btn--primary { background: linear-gradient(180deg, var(--primary), #2f9b59); color: #0c2016; border-color: rgba(63,182,111,.5); }
.btn--ghost { background: transparent; color: var(--text); }
.btn--warn { background: linear-gradient(180deg, #ffcc00, #e6b800); color: #1a1a1a; }

.cta-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* Footer */
.footer { margin-top: 28px; padding: 22px 0 32px; border-top: 1px solid rgba(255,255,255,.08); color: var(--muted); }
.footer .links { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.footer a { color: var(--muted); }

/* Sections */
.section { padding: 28px 0; }
.section h2 { margin: 0 0 12px; font-size: 22px; }
.lead { color: var(--muted); }

/* Casino Review Hero */
.casino-hero .hero-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  background: linear-gradient(180deg, rgba(74,169,255,.10), rgba(74,169,255,.05));
  border: 1px solid rgba(74,169,255,.25);
  padding: 18px; border-radius: var(--radius);
  color: var(--text);
}
.casino-hero .hero-card h1,
.casino-hero .hero-card h2,
.casino-hero .hero-card h3 {
  color: var(--text);
}
.brand-logo { width: 120px; height: 120px; object-fit: contain; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; }
.title-row { font-size: 24px; font-weight: 700; display: flex; align-items: center; gap: 10px; color: var(--text); }
.pill { display: inline-block; padding: 4px 10px; border-radius: 999px; font-size: 12px; border: 1px solid rgba(255,255,255,.12); color: var(--muted); }
.feature-list { display: flex; flex-wrap: wrap; gap: 8px; }
.feature-list .pill { background: rgba(255,255,255,.06); }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.stats .item { background: var(--surface); border: 1px solid rgba(255,255,255,.06); border-radius: 10px; padding: 10px; }

@media (max-width: 720px) {
  .casino-hero .hero-card { grid-template-columns: 1fr; text-align: center; }
  .brand-logo { margin: 0 auto; }
}

/* Responsive */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .grid.cols-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; padding: 10px 0; }
  .nav-toggle { display: inline-block; }
  .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; }
  .logo .site-logo { height: 40px; }
  .header .bar { padding: 12px 0; }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: rgba(22,26,35,.95);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 12px 16px;
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center;
  z-index: 100;
}
.cookie-banner p { margin: 0; color: var(--muted); }
.cookie-banner .actions { display: flex; gap: 8px; }

/* Utility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.spacer { height: 10px; }
.small { font-size: 13px; color: var(--muted); }

/* Sticky CTA for mobile */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; background: rgba(22,26,35,.96); border-top: 1px solid rgba(255,255,255,.08); padding: 10px 0; z-index: 70; display: none; }
.sticky-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.sticky-cta .btn { min-width: 160px; }
@media (max-width: 720px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 68px; }
}

/* Old homepage styles for cards with light background */
.casino-list {
  display: grid;
  gap: 2rem;
}

.casino-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.casino-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.casino-rank {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--primary), #2f9b59);
  color: #0c2016;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.casino-header {
  background: linear-gradient(135deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.02) 100%);
  padding: 2rem 2rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.casino-logo {
  max-width: 200px;
  height: auto;
  margin-left: 60px;
}

.casino-rating {
  text-align: center;
}

.rating-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.stars {
  color: var(--warning);
  font-size: 1.2rem;
}

.casino-body {
  padding: 2rem;
}

.casino-body h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.bonus-info {
  background: linear-gradient(135deg, rgba(255,204,0,.12) 0%, rgba(255,204,0,.06) 100%);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--warning);
}

.bonus-title {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.bonus-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--warning);
  margin-bottom: 0.5rem;
}

.bonus-details {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.bonus-conditions {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

.casino-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.feature {
  background-color: rgba(63,182,111,.15);
  color: #b9f3d0;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(63,182,111,.4);
}

.casino-actions {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #2f9b59);
  color: #0c2016;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(63, 182, 111, 0.4);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-secondary:hover {
  background-color: var(--accent);
  color: #0c2016;
}

.casino-footer {
  background-color: rgba(255,255,255,.02);
  padding: 1rem 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

/* Info Section */
.info-section {
  background-color: var(--bg);
  padding: 4rem 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.info-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.06);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--text);
}

.info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

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

.info-table tr {
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.info-table td {
  padding: 0.75rem 0;
  color: var(--text);
}

.info-table td:first-child {
  color: var(--muted);
}

.bonus-types, .game-types {
  color: var(--text);
}

.bonus-types li,
.game-types li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.bonus-types li::before,
.game-types li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.payment-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background-color: rgba(255,255,255,.04);
  border-radius: 8px;
  color: var(--text);
}

.payment-icon {
  font-size: 1.5rem;
}

/* Criteria Section */
.criteria-section {
  padding: 4rem 0;
  background: var(--surface);
}

.section-title {
  color: var(--text);
}

.section-description {
  color: var(--muted);
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.criteria-item {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,.06);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.criteria-item:hover {
  transform: translateY(-5px);
}

.criteria-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.criteria-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.criteria-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Responsible Gaming */
.responsible-gaming {
  padding: 4rem 0;
  background-color: var(--surface);
}

.responsible-content {
  max-width: 900px;
  margin: 0 auto;
}

.responsible-content > p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text);
}

.responsible-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.tip {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.tip h4 {
  color: var(--warning);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.tip p {
  color: var(--text);
}

.help-resources {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,.06);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.help-resources h3 {
  margin-bottom: 1rem;
  color: var(--text);
}

.help-resources ul {
  list-style: none;
}

.help-resources li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--text);
}

.hero-title, .hero-subtitle {
  color: var(--text);
}

.hero-badges .badge {
  color: var(--text);
}

@media (max-width: 768px) {
  .casino-header {
    flex-direction: column;
    text-align: center;
  }

  .casino-logo {
    margin-left: 0;
    margin-bottom: 1rem;
  }

  .casino-actions {
    flex-direction: column;
  }
}

/* New compact casino cards for homepage */
.casino-card-home {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 20px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}

.casino-card-home:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  border-color: rgba(63,182,111,.3);
}

.rank-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--primary), #2f9b59);
  color: var(--primary-contrast);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(63,182,111,.4);
}

.rank-badge.rank-1 {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1a1a1a;
  font-size: 14px;
}

.rank-badge.rank-2 {
  background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
  color: #1a1a1a;
}

.rank-badge.rank-3 {
  background: linear-gradient(135deg, #cd7f32, #e6a862);
  color: #1a1a1a;
}

.casino-grid {
  display: grid;
  grid-template-columns: 100px 1fr 200px auto;
  gap: 20px;
  align-items: center;
}

.casino-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.casino-logo-home {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 8px;
}

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

.casino-name {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: var(--text);
}

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

.rating-score {
  font-size: 28px;
  font-weight: 800;
  color: var(--warning);
  background: linear-gradient(135deg, var(--warning), #ffdb4d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rating-stars {
  color: var(--warning);
  font-size: 16px;
  letter-spacing: 2px;
}

.features-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.feat {
  font-size: 12px;
  padding: 4px 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  color: var(--muted);
  white-space: nowrap;
}

.bonus-compact {
  background: linear-gradient(135deg, rgba(255,204,0,.15), rgba(255,204,0,.08));
  border: 1px solid rgba(255,204,0,.3);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.bonus-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.bonus-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--warning);
  margin-bottom: 4px;
}

.bonus-extra {
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
}

.cta-compact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 140px;
}

.disclaimer-compact {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 980px) {
  .casino-grid {
    grid-template-columns: 80px 1fr;
    gap: 16px;
  }
  
  .bonus-compact {
    grid-column: 1 / -1;
  }
  
  .cta-compact {
    grid-column: 1 / -1;
    flex-direction: row;
  }
  
  .casino-logo-home {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 720px) {
  .casino-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .casino-logo-home {
    margin: 0 auto;
  }
  
  .rating-display {
    justify-content: center;
  }
  
  .features-compact {
    justify-content: center;
  }
  
  .rank-badge {
    top: 12px;
    left: 12px;
    font-size: 11px;
    padding: 4px 10px;
  }
}

/* Casino review page improvements */
.casino-hero {
  background: linear-gradient(135deg, rgba(63,182,111,.04), rgba(74,169,255,.04));
}

.review-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.stat-box {
  background: linear-gradient(135deg, rgba(74,169,255,.08), rgba(74,169,255,.04));
  border: 1px solid rgba(74,169,255,.2);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.stat-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.pros-box, .cons-box {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 20px;
}

.pros-box {
  border-left: 4px solid var(--primary);
}

.cons-box {
  border-left: 4px solid var(--danger);
}

.pros-box h3, .cons-box h3 {
  margin: 0 0 16px;
  font-size: 18px;
  color: var(--text);
}

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

.pros-box li {
  padding: 8px 0;
  color: var(--text);
  position: relative;
  padding-left: 24px;
}

.pros-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}

.cons-box li {
  padding: 8px 0;
  color: var(--text);
  position: relative;
  padding-left: 24px;
}

.cons-box li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 800;
}

.info-section-casino {
  background: var(--bg);
  padding: 32px 0;
}

.section-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
  margin: 40px 0;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(255,204,0,.12), rgba(255,204,0,.06));
  border: 1px solid rgba(255,204,0,.3);
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
}

.highlight-box h3 {
  color: var(--warning);
  margin: 0 0 12px;
  font-size: 20px;
}

.highlight-box p {
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
}
