/* ========================================
   me88 Singapore - Main Stylesheet
   Domain: singaporeme88.com
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #ff4e00;
  --orange-dark: #cc3e00;
  --orange-light: #ff7433;
  --dark-bg: #0f0f1a;
  --dark-card: #1a1a2e;
  --dark-nav: #12121e;
  --dark-border: #2a2a3e;
  --text-white: #f0f0f0;
  --text-muted: #9999bb;
  --gold: #f5c518;
  --green: #00c853;
  --radius: 8px;
  --radius-lg: 14px;
  --transition: 0.25s ease;
  --shadow: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-orange: 0 0 20px rgba(255,78,0,0.3);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--dark-bg);
  color: var(--text-white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  color: var(--orange);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--orange-light); }

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

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 700;
}

p { margin-bottom: 1rem; }

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

.section {
  padding: 70px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-white);
}

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

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.divider {
  width: 50px;
  height: 3px;
  background: var(--orange);
  margin: 12px 0 30px;
  border-radius: 2px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: #fff;
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #d4ac15;
  color: #111;
  transform: translateY(-2px);
}

.btn-lg { padding: 15px 35px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* --- Header / Navbar --- */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark-nav);
  border-bottom: 2px solid var(--dark-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}

.logo-wrap { display: flex; align-items: center; }
.logo-wrap img {
  height: 40px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--orange);
  background: rgba(255,78,0,0.1);
}

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

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* --- Mobile Nav --- */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--dark-nav);
    flex-direction: column;
    padding: 20px;
    border-bottom: 2px solid var(--dark-border);
    gap: 4px;
    z-index: 999;
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 12px 16px; }
}

/* --- Hero / Slider --- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0d0d1a 0%, #1a0a00 50%, #0d0d1a 100%);
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-slide {
  display: none;
  width: 100%;
  position: absolute;
  inset: 0;
}
.hero-slide.active { display: block; }

.hero-slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,20,0.92) 40%, rgba(10,10,20,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 80px 20px 80px 0;
}

.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  color: #fff;
}
.hero h1 span { color: var(--orange); }

.hero-desc {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 30px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-slider-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background var(--transition);
}
.hero-slider-dots span.active { background: var(--orange); }

/* --- Trust Bar --- */
.trust-bar {
  background: var(--dark-card);
  border-top: 2px solid var(--orange);
  border-bottom: 1px solid var(--dark-border);
  padding: 16px 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  fill: var(--orange);
  flex-shrink: 0;
}

/* --- Game Categories --- */
.game-categories { background: var(--dark-bg); }

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

.game-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-card);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--dark-border);
  text-decoration: none;
}
.game-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-orange);
  border-color: var(--orange);
}

.game-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.game-card:hover img { transform: scale(1.05); }

.game-card-body {
  padding: 16px;
  position: relative;
}

.game-card-body h3 {
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 4px;
}

.game-card-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.game-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* --- Promotions Banner --- */
.promotions-section { background: var(--dark-card); }

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.promo-card {
  background: var(--dark-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--dark-border);
  transition: all var(--transition);
}
.promo-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
  transform: translateY(-4px);
}

.promo-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.promo-card-body {
  padding: 20px;
}

.promo-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 10px;
  border-radius: 12px;
  background: rgba(255,78,0,0.15);
  color: var(--orange);
  margin-bottom: 10px;
}

.promo-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-white);
}

.promo-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.promo-value {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
  display: block;
  margin-bottom: 6px;
}

/* --- Providers Section --- */
.providers-section {
  background: var(--dark-bg);
  padding: 50px 0;
}

.providers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.provider-logo {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  height: 60px;
  transition: all var(--transition);
}
.provider-logo:hover {
  border-color: var(--orange);
  background: rgba(255,78,0,0.05);
}
.provider-logo img {
  max-height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity var(--transition);
}
.provider-logo:hover img { opacity: 1; }

/* Provider text fallbacks */
.provider-logo span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
}

/* --- Why Choose Us --- */
.features-section { background: var(--dark-card); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--dark-bg);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,78,0,0.1);
  border: 1px solid rgba(255,78,0,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--orange);
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text-white);
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* --- How to Start --- */
.steps-section { background: var(--dark-bg); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.step-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 18px;
}

.step-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--text-white);
}
.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* --- Payment Methods --- */
.payments-section { background: var(--dark-card); padding: 50px 0; }

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.payment-icon {
  background: var(--dark-bg);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
}
.payment-icon:hover {
  border-color: var(--orange);
  color: var(--orange);
}

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

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-white);
  gap: 12px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--orange); }

