/* ============================================
   Modern SEO-Optimized Style for Research Article
   ============================================ */

/* === CSS Reset & Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette - Professional Research Theme */
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --secondary-color: #059669;
  --accent-color: #dc2626;
  --text-primary: #1f2937;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-tertiary: #f3f4f6;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  
  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Merriweather', Georgia, serif;
  
  /* Spacing */
  --container-width: 1200px;
  --section-padding: 5rem;
  --card-padding: 2rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Prevent horizontal overflow - Force word breaking */
img, video, iframe {
  max-width: 100%;
  height: auto;
}

pre, code {
  max-width: 100%;
  overflow-x: auto;
  word-wrap: break-word;
}

/* Force all text elements to break long words */
p, h1, h2, h3, h4, h5, h6, li, td, th, span, div, a, strong, em {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

/* Specific fix for long Indonesian compound words */
.tooltip-purple-7b3e p,
.tag-fluid-160a,
.highlight-87ae,
.smooth_f501,
.notice-bronze-2796,
.link-brown-55c8,
.down-c87b,
.hero_122c {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.filter-e5c3 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.filter-e5c3 > *,
.popup-soft-d79f,
.tooltip-purple-7b3e,
.overlay_9d7c {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .filter-e5c3 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .filter-e5c3 {
    padding: 0 1rem;
  }
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  letter-spacing: -0.015em;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.25rem;
}

strong {
  font-weight: 600;
  color: var(--text-primary);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

code {
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 0.875em;
  background-color: var(--bg-tertiary);
  padding: 0.2em 0.4em;
  border-radius: 3px;
  color: var(--accent-color);
}

pre {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 1px solid var(--border-color);
}

pre code {
  background: none;
  padding: 0;
  color: var(--text-primary);
}

/* === Header/Navigation === */
.footer_fresh_913c {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

/* Enhance shadow when scrolled */
.footer_fresh_913c.card_4610 {
  box-shadow: var(--shadow-md);
}

.focus-yellow-a21f {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.paper_9cc2 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.main-steel-a18d {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.item_iron_a5fe {
  display: none;
}

/* Hide mobile actions on desktop */
.gold_cd61 {
  display: none;
}

.menu_1f52 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.menu_1f52 a:hover,
.menu_1f52 a.fn-active-8f98 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.tall_b919 {
  margin-left: 1rem;
}

.label_prev_c873 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-204c,
.background-warm-3a1f {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  color: white !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.footer-204c {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.footer-204c:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a8a 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transform: translateY(-1px);
  text-decoration: none;
}

.background-warm-3a1f {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.background-warm-3a1f:hover {
  background: linear-gradient(135deg, #047857 0%, #065f46 100%);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  transform: translateY(-1px);
  text-decoration: none;
}

.footer-204c svg,
.background-warm-3a1f svg {
  flex-shrink: 0;
}

.link-bab2 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.container-new-4593 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.container-new-4593::before,
.container-new-4593::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.container-new-4593::before {
  top: -7px;
}

.container-new-4593::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.hovered_6eec {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border-color);
}

/* === Hero Brand Image - First Screen / Above the Fold === */
.cool_2154 {
  margin: 2.5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border: 2px solid var(--primary-color);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
}

.dim-e95a {
  margin: 0 0 2rem;
  text-align: center;
}

.sort_purple_d7a4 {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sort_purple_d7a4:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.highlight-tall-06e1 {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  text-align: left;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.highlight-tall-06e1 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.hard_94c1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.media-a584 {
  text-align: center;
  padding: 1.25rem;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-radius: 12px;
  border: 1px solid var(--primary-color);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.media-a584:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.shade_0ab3 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.label_selected_e8fa {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.slider-5a46 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.slider-5a46 .detail_1c40 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.slider-5a46 .detail_1c40 svg {
  flex-shrink: 0;
}

.slider-5a46 .upper-d186 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.slider-5a46 .upper-d186:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a8a 100%);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

.slider-5a46 .wrapper-f641 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.slider-5a46 .wrapper-f641:hover {
  background: linear-gradient(135deg, #047857 0%, #065f46 100%);
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.4);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Mobile optimization for hero brand */
@media (max-width: 768px) {
  .cool_2154 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .sort_purple_d7a4 {
    max-width: 100%;
  }

  .hard_94c1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .media-a584 {
    padding: 1rem;
  }

  .shade_0ab3 {
    font-size: 1.5rem;
  }

  .label_selected_e8fa {
    font-size: 0.75rem;
  }

  .highlight-tall-06e1 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .slider-5a46 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .slider-5a46 .detail_1c40 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hard_94c1 {
    grid-template-columns: 1fr;
  }
}

.paper-fab9 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hovered_4afe {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

time {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* === Article Header & Meta === */
.header_af78 {
  margin-bottom: 2.5rem;
}

.white_1e2b {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.paper-fab9 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.backdrop_b6e5 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.shadow-d151 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.input-8e42 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.fresh-d8cd {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.top-81a6 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.hover_small_b6cd {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.article_c81e {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.article_c81e svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.table_b9d0 {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-lg);
}

.full_f978 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.surface-78d3 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.large_e1e7 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.notice-east-5105 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.media-53cb {
  display: grid;
  gap: 1rem;
}

.solid_ab84 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.red-4e76 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.header-outer-a6b1 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.frame-14ce {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.fresh_0d2e {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.focused-9b29 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.focused-9b29 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.tag-fluid-160a {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.grid-fffa {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.image-pink-24a6 {
  display: grid;
  gap: 2rem;
}

.photo-ed6e {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.shadow-d151 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.backdrop_b6e5 {
  flex: 1;
}

.fresh-d8cd {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.fresh-d8cd a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.title_dd48 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
}

.top-81a6 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.heading-pro-698a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.heading-pro-698a span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.next-f63d {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.next-f63d a {
  font-size: 0.875rem;
  font-weight: 500;
}

.dark-a658 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.dark-a658 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.dark-a658 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dark-a658 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.summary-1220 {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #fef3c7;
  border-left: 4px solid var(--warning-color);
  border-radius: 4px;
  font-size: 0.9375rem;
}

/* === Table of Contents === */
.panel_ef3b {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.new-5a4b {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.overlay-7788 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.detail-gas-c0e3 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.detail-gas-c0e3 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.detail-gas-c0e3 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.detail-gas-c0e3 ol li a {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

.detail-gas-c0e3 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.detail-gas-c0e3 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.tooltip-purple-7b3e {
  padding: 3rem 0 5rem;
}

.overlay_9d7c {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.overlay_9d7c.content_8d8d {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.highlight-87ae {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.table_2d52 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.overlay-tall-35f2 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.overlay-tall-35f2 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.table_white_3149 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.in_7377 {
  text-align: center;
}

.block-blue-0680 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.modal-cool-5252 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.modal_smooth_8d37 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.link-brown-55c8 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.smooth_f501 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
  max-width: 100%;
  overflow: hidden;
  word-wrap: break-word;
}

.smooth_f501 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.smooth_f501:hover {
  box-shadow: var(--shadow-lg);
}

.smooth_f501.item-1b2f {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.smooth_f501 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.smooth_f501 ul {
  margin: 1rem 0;
}

.smooth_f501 li {
  margin-bottom: 0.75rem;
}

.gallery_gas_70a2 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.hard-a078 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.hard-a078 a {
  font-weight: 600;
}

/* === Data Tables === */
.warm-b5a7 {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background-color: var(--bg-primary);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.warm-b5a7 table {
  width: 100%;
  min-width: 600px;
}

.warm-b5a7 thead {
  background-color: var(--primary-color);
  color: white;
}

.warm-b5a7 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.warm-b5a7 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.warm-b5a7 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.warm-b5a7 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.frame_478a {
  list-style: none;
  margin: 1.5rem 0;
}

.frame_478a li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.frame_478a li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.column-fluid-2e52::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--success-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

.fn-warning-8f98::before {
  content: '⚠';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--warning-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

/* === Expert Insight Box === */
.nav-3713 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.warm_3065 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.warm_3065 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.warm_3065 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.warm_3065 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.nav-3713 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.down-c87b {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.down-c87b::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.element-05b5 {
  position: relative;
  margin-bottom: 3rem;
}

.footer_67e7 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.footer_67e7 .disabled_first_8707 {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.search-0360 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.search-0360 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.search-0360 ul {
  margin: 1rem 0;
}

.search-0360 li {
  margin-bottom: 0.75rem;
}

.north-7d5c {
  display: inline-block;
  background-color: #dbeafe;
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* === Transparency Box === */
.badge-33b3 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.badge-33b3 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.hard_c5f0 {
  list-style: none;
  margin: 1.5rem 0;
}

.hard_c5f0 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.hard_c5f0 a {
  font-weight: 600;
}

.grid-outer-807f {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.hero_122c {
  margin: 2.5rem 0;
}

.outline_middle_0406 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s ease;
}

.outline_middle_0406:hover {
  box-shadow: var(--shadow-lg);
}

.outline_middle_0406.shadow-a137 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.in_e952 {
  flex-shrink: 0;
}

.in_e952 span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.row-2ed3 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.tag_2256,
.summary-center-39a3,
.content-d2d5 {
  width: 100%;
  margin: 1.5rem 0;
}

.banner_solid_91a3 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.banner_solid_91a3 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.texture_7b57 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.texture_7b57 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.highlight_new_1417 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.highlight_new_1417 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.backdrop_dirty_eefb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.caption-8045 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.caption-8045:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.caption-8045.tabs-dynamic-4009 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.caption-8045 .component_5dff {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.caption-8045 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.filter-d6ea {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.hidden_c374 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.hidden_c374 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.icon_cd06 {
  display: block;
  font-family: 'Consolas', monospace;
  font-size: 0.75rem;
  color: var(--accent-color);
  word-break: break-all;
  padding: 0.75rem;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

/* === Buttons === */
.detail_1c40 {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.upper-d186 {
  background-color: var(--primary-color);
  color: white;
}

.upper-d186:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.wrapper-f641 {
  background-color: var(--text-secondary);
  color: white;
}

.wrapper-f641:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.detail_f637 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.detail_f637:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.module_5b17 {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.module_5b17:hover {
  background-color: var(--primary-dark);
}

.column_d43a {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.easy_9d60 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.notification-narrow-2968 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.element-new-e944 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #fef3c7;
  color: #92400e;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* === Demographics & Data Visualization === */
.slider_out_25e2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.secondary-narrow-a9e6 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.secondary-narrow-a9e6 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.south_4a14 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.column-46d5 {
  flex: 1;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
}

.tabs_white_dbbd {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.info_eab2 {
  list-style: none;
  counter-reset: rank-counter;
}

.info_eab2 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.info_eab2 li::before {
  content: counter(rank-counter);
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
}

.table-33de {
  list-style: none;
}

.table-33de li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.disabled_4f0e {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.caption_stale_1144 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.caption_stale_1144 .main_ae9d {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.caption_stale_1144 .orange-05f5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.tall-a3e9 {
  margin-top: 3rem;
}

.link_86da {
  width: 100%;
}

.silver_ed99 {
  background-color: #fef3c7;
}

.pro-fdd5 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.bronze-d4c0 {
  margin: 3rem 0;
}

.down_1820 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.static-2814 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.static-2814:hover {
  box-shadow: var(--shadow-lg);
}

.static-2814.tertiary-hot-e6c5 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.grid-liquid-4ae7 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.picture-fresh-c2b9 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.picture-fresh-c2b9 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.motion_b6d0 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.static-2814 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.full-2e8f {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.picture_6c3a {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.bottom-912a {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.active_orange_107f {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.button_d4c5 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.sidebar-1e92 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.slider-large-6701 {
  max-width: 900px;
  margin: 0 auto;
}

.detail-f57a {
  margin: 2rem 0;
}

.pattern_ea66 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.pattern_ea66 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.pattern_ea66 summary::-webkit-details-marker {
  display: none;
}

.pattern_ea66 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.summary-b494 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.pattern_ea66[open] .summary-b494 {
  transform: rotate(45deg);
}

.main-pink-7ea8 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.main-pink-7ea8 p:last-child {
  margin-bottom: 0;
}

.notification-small-4058 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.pattern-d6d9 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.shade_a54e {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.shade_a54e p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.shade_a54e .detail_1c40 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.primary-dbf4 {
  max-width: 900px;
  margin: 0 auto;
}

.advanced-1d9f {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.title-0555 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.title-0555.fn-success-8f98 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.copper_aacc {
  font-size: 3rem;
  line-height: 1;
}

.yellow-f631 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.heading-cold-566c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.list-current-dc22,
.lite-158f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.list-current-dc22 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.lite-158f h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.cold_d23f,
.layout_lite_c6d7 {
  margin: 1.5rem 0;
}

.cold_d23f li,
.layout_lite_c6d7 li {
  margin-bottom: 1rem;
}

.widget_blue_c274 {
  margin: 3rem 0;
}

.over_552d {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.over_552d h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.over_552d ol {
  margin: 1rem 0;
}

.over_552d li {
  margin-bottom: 0.75rem;
}

.down-3516 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.footer_897b {
  margin: 2rem 0;
}

.yellow_6ec1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.pagination-f873 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.background-a698 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.shade-cool-6edb {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.lite_a435 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.narrow_f1c4 {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.narrow_f1c4 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.input-8e42 {
  flex: 1;
}

.input-8e42 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.blue-e313 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.cold-427a p {
  margin-bottom: 1rem;
}

.paragraph-prev-7ecd {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.box-huge-39da {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.panel_65e5 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.panel_65e5 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.tabs-f653 h3 {
  margin-bottom: 1.5rem;
}

.primary_07f8 {
  display: grid;
  gap: 2rem;
}

.pattern_narrow_e1c8 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.pattern_narrow_e1c8 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.pattern_narrow_e1c8 h4 {
  margin: 0 0 0.25rem;
}

.pattern_narrow_e1c8 p {
  margin: 0;
  font-size: 0.9375rem;
}

.button-174b {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.background-6c9f {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.background-6c9f h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.background-6c9f ul {
  margin: 1.5rem 0;
}

.background-6c9f li {
  margin-bottom: 0.75rem;
}

.paragraph_stale_341c {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.module_center_63d3 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.highlight-3b22 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.slider-medium-2f37 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.slider-medium-2f37 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.warm-337c {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.warm-337c a {
  color: rgba(255, 255, 255, 0.8);
}

.background_first_d872 {
  list-style: none;
}

.background_first_d872 li {
  margin-bottom: 0.75rem;
}

.background_first_d872 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.background_first_d872 a:hover {
  color: white;
}

.prev_4335 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.up-b4dd {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.background_bright_f276 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.pressed-4ea4 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.thick-66a3 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .filter-e5c3 {
    padding: 0 1.25rem;
  }

  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
  }

  /* Reduce heading sizes for mobile */
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.125rem;
  }

  .slow_0f1d {
    font-size: 1.5rem !important;
  }

  .white_1e2b {
    font-size: 1.5rem !important;
  }

  p, li, td, th, span, div, strong {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
  }

  /* Force all containers to fit */
  .smooth_f501,
  .notice-bronze-2796,
  .search-0360,
  .row-2ed3,
  .grid-liquid-4ae7,
  .static-2814,
  .main-pink-7ea8,
  .highlight-tall-06e1,
  .tag-fluid-160a,
  .highlight-87ae {
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }

  /* Long words in Indonesian */
  ul, ol {
    padding-left: 1.5rem;
    max-width: 100%;
  }

  /* Fix author-info layout on mobile */
  .paper-fab9 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .backdrop_b6e5 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .shadow-d151 {
    flex-shrink: 0;
  }

  .input-8e42 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .fresh-d8cd,
  .top-81a6 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .top-81a6 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .main-steel-a18d {
    display: none;
  }

  /* Show mobile actions */
  .gold_cd61 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .article_red_11f9 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.5rem;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 600;
    color: white !important;
    text-decoration: none;
    transition: all 0.2s ease;
    gap: 0.15rem;
    min-width: 60px;
    max-width: 75px;
  }

  .article_red_11f9 svg {
    flex-shrink: 0;
  }

  .article_red_11f9 .warm-2bac {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .article_red_11f9 .mini-0c7d {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .copper_86b8 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .fluid-1328 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .article_red_11f9:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .item_iron_a5fe {
    display: block;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background-color: var(--bg-primary);
    list-style: none;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-height: calc(100vh - 75px);
    overflow-y: auto;
  }

  .item_iron_a5fe.fn-active-8f98 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .item_iron_a5fe li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .item_iron_a5fe li:last-child {
    border-bottom: none;
  }

  .item_iron_a5fe a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .menu_1f52 {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background-color: var(--bg-primary);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-height: calc(100vh - 65px);
    overflow-y: auto;
    gap: 0;
  }

  .menu_1f52 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .menu_1f52 li:last-child {
    border-bottom: none;
  }

  .menu_1f52 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .tall_b919 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .label_prev_c873 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .footer-204c,
  .background-warm-3a1f {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .footer-204c {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .background-warm-3a1f {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .menu_1f52.fn-active-8f98 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .link-bab2 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .footer_fresh_913c {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .focus-yellow-a21f {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .hovered_6eec {
    margin-top: 0;
  }

  /* Hero section */
  .hovered_6eec {
    padding: 2rem 0 1.5rem;
  }

  .white_1e2b {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .tag-fluid-160a {
    font-size: 1rem;
  }

  /* Hero brand image */
  .cool_2154 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .sort_purple_d7a4 {
    max-width: 100%;
    border-radius: 8px;
  }

  .hard_94c1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .media-a584 {
    padding: 1rem;
  }

  .shade_0ab3 {
    font-size: 1.5rem;
  }

  .label_selected_e8fa {
    font-size: 0.75rem;
  }

  .highlight-tall-06e1 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .slider-5a46 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .slider-5a46 .detail_1c40 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }

  /* Typography */
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  /* TOC */
  .overlay-7788 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .outline_middle_0406 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .in_e952 {
    margin-bottom: 1rem;
  }

  /* Author */
  .photo-ed6e {
    flex-direction: column;
  }

  .narrow_f1c4 {
    flex-direction: column;
  }

  /* Quotes */
  .grid-liquid-4ae7 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .heading-cold-566c {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .shade-cool-6edb {
    flex-direction: column;
  }

  .shade-cool-6edb .detail_1c40 {
    width: 100%;
  }

  /* Version comparison */
  .backdrop_dirty_eefb {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .slider_out_25e2 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .highlight-3b22 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .background_bright_f276 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .warm-b5a7,
  .summary-center-39a3,
  .detail-4df5,
  .link_86da,
  .tag_2256,
  .content-d2d5 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .warm-b5a7 table,
  .summary-center-39a3 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .icon_cd06 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .filter-e5c3 {
    padding: 0 1rem;
  }

  /* Reduce heading sizes even more for very small screens */
  h1 {
    font-size: 1.25rem;
  }

  h2 {
    font-size: 1.125rem;
  }

  h3 {
    font-size: 1rem;
  }

  .slow_0f1d {
    font-size: 1.25rem !important;
  }

  .white_1e2b {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .footer_fresh_913c {
    position: fixed;
  }

  .focus-yellow-a21f {
    padding: 0.625rem 0;
  }

  .paper_9cc2 img {
    height: 26px;
  }

  .menu_1f52 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .item_iron_a5fe {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .article_red_11f9 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .article_red_11f9 svg {
    width: 18px;
    height: 18px;
  }

  .article_red_11f9 .warm-2bac {
    font-size: 0.7rem;
  }

  .article_red_11f9 .mini-0c7d {
    font-size: 0.65rem;
  }

  .footer-204c,
  .background-warm-3a1f {
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
  }

  /* Ultra aggressive word breaking for small screens */
  * {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  /* Ensure no element exceeds viewport */
  body, .filter-e5c3, .popup-soft-d79f, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .cool_2154 {
    padding: 1rem;
  }

  .hard_94c1 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .media-a584 {
    padding: 0.875rem;
  }

  .shade_0ab3 {
    font-size: 1.25rem;
  }

  .slider-5a46 .detail_1c40 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .white_1e2b {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .detail_1c40 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .column_d43a {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .outline_middle_0406 {
    padding: 1rem;
  }

  .in_e952 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .smooth_f501,
  .black_e20c,
  .mask_e9b2,
  .summary-31ba {
    padding: 1rem;
  }
}

@media print {
  .footer_fresh_913c,
  .panel_ef3b,
  .link-bab2,
  .detail_1c40,
  .module_center_63d3 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .filter-e5c3 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.active_f881 {
  margin-bottom: 3rem;
  text-align: center;
}

.slow_0f1d {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.next_caac {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.image-b85f,
.primary-clean-3777 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.video-under-859d {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.video-under-859d:hover {
  transform: translateY(-5px);
}

.video-under-859d strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.video-under-859d span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.accent-6c05 {
  margin: 3rem 0;
}

.table_5595 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.table_warm_c32b {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.table_warm_c32b:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.message_c5e7 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero_last_11dc {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.table_fluid_39f6 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.article-8342 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.primary-fb52 {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.primary-fb52:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.primary-fb52.highlight-f0df {
  border-left: 4px solid var(--primary-color);
}

.layout-rough-95b5 {
  flex-shrink: 0;
}

.layout-rough-95b5 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.selected-4e6a {
  flex: 1;
}

.selected-4e6a h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.detail_a194 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.detail-a989,
.basic-fcfd,
.logo-in-e378 {
  margin-bottom: 1.5rem;
}

.detail-a989 h4,
.basic-fcfd h4,
.logo-in-e378 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-a989 ul,
.basic-fcfd ul,
.logo-in-e378 ul {
  list-style: none;
  padding: 0;
}

.detail-a989 li,
.basic-fcfd li,
.logo-in-e378 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.detail-a989 li:before,
.basic-fcfd li:before,
.logo-in-e378 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.tertiary_fb30 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.tertiary_fb30 a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.tertiary_fb30 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.media_out_129d { margin: 2rem 0; }
.status_paper_c575 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.status_paper_c575 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.video-2444 p { margin-bottom: 1rem; line-height: 1.7; }
.video-2444 strong { color: var(--text-primary); }
.video-2444 ul { list-style: none; padding-left: 0; }
.video-2444 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.video-2444 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.tabs-clean-a5a7 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.component_fast_252d { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.component_fast_252d:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.progress_ae44 { font-size: 3rem; margin-bottom: 1rem; }
.component_fast_252d h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.component_fast_252d p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.medium_a94a { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.medium_a94a span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.message_b470 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.next_c658 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.tag_fast_08f8 { text-align: center; }
.center-705a { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.dark-0f7d { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.item-0a03 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.slider_bronze_5e56 { margin: 2rem 0; }
.summary_clean_7c7c { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.summary_clean_7c7c h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.summary_clean_7c7c p, .summary_clean_7c7c ul { line-height: 1.7; }
.summary_clean_7c7c ul { list-style: none; padding-left: 0; }
.summary_clean_7c7c ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.summary_clean_7c7c ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.label_e0bf { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.column-gold-ae8a { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.paper-95aa { text-align: center; }
.link_d5e0 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.layout-c8b7 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.right_9f05 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.last-aa6a { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.white_0f03 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.white_0f03:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.white_0f03 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.white_0f03 p, .white_0f03 ul { line-height: 1.7; }
.white_0f03 ul { list-style: none; padding-left: 0; }
.white_0f03 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.white_0f03 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 0b2c */
.ghost-box-c9 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.1;
}
