/* Babu88 Bangladesh VIP Theme - 2026 Production Design System */
:root {
  --primary: #F9D342;
  --primary-hover: #FACC15;
  --primary-glow: rgba(249, 211, 66, 0.25);
  --secondary: #0F172A;
  --accent: #FF5722;
  --accent-hover: #F4511E;
  --bg: #080C14;
  --bg-gradient: radial-gradient(circle at 50% 0%, #172033 0%, #080C14 70%);
  --card: #111827;
  --card-hover: #1E293B;
  --card-border: rgba(249, 211, 66, 0.18);
  --text: #F8FAFC;
  --text-muted: #94A3B8;
  --success: #10B981;
  --danger: #EF4444;
  --font-main: 'Segoe UI', 'Noto Sans Bengali', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
}

body {
  background: var(--bg);
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  padding-bottom: 75px; /* Space for mobile sticky footer */
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

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

/* 1. Announcement Bar */
.top-ticker {
  background: linear-gradient(90deg, #F59E0B, #EF4444, #F59E0B);
  color: #000;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  padding: 6px 10px;
  letter-spacing: 0.2px;
  line-height: 1.35;
}

/* 2. Header & Navigation */
header {
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 5%;
  width: 100%;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.logo-container a {
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 38px;
  width: auto;
  max-width: 100%;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}

.nav-link {
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: rgba(249, 211, 66, 0.08);
  text-decoration: none;
}

/* Dropdown styling */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  min-width: 240px;
  box-shadow: var(--shadow);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1050;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 9px 18px;
  color: #CBD5E1;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.dropdown-menu a:hover {
  background: rgba(249, 211, 66, 0.12);
  color: var(--primary);
  padding-left: 22px;
}

.nav-btns {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  text-decoration: none !important;
  transition: var(--transition);
  white-space: nowrap !important;
}

.btn-primary {
  background: linear-gradient(135deg, #F9D342 0%, #F59E0B 100%);
  color: #0A0F1D !important;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FFF176 0%, #F9D342 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 211, 66, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text) !important;
  border: 1px solid rgba(249, 211, 66, 0.4);
}

.btn-secondary:hover {
  background: rgba(249, 211, 66, 0.15);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, #FF5722 0%, #D84315 100%);
  color: #FFF !important;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #FF7043 0%, #FF5722 100%);
  transform: translateY(-2px);
}

.btn-text-mobile {
  display: none;
}

/* Mobile Hamburger Button */
.mobile-menu-btn {
  display: none;
  background: rgba(249, 211, 66, 0.1);
  border: 1px solid rgba(249, 211, 66, 0.4);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.mobile-menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Modern Full-Screen Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0A0F1D;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--card-border);
  background: rgba(15, 23, 42, 0.98);
  position: sticky;
  top: 0;
  z-index: 100;
}

.drawer-header img {
  height: 28px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
}

.drawer-close-btn {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 700;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  margin: 0;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: all 0.2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.drawer-close-btn:hover,
.drawer-close-btn:active,
.drawer-close-btn:focus {
  background: var(--primary);
  color: #0A0F1D;
  border-color: var(--primary);
  transform: scale(1.08);
}

body.menu-open {
  overflow: hidden !important;
  touch-action: none;
}

.drawer-content {
  padding: 20px 18px 40px;
  flex: 1;
}

.mobile-drawer ul {
  list-style: none;
}

.mobile-drawer > ul > li, .drawer-content > ul > li {
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 10px;
}

.mobile-drawer a {
  font-size: 0.98rem;
  font-weight: 700;
  color: #FFF;
  display: block;
  padding: 6px 0;
}

.mobile-drawer a:hover {
  color: var(--primary);
}

.mobile-drawer .drawer-submenu {
  margin-top: 6px;
  padding-left: 12px;
}

.mobile-drawer .drawer-submenu a {
  font-size: 0.86rem;
  font-weight: 500;
  color: #94A3B8;
  padding: 4px 0;
}

/* 3. Hero & Page Titles */
.page-title {
  color: #FFF;
  font-size: 2.2rem;
  margin: 10px 0 20px;
  line-height: 1.3;
}

.hero {
  text-align: center;
  padding: 40px 15px 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.bengali-tag {
  display: inline-block;
  background: rgba(249, 211, 66, 0.12);
  color: var(--primary);
  border: 1px solid rgba(249, 211, 66, 0.35);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 2.3rem;
  line-height: 1.25;
  color: #FFF;
  margin-bottom: 14px;
  font-weight: 800;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 22px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

/* Trust Badges Bar */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(17, 24, 39, 0.8);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 960px;
  margin: 0 auto 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #CBD5E1;
  white-space: nowrap;
}

.trust-item img {
  height: 20px;
  width: auto;
}

/* 4. Content Containers & E-E-A-T Blocks */
.content-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.breadcrumbs a {
  color: #94A3B8;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.breadcrumbs span {
  color: var(--primary);
}

/* Expert Insight Callout */
.expert-insight {
  background: linear-gradient(135deg, rgba(249, 211, 66, 0.08) 0%, rgba(17, 24, 39, 0.95) 100%);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin-bottom: 25px;
  border-top: 1px solid rgba(249, 211, 66, 0.15);
  border-right: 1px solid rgba(249, 211, 66, 0.15);
  border-bottom: 1px solid rgba(249, 211, 66, 0.15);
}

.expert-insight .insight-title {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.expert-insight p {
  color: #E2E8F0;
  font-size: 0.92rem;
  line-height: 1.65;
}

/* TL;DR Summary Box */
.tldr-box {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 30px;
}

.tldr-box h3 {
  color: #34D399;
  font-size: 1.05rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tldr-box p {
  color: #D1FAE5;
  font-size: 0.94rem;
  line-height: 1.7;
}

/* Answer Capsule Block */
.answer-capsule {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid #38BDF8;
  padding: 12px 16px;
  margin: 15px 0 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.96rem;
  color: #F0F9FF;
}

.answer-capsule strong {
  color: #38BDF8;
}

/* Featured Images */
.featured-img-card {
  margin: 20px 0 30px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--card);
  box-shadow: var(--shadow);
}

.featured-img-card img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.featured-img-card .img-caption {
  padding: 8px 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Section Headings */
h2 {
  color: var(--primary);
  font-size: 1.6rem;
  margin: 35px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(249, 211, 66, 0.2);
  font-weight: 700;
}

h3 {
  color: #FFF;
  font-size: 1.25rem;
  margin: 22px 0 10px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
  color: #CBD5E1;
}

/* Steps Cards Grid */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 22px 0 30px;
}

.step-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 18px;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.step-badge {
  background: var(--primary);
  color: #000;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 2px 8px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 8px;
}

.step-card h4 {
  color: #FFF;
  font-size: 1rem;
  margin-bottom: 6px;
}

.step-card p {
  font-size: 0.86rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

/* Data & Spec Tables */
.table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  width: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: var(--card);
}

th {
  background: #1E293B;
  color: var(--primary);
  font-weight: 700;
  padding: 10px 14px;
  font-size: 0.88rem;
  border-bottom: 2px solid var(--primary);
  white-space: nowrap;
}

td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #E2E8F0;
  font-size: 0.86rem;
}

tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

tr:hover td {
  background: rgba(249, 211, 66, 0.05);
}

/* Callout Box (Pro Tip / Warning) */
.callout {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin: 20px 0;
  font-size: 0.92rem;
}

.callout-tip {
  background: rgba(249, 211, 66, 0.08);
  border: 1px solid rgba(249, 211, 66, 0.3);
  color: #FEF08A;
}

.callout-warning {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #FCA5A5;
}

/* Responsible Gaming */
.responsible-gaming-card {
  background: rgba(239, 68, 68, 0.07);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius);
  padding: 20px;
  margin: 30px 0;
}

.responsible-gaming-card h2 {
  color: #F87171;
  border-bottom-color: rgba(239, 68, 68, 0.3);
  margin-top: 0;
}

.responsible-gaming-card ul {
  margin-left: 20px;
  margin-top: 8px;
  color: #FECACA;
}

.responsible-gaming-card li {
  margin-bottom: 6px;
  font-size: 0.9rem;
}

/* FAQ Accordion */
.faq-section {
  margin: 35px 0;
}

.faq-item {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(249, 211, 66, 0.3);
}

.faq-question {
  padding: 14px 16px;
  font-weight: 700;
  color: #FFF;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-answer {
  padding: 0 16px 14px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* Silo Navigation Hub & Cards Grid */
.silo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 22px 0 35px;
}

.silo-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 14px;
  text-decoration: none !important;
  transition: var(--transition);
  display: block;
}

.silo-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  background: #1A2436;
}

.silo-card h4 {
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.silo-card p {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 0;
  line-height: 1.45;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #172033 0%, #0A0F1D 100%);
  border: 1px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  margin: 40px 0;
  box-shadow: 0 0 30px rgba(249, 211, 66, 0.15);
}

.cta-banner h2 {
  color: #FFF;
  border-bottom: none;
  margin: 0 0 10px;
  font-size: 1.6rem;
}

.cta-banner p {
  color: #CBD5E1;
  max-width: 650px;
  margin: 0 auto 18px;
}

/* 5. Footer */
footer {
  background: #05080E;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 5% 25px;
  margin-top: 45px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
  margin-bottom: 25px;
}

.footer-col h4 {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 7px;
}

.footer-col a {
  color: #94A3B8;
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 0.8rem;
  color: #64748B;
}

/* 6. Sticky Mobile Bottom Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 15, 29, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(249, 211, 66, 0.3);
  padding: 7px 10px;
  z-index: 9999;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  height: 58px;
}

.mobile-bottom-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #CBD5E1;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
}

.mobile-bottom-bar a.active, .mobile-bottom-bar a:hover {
  color: var(--primary);
}

.mobile-bottom-bar .bottom-btn-main {
  background: linear-gradient(135deg, #F9D342 0%, #F59E0B 100%);
  color: #000 !important;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.78rem;
  box-shadow: 0 2px 10px rgba(249, 211, 66, 0.4);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .nav-menu {
    display: none !important; /* Completely hide desktop menu */
  }
  .mobile-menu-btn {
    display: flex !important;
  }
  .mobile-bottom-bar {
    display: flex !important;
  }
  header {
    padding: 8px 14px;
  }
  .nav-container {
    gap: 8px;
  }
  .logo-container img {
    height: 32px;
    max-width: 135px;
    width: auto;
  }
  .page-title {
    font-size: 1.6rem !important;
  }
  .hero h1 {
    font-size: 1.7rem !important;
  }
  h2 {
    font-size: 1.4rem !important;
  }
}

@media (max-width: 640px) {
  .top-ticker {
    font-size: 0.74rem;
    padding: 5px 8px;
    line-height: 1.3;
  }
  header {
    padding: 7px 10px;
  }
  .nav-container {
    gap: 6px;
  }
  .logo-container img {
    height: 26px;
    max-width: 100px;
    width: auto;
  }
  .nav-btns {
    gap: 4px;
  }
  .btn {
    padding: 5px 7px !important;
    font-size: 0.74rem !important;
    white-space: nowrap !important;
    border-radius: 4px !important;
  }
  .btn-text-full {
    display: none !important;
  }
  .btn-text-mobile {
    display: inline !important;
  }
  .mobile-menu-btn {
    width: 30px;
    height: 30px;
    padding: 5px;
  }
  .mobile-menu-btn span {
    width: 15px;
  }
  .page-title {
    font-size: 1.3rem !important;
    line-height: 1.35 !important;
    margin: 6px 0 14px !important;
  }
  .hero {
    padding: 20px 8px 15px;
  }
  .hero h1 {
    font-size: 1.3rem !important;
    line-height: 1.3 !important;
    margin-bottom: 8px;
  }
  .hero p {
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.45;
  }
  .hero-actions {
    gap: 8px;
    margin-bottom: 18px;
  }
  .hero-actions .btn {
    width: 100%;
    padding: 9px 12px !important;
    font-size: 0.88rem !important;
  }
  .trust-bar {
    gap: 6px 10px;
    padding: 8px 6px;
    margin-bottom: 20px;
  }
  .trust-item {
    font-size: 0.68rem;
    gap: 3px;
  }
  .trust-item img {
    height: 16px;
  }
  .content-wrapper {
    padding: 0 10px;
  }
  h2 {
    font-size: 1.25rem !important;
    margin: 24px 0 10px;
  }
  .expert-insight {
    padding: 10px 12px;
    margin-bottom: 18px;
  }
  .expert-insight p {
    font-size: 0.84rem;
  }
  .tldr-box {
    padding: 12px 14px;
    margin-bottom: 20px;
  }
  .tldr-box p {
    font-size: 0.85rem;
  }
  .answer-capsule {
    font-size: 0.85rem;
    padding: 10px 12px;
  }
  .table-container {
    margin: 12px 0 20px;
  }
  table th, table td {
    padding: 7px 9px;
    font-size: 0.76rem;
    white-space: nowrap;
  }
  .steps-container {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .step-card {
    padding: 14px;
  }
  .silo-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .cta-banner {
    padding: 18px 12px;
    margin: 28px 0;
  }
  .cta-banner h2 {
    font-size: 1.25rem;
    line-height: 1.3;
  }
  .cta-banner p {
    font-size: 0.82rem;
    margin-bottom: 14px;
  }
  .cta-banner .btn {
    width: 100%;
    margin-bottom: 6px;
  }
}