.faq-question svg {
  width: 20px;
  height: 20px;
  fill: var(--orange);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* --- CTA Banner --- */
.cta-section {
  background: linear-gradient(135deg, #1a0800 0%, #ff4e00 60%, #cc3e00 100%);
  padding: 70px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}
.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}
.cta-section .btn-gold { font-size: 1.1rem; padding: 16px 40px; }

/* --- Content Pages (Inner) --- */
.page-hero {
  background: linear-gradient(135deg, #0d0d1a 0%, #1a0a00 100%);
  padding: 70px 0 50px;
  border-bottom: 2px solid var(--orange);
}

.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 14px;
}
.page-hero h1 span { color: var(--orange); }

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }

/* --- Ratings / Stars --- */
.rating-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}
.star {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}
.rating-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-left: 6px;
}

/* --- Info Box --- */
.info-box {
  background: var(--dark-card);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* --- Table Style --- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.info-table th,
.info-table td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--dark-border);
}
.info-table th {
  background: var(--dark-card);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.info-table tr:hover td { background: rgba(255,78,0,0.04); }
.info-table td:first-child { color: var(--text-muted); font-weight: 600; }

/* --- Content Article --- */
.content-article {
  max-width: 860px;
}

.content-article h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
  margin: 2rem 0 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--dark-border);
}

.content-article h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--orange);
  margin: 1.5rem 0 0.6rem;
}

.content-article ul, .content-article ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.content-article li { margin-bottom: 0.5rem; color: var(--text-muted); }
.content-article ul li { list-style: disc; }

/* --- Sidebar / Key Info Card --- */
.key-info-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 90px;
}

.key-info-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--dark-border);
  color: var(--text-white);
}

.key-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(42,42,62,0.5);
  font-size: 0.87rem;
  gap: 12px;
}

.key-info-row:last-child { border-bottom: none; }
.key-info-label { color: var(--text-muted); flex-shrink: 0; }
.key-info-value { color: var(--text-white); font-weight: 600; text-align: right; }

/* --- 2-col layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .key-info-card { position: static; }
}

/* --- Footer --- */
footer {
  background: var(--dark-nav);
  border-top: 2px solid var(--dark-border);
  padding: 60px 0 30px;
}

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

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-logo img { height: 36px; width: auto; margin-bottom: 14px; }

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--orange);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.footer-badge {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.footer-divider {
  border: none;
  border-top: 1px solid var(--dark-border);
  margin: 30px 0 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.responsible-gaming {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 24px;
  line-height: 1.6;
}

/* --- 404 Page --- */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.error-code {
  font-size: 8rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
}

.error-page h1 {
  font-size: 1.8rem;
  margin-bottom: 14px;
  color: var(--text-white);
}

.error-page p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 28px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .section { padding: 50px 0; }
  .section-title { font-size: 1.6rem; }
  .hero h1 { font-size: 2rem; }
  .hero { min-height: 400px; }
  .hero-slide img { height: 400px; }
  .hero-content { padding: 60px 0; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-items { gap: 20px; }
}

@media (max-width: 480px) {
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero h1 { font-size: 1.7rem; }
  .error-code { font-size: 6rem; }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in { animation: fadeInUp 0.5s ease forwards; }

/* --- Scroll Bar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* --- Tag / Chips --- */
.chip {
  display: inline-block;
  background: rgba(255,78,0,0.12);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,78,0,0.3);
}

/* --- Highlight box --- */
.highlight {
  background: linear-gradient(135deg, rgba(255,78,0,0.15), rgba(255,78,0,0.05));
  border: 1px solid rgba(255,78,0,0.3);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 24px 0;
}

.highlight h3 { color: var(--orange); margin-bottom: 10px; }

/* --- Pros/Cons --- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}
@media (max-width: 600px) { .pros-cons { grid-template-columns: 1fr; } }

.pros, .cons {
  background: var(--dark-card);
  border-radius: var(--radius);
  padding: 20px;
}
.pros { border-top: 3px solid var(--green); }
.cons { border-top: 3px solid #f44336; }

.pros h4 { color: var(--green); margin-bottom: 12px; }
.cons h4 { color: #f44336; margin-bottom: 12px; }

.pros ul li::before { content: "✓ "; color: var(--green); font-weight: 700; }
.cons ul li::before { content: "✗ "; color: #f44336; font-weight: 700; }
.pros ul li, .cons ul li {
  font-size: 0.88rem;
  color: var(--text-muted);
  list-style: none;
  padding-left: 0;
  margin-bottom: 8px;
}
