/* ============================================
   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 */
.shadow_white_6abd p,
.active-4297,
.gas-c819,
.advanced-556b,
.hero_glass_59bd,
.motion-9174,
.carousel_5a72,
.hot-7447 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.box_old_072e {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.box_old_072e > *,
.banner-left-9930,
.shadow_white_6abd,
.menu-ebf1 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .box_old_072e {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .box_old_072e {
    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 === */
.module-7579 {
  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 */
.module-7579.module_5850 {
  box-shadow: var(--shadow-md);
}

.progress-rough-875b {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.in_ac65 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.outline_inner_2d33 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.thumbnail_9a38 {
  display: none;
}

/* Hide mobile actions on desktop */
.panel-left-f463 {
  display: none;
}

.text-stone-1175 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.text-stone-1175 a:hover,
.text-stone-1175 a.fn-active-20d2 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.grid_under_cf7a {
  margin-left: 1rem;
}

.heading-93f1 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.hidden-selected-5da8,
.info-4fbb {
  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;
}

.hidden-selected-5da8 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.hidden-selected-5da8: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;
}

.info-4fbb {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.info-4fbb: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;
}

.hidden-selected-5da8 svg,
.info-4fbb svg {
  flex-shrink: 0;
}

.box-stone-4163 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.table-top-4e7a {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.table-top-4e7a::before,
.table-top-4e7a::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.table-top-4e7a::before {
  top: -7px;
}

.table-top-4e7a::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.info-smooth-9716 {
  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 === */
.icon_0b76 {
  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);
}

.item-ef95 {
  margin: 0 0 2rem;
  text-align: center;
}

.widget_00a5 {
  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;
}

.widget_00a5:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.main_c300 {
  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);
}

.main_c300 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.pressed_0648 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.panel_3ac4 {
  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;
}

.panel_3ac4:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.form-384d {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.form-fixed-9a7b {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.action_aec5 {
  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);
}

.action_aec5 .button_4ba5 {
  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;
}

.action_aec5 .button_4ba5 svg {
  flex-shrink: 0;
}

.action_aec5 .link_694d {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.action_aec5 .link_694d: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);
}

.action_aec5 .pagination_d1d3 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.action_aec5 .pagination_d1d3: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) {
  .icon_0b76 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .widget_00a5 {
    max-width: 100%;
  }

  .pressed_0648 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .panel_3ac4 {
    padding: 1rem;
  }

  .form-384d {
    font-size: 1.5rem;
  }

  .form-fixed-9a7b {
    font-size: 0.75rem;
  }

  .main_c300 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .action_aec5 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .action_aec5 .button_4ba5 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .pressed_0648 {
    grid-template-columns: 1fr;
  }
}

.feature-6c7e {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.red_5052 {
  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 === */
.sidebar-up-bbed {
  margin-bottom: 2.5rem;
}

.outer-3fce {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.feature-6c7e {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.steel-10b4 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.media_8338 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.avatar-03b6 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.chip_6056 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.preview-13d9 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.motion-7f97 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.article-c90b {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.article-c90b svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.article_6818 {
  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);
}

.paragraph_02f4 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.filter-current-d108 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.footer_top_8746 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.filter-over-ba0c {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.shadow_b624 {
  display: grid;
  gap: 1rem;
}

.soft-d7b4 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.surface-cool-b655 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.fluid-a1e3 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.secondary_b041 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.grid_red_ec7d {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.layout-71c5 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.layout-71c5 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.active-4297 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.notice_8922 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.background-east-6139 {
  display: grid;
  gap: 2rem;
}

.list_west_87ad {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.media_8338 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.steel-10b4 {
  flex: 1;
}

.chip_6056 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.chip_6056 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.purple-3d1d {
  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;
}

.preview-13d9 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.shade-818e {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.shade-818e span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.last_3c80 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.last_3c80 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.thick_f48e {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.thick_f48e strong {
  display: block;
  margin-bottom: 0.75rem;
}

.thick_f48e ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.thick_f48e li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.video-6336 {
  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 === */
.secondary_f926 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.alert_abc3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.south_2c21 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.advanced_560a h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.advanced_560a ol {
  list-style: none;
  counter-reset: toc-counter;
}

.advanced_560a ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.advanced_560a 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;
}

.advanced_560a ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.advanced_560a ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.shadow_white_6abd {
  padding: 3rem 0 5rem;
}

.menu-ebf1 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.menu-ebf1.tiny-ed65 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.gas-c819 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.item_out_bb9e {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.status_411e {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.status_411e h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.down-cead {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.column_steel_fd49 {
  text-align: center;
}

.content_2da7 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.backdrop-be34 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.middle-8cc7 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.motion-9174 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.advanced-556b {
  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;
}

.advanced-556b * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.advanced-556b:hover {
  box-shadow: var(--shadow-lg);
}

.advanced-556b.warm_207b {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.advanced-556b h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.advanced-556b ul {
  margin: 1rem 0;
}

.advanced-556b li {
  margin-bottom: 0.75rem;
}

.texture_over_a324 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.in_f89f {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.in_f89f a {
  font-weight: 600;
}

/* === Data Tables === */
.hero-c438 {
  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;
}

.hero-c438 table {
  width: 100%;
  min-width: 600px;
}

.hero-c438 thead {
  background-color: var(--primary-color);
  color: white;
}

.hero-c438 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.hero-c438 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.hero-c438 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.hero-c438 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.hot-4aa1 {
  list-style: none;
  margin: 1.5rem 0;
}

.hot-4aa1 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.hot-4aa1 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.container_0eb6::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-20d2::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 === */
.action_da39 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.paragraph_cold_6347 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.paragraph_cold_6347 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.paragraph_cold_6347 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.paragraph_cold_6347 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.action_da39 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.carousel_5a72 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.carousel_5a72::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.under-c896 {
  position: relative;
  margin-bottom: 3rem;
}

.outline_blue_c99c {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.outline_blue_c99c .block-1e03 {
  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;
}

.notification-black-78b1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.notification-black-78b1 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.notification-black-78b1 ul {
  margin: 1rem 0;
}

.notification-black-78b1 li {
  margin-bottom: 0.75rem;
}

.image-14d8 {
  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 === */
.last-5a8c {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.last-5a8c h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.avatar-old-c883 {
  list-style: none;
  margin: 1.5rem 0;
}

.avatar-old-c883 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.avatar-old-c883 a {
  font-weight: 600;
}

.card-pressed-10e3 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.hot-7447 {
  margin: 2.5rem 0;
}

.accent-f777 {
  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;
}

.accent-f777:hover {
  box-shadow: var(--shadow-lg);
}

.accent-f777.header-98f8 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.module_hard_0033 {
  flex-shrink: 0;
}

.module_hard_0033 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);
}

.fixed-c74c h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.link_current_48ad,
.container_new_0ab6,
.media-new-ae1d {
  width: 100%;
  margin: 1.5rem 0;
}

.block_gold_c5e5 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.block_gold_c5e5 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.info-mini-838f {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.info-mini-838f strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.module_b40d {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.module_b40d strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.prev-2602 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.gradient-south-06d3 {
  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;
}

.gradient-south-06d3:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.gradient-south-06d3.message_3cfe {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.gradient-south-06d3 .slider-new-6206 {
  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;
}

.gradient-south-06d3 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.input_ef09 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.hero-wide-28bd {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.hero-wide-28bd label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.outline_eddf {
  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 === */
.button_4ba5 {
  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;
}

.link_694d {
  background-color: var(--primary-color);
  color: white;
}

.link_694d:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.pagination_d1d3 {
  background-color: var(--text-secondary);
  color: white;
}

.pagination_d1d3:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.feature_61a6 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.feature_61a6:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.gradient_3881 {
  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;
}

.gradient_3881:hover {
  background-color: var(--primary-dark);
}

.hover_3f3e {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.content_action_3138 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.content_bronze_9f27 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.iron_7343 {
  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 === */
.aside-9bec {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.caption_0941 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.caption_0941 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.box_outer_b895 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.under_17bb {
  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;
}

.button_d7ed {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.module_d841 {
  list-style: none;
  counter-reset: rank-counter;
}

.module_d841 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.module_d841 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;
}

.narrow_fe09 {
  list-style: none;
}

.narrow_fe09 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.smooth_7893 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.content_a32f {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.content_a32f .smooth-950b {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.content_a32f .gradient_77db {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.texture_2478 {
  margin-top: 3rem;
}

.button_tiny_6d7f {
  width: 100%;
}

.table-inner-19f9 {
  background-color: #fef3c7;
}

.gas-40d4 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.frame-active-a89d {
  margin: 3rem 0;
}

.green-c7c8 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.shadow-b42f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.shadow-b42f:hover {
  box-shadow: var(--shadow-lg);
}

.shadow-b42f.tabs_warm_08be {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.accent_fast_5d0b {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.tag-ee20 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.tag-ee20 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.orange_f253 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.shadow-b42f blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.card-fd27 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.detail-166e {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.overlay-gold-7f40 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.new_d012 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.last-0ac9 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.slider_e708 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.tooltip-fixed-1d3d {
  max-width: 900px;
  margin: 0 auto;
}

.brown_6174 {
  margin: 2rem 0;
}

.orange-ed6a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.orange-ed6a summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.orange-ed6a summary::-webkit-details-marker {
  display: none;
}

.orange-ed6a summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.current_7b8e {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.orange-ed6a[open] .current_7b8e {
  transform: rotate(45deg);
}

.table-055d {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.table-055d p:last-child {
  margin-bottom: 0;
}

.accent-acc3 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.gallery_736a {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.up-13dd {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.up-13dd p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.up-13dd .button_4ba5 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.bright-40c7 {
  max-width: 900px;
  margin: 0 auto;
}

.up_f155 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.article_hot_a15c {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.article_hot_a15c.fn-success-20d2 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.text-under-b841 {
  font-size: 3rem;
  line-height: 1;
}

.accent-5bf0 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.pattern-wide-dfa3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.texture-ee10,
.card-6e22 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.texture-ee10 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.card-6e22 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.table_wood_032b,
.active_70a2 {
  margin: 1.5rem 0;
}

.table_wood_032b li,
.active_70a2 li {
  margin-bottom: 1rem;
}

.tag-paper-feb8 {
  margin: 3rem 0;
}

.wide_c561 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.wide_c561 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.wide_c561 ol {
  margin: 1rem 0;
}

.wide_c561 li {
  margin-bottom: 0.75rem;
}

.slider_dynamic_78c9 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.over-dde8 {
  margin: 2rem 0;
}

.middle-684b {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.block-center-f894 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.banner_d78b {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.grid_eefc {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.new-b0aa {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.label-cool-448d {
  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;
}

.label-cool-448d img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.avatar-03b6 {
  flex: 1;
}

.avatar-03b6 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.popup-stale-115d {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.tooltip_light_16f8 p {
  margin-bottom: 1rem;
}

.dropdown-0893 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.info_advanced_97b8 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.section-3a58 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.section-3a58 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.sort-a396 h3 {
  margin-bottom: 1.5rem;
}

.shade_glass_84f9 {
  display: grid;
  gap: 2rem;
}

.input-tall-f766 {
  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;
}

.input-tall-f766 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.input-tall-f766 h4 {
  margin: 0 0 0.25rem;
}

.input-tall-f766 p {
  margin: 0;
  font-size: 0.9375rem;
}

.border_hard_c532 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.copper-3c33 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.copper-3c33 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.copper-3c33 ul {
  margin: 1.5rem 0;
}

.copper-3c33 li {
  margin-bottom: 0.75rem;
}

.upper-a82f {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.steel_ad63 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.sidebar_huge_b30d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.border-e020 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.border-e020 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.pro-ed2d {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.pro-ed2d a {
  color: rgba(255, 255, 255, 0.8);
}

.modal-outer-5daa {
  list-style: none;
}

.modal-outer-5daa li {
  margin-bottom: 0.75rem;
}

.modal-outer-5daa a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.modal-outer-5daa a:hover {
  color: white;
}

.fixed-5a0f {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.preview_warm_4291 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.lite_40be {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.cool-67da {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.widget-middle-48b8 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .box_old_072e {
    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;
  }

  .tall-bb4b {
    font-size: 1.5rem !important;
  }

  .outer-3fce {
    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 */
  .advanced-556b,
  .hero_glass_59bd,
  .notification-black-78b1,
  .fixed-c74c,
  .accent_fast_5d0b,
  .shadow-b42f,
  .table-055d,
  .main_c300,
  .active-4297,
  .gas-c819 {
    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 */
  .feature-6c7e {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .steel-10b4 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .media_8338 {
    flex-shrink: 0;
  }

  .avatar-03b6 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .chip_6056,
  .preview-13d9 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .preview-13d9 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .outline_inner_2d33 {
    display: none;
  }

  /* Show mobile actions */
  .panel-left-f463 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .right_7ab8 {
    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;
  }

  .right_7ab8 svg {
    flex-shrink: 0;
  }

  .right_7ab8 .top-afde {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .right_7ab8 .hovered-3ca7 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .sort-wood-e955 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .mask_04bb {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .right_7ab8:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .thumbnail_9a38 {
    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;
  }

  .thumbnail_9a38.fn-active-20d2 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .thumbnail_9a38 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .thumbnail_9a38 li:last-child {
    border-bottom: none;
  }

  .thumbnail_9a38 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .text-stone-1175 {
    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;
  }

  .text-stone-1175 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .text-stone-1175 li:last-child {
    border-bottom: none;
  }

  .text-stone-1175 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .grid_under_cf7a {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .heading-93f1 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .hidden-selected-5da8,
  .info-4fbb {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .hidden-selected-5da8 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .info-4fbb {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .text-stone-1175.fn-active-20d2 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .box-stone-4163 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .module-7579 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .progress-rough-875b {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .info-smooth-9716 {
    margin-top: 0;
  }

  /* Hero section */
  .info-smooth-9716 {
    padding: 2rem 0 1.5rem;
  }

  .outer-3fce {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .active-4297 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .icon_0b76 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .widget_00a5 {
    max-width: 100%;
    border-radius: 8px;
  }

  .pressed_0648 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .panel_3ac4 {
    padding: 1rem;
  }

  .form-384d {
    font-size: 1.5rem;
  }

  .form-fixed-9a7b {
    font-size: 0.75rem;
  }

  .main_c300 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .action_aec5 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .action_aec5 .button_4ba5 {
    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 */
  .south_2c21 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .accent-f777 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .module_hard_0033 {
    margin-bottom: 1rem;
  }

  /* Author */
  .list_west_87ad {
    flex-direction: column;
  }

  .label-cool-448d {
    flex-direction: column;
  }

  /* Quotes */
  .accent_fast_5d0b {
    flex-direction: column;
  }

  /* Pros/Cons */
  .pattern-wide-dfa3 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .grid_eefc {
    flex-direction: column;
  }

  .grid_eefc .button_4ba5 {
    width: 100%;
  }

  /* Version comparison */
  .prev-2602 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .aside-9bec {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .sidebar_huge_b30d {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lite_40be {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .hero-c438,
  .container_new_0ab6,
  .primary-9dd3,
  .button_tiny_6d7f,
  .link_current_48ad,
  .media-new-ae1d {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hero-c438 table,
  .container_new_0ab6 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .outline_eddf {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .box_old_072e {
    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;
  }

  .tall-bb4b {
    font-size: 1.25rem !important;
  }

  .outer-3fce {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .module-7579 {
    position: fixed;
  }

  .progress-rough-875b {
    padding: 0.625rem 0;
  }

  .in_ac65 img {
    height: 26px;
  }

  .text-stone-1175 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .thumbnail_9a38 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .right_7ab8 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .right_7ab8 svg {
    width: 18px;
    height: 18px;
  }

  .right_7ab8 .top-afde {
    font-size: 0.7rem;
  }

  .right_7ab8 .hovered-3ca7 {
    font-size: 0.65rem;
  }

  .hidden-selected-5da8,
  .info-4fbb {
    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, .box_old_072e, .banner-left-9930, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .icon_0b76 {
    padding: 1rem;
  }

  .pressed_0648 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .panel_3ac4 {
    padding: 0.875rem;
  }

  .form-384d {
    font-size: 1.25rem;
  }

  .action_aec5 .button_4ba5 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .outer-3fce {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .button_4ba5 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .hover_3f3e {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .accent-f777 {
    padding: 1rem;
  }

  .module_hard_0033 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .advanced-556b,
  .row_silver_0d5a,
  .nav_1933,
  .media-a336 {
    padding: 1rem;
  }
}

@media print {
  .module-7579,
  .secondary_f926,
  .box-stone-4163,
  .button_4ba5,
  .steel_ad63 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .box_old_072e {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.primary_cc93 {
  margin-bottom: 3rem;
  text-align: center;
}

.tall-bb4b {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.message_56cb {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.tag-lower-687d,
.hovered-94b2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.hover-short-fb29 {
  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;
}

.hover-short-fb29:hover {
  transform: translateY(-5px);
}

.hover-short-fb29 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.hover-short-fb29 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.breadcrumb-cold-9c3f {
  margin: 3rem 0;
}

.info-d48b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.dark-1c25 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.dark-1c25:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.filter_blue_5ffe {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.paper-ee79 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.aside-8bec {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.button_rough_31c3 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.stone-9e6f {
  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;
}

.stone-9e6f:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.stone-9e6f.shadow_8f94 {
  border-left: 4px solid var(--primary-color);
}

.text-825f {
  flex-shrink: 0;
}

.text-825f svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.layout-soft-69ad {
  flex: 1;
}

.layout-soft-69ad h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.hovered-8652 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.upper-6427,
.liquid-7af8,
.card_d381 {
  margin-bottom: 1.5rem;
}

.upper-6427 h4,
.liquid-7af8 h4,
.card_d381 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.upper-6427 ul,
.liquid-7af8 ul,
.card_d381 ul {
  list-style: none;
  padding: 0;
}

.upper-6427 li,
.liquid-7af8 li,
.card_d381 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.upper-6427 li:before,
.liquid-7af8 li:before,
.card_d381 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.search_complex_3f2b {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.search_complex_3f2b 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;
}

.search_complex_3f2b a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.small_3e2a { margin: 2rem 0; }
.media-a17d { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.media-a17d h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.yellow_07ac p { margin-bottom: 1rem; line-height: 1.7; }
.yellow_07ac strong { color: var(--text-primary); }
.yellow_07ac ul { list-style: none; padding-left: 0; }
.yellow_07ac ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.yellow_07ac ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.block_orange_8507 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.list-center-72e6 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.list-center-72e6:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.light_aa40 { font-size: 3rem; margin-bottom: 1rem; }
.list-center-72e6 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.list-center-72e6 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.grid-adac { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.grid-adac span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.dropdown-lower-279f { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.right_c531 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.input-0281 { text-align: center; }
.rough-2301 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.warm_f59c { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.box_599a { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.steel_d09e { margin: 2rem 0; }
.green-ae5e { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.green-ae5e h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.green-ae5e p, .green-ae5e ul { line-height: 1.7; }
.green-ae5e ul { list-style: none; padding-left: 0; }
.green-ae5e ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.green-ae5e ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.left-17f1 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.feature_thick_9cec { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.table_brown_51be { text-align: center; }
.tag-da9b { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.top-939c { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.picture-south-6758 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.short_e2f8 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.box_aa0f { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.box_aa0f:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.box_aa0f h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.box_aa0f p, .box_aa0f ul { line-height: 1.7; }
.box_aa0f ul { list-style: none; padding-left: 0; }
.box_aa0f ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.box_aa0f ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 0ee6 */
.shadow-element-o0 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.2;
}
