/* ============================================
   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 */
.table-stale-ec5a p,
.filter_orange_ddd8,
.form-complex-1b1f,
.progress-orange-e4dd,
.badge_ec87,
.paper-9169,
.row_current_7ab7,
.primary_hovered_31d4 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.gold_5e79 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.gold_5e79 > *,
.container-d237,
.table-stale-ec5a,
.highlight-steel-9e91 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .gold_5e79 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .gold_5e79 {
    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 === */
.backdrop_west_4621 {
  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 */
.backdrop_west_4621.avatar-c09a {
  box-shadow: var(--shadow-md);
}

.popup-4706 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.caption_next_8d50 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.sidebar-in-ccaa {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.hovered_30b2 {
  display: none;
}

/* Hide mobile actions on desktop */
.gas-709f {
  display: none;
}

.slider_black_83fb a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.slider_black_83fb a:hover,
.slider_black_83fb a.fn-active-b498 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.white_38f9 {
  margin-left: 1rem;
}

.prev_54f0 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.preview_a425,
.heading_6a1f {
  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;
}

.preview_a425 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.preview_a425: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;
}

.heading_6a1f {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.heading_6a1f: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;
}

.preview_a425 svg,
.heading_6a1f svg {
  flex-shrink: 0;
}

.footer_orange_04f1 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.filter_4af4 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.filter_4af4::before,
.filter_4af4::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.filter_4af4::before {
  top: -7px;
}

.filter_4af4::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.detail-middle-7be2 {
  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 === */
.frame_90a9 {
  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);
}

.overlay_7104 {
  margin: 0 0 2rem;
  text-align: center;
}

.paper_0371 {
  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;
}

.paper_0371:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.filter_yellow_65a2 {
  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);
}

.filter_yellow_65a2 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.selected-5601 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.stone_0ebf {
  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;
}

.stone_0ebf:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.popup_f7d3 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.row_hard_a0ca {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.complex_63a2 {
  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);
}

.complex_63a2 .table-31f1 {
  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;
}

.complex_63a2 .table-31f1 svg {
  flex-shrink: 0;
}

.complex_63a2 .breadcrumb_c518 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.complex_63a2 .breadcrumb_c518: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);
}

.complex_63a2 .slow-2256 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.complex_63a2 .slow-2256: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) {
  .frame_90a9 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .paper_0371 {
    max-width: 100%;
  }

  .selected-5601 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stone_0ebf {
    padding: 1rem;
  }

  .popup_f7d3 {
    font-size: 1.5rem;
  }

  .row_hard_a0ca {
    font-size: 0.75rem;
  }

  .filter_yellow_65a2 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .complex_63a2 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .complex_63a2 .table-31f1 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .selected-5601 {
    grid-template-columns: 1fr;
  }
}

.paragraph_tall_88fc {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.backdrop_9f60 {
  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 === */
.accordion_fresh_6a31 {
  margin-bottom: 2.5rem;
}

.detail-gas-fb00 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.paragraph_tall_88fc {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.over-5ec7 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.north-a43f {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.label-top-5078 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.slider-cool-a422 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.up_3008 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.active-0fdb {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.disabled_up_1be5 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.disabled_up_1be5 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.box-f1cd {
  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);
}

.nav_west_29f4 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.middle-f01e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.button-4ba8 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.sidebar-last-d15e {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.active_active_bd4c {
  display: grid;
  gap: 1rem;
}

.shade_paper_52bb {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.disabled_silver_3026 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.module-rough-3405 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.popup_pressed_63be {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.search-109d {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.bottom_a071 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.bottom_a071 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.filter_orange_ddd8 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.title-old-f823 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.carousel_1a9a {
  display: grid;
  gap: 2rem;
}

.breadcrumb-purple-0f3e {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.north-a43f {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.over-5ec7 {
  flex: 1;
}

.slider-cool-a422 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.slider-cool-a422 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.focused_6a0a {
  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;
}

.up_3008 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.box_first_c7cd {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.box_first_c7cd span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.summary-2225 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.summary-2225 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.description_large_151e {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.description_large_151e strong {
  display: block;
  margin-bottom: 0.75rem;
}

.description_large_151e ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.description_large_151e li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.banner_8efb {
  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 === */
.text_0beb {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.video-narrow-0241 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.section-selected-7e89 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.panel_2ec0 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.panel_2ec0 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.panel_2ec0 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.panel_2ec0 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;
}

.panel_2ec0 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.panel_2ec0 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.table-stale-ec5a {
  padding: 3rem 0 5rem;
}

.highlight-steel-9e91 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.highlight-steel-9e91.bright_92ba {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.form-complex-1b1f {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.pattern_bb0c {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.column_f853 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.column_f853 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.text-center-da54 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.hot_81c9 {
  text-align: center;
}

.detail_green_1fd7 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.background-499f {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.card-brown-7cbd {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.paper-9169 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.progress-orange-e4dd {
  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;
}

.progress-orange-e4dd * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.progress-orange-e4dd:hover {
  box-shadow: var(--shadow-lg);
}

.progress-orange-e4dd.surface_action_ee80 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.progress-orange-e4dd h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.progress-orange-e4dd ul {
  margin: 1rem 0;
}

.progress-orange-e4dd li {
  margin-bottom: 0.75rem;
}

.advanced-d776 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.full_53a9 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.full_53a9 a {
  font-weight: 600;
}

/* === Data Tables === */
.block-current-e788 {
  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;
}

.block-current-e788 table {
  width: 100%;
  min-width: 600px;
}

.block-current-e788 thead {
  background-color: var(--primary-color);
  color: white;
}

.block-current-e788 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.block-current-e788 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.block-current-e788 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.block-current-e788 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.yellow-ae9c {
  list-style: none;
  margin: 1.5rem 0;
}

.yellow-ae9c li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.yellow-ae9c li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.element-e8b0::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-b498::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 === */
.form_2aff {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.shadow-fluid-01ec {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.shadow-fluid-01ec img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.shadow-fluid-01ec strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.shadow-fluid-01ec span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form_2aff blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.row_current_7ab7 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.row_current_7ab7::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.short-9f09 {
  position: relative;
  margin-bottom: 3rem;
}

.dropdown_209e {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.dropdown_209e .popup_9aeb {
  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;
}

.status-0191 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.status-0191 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.status-0191 ul {
  margin: 1rem 0;
}

.status-0191 li {
  margin-bottom: 0.75rem;
}

.hot-641a {
  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 === */
.north_41d5 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.north_41d5 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.preview-solid-01ac {
  list-style: none;
  margin: 1.5rem 0;
}

.preview-solid-01ac li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.preview-solid-01ac a {
  font-weight: 600;
}

.right-d2b9 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.primary_hovered_31d4 {
  margin: 2.5rem 0;
}

.detail-7e3c {
  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;
}

.detail-7e3c:hover {
  box-shadow: var(--shadow-lg);
}

.detail-7e3c.bright-f3ad {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.pattern-408b {
  flex-shrink: 0;
}

.pattern-408b 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);
}

.focus-large-d1bc h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.info-6fdb,
.wood-d42f,
.down_cf20 {
  width: 100%;
  margin: 1.5rem 0;
}

.element_copper_3cb0 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.element_copper_3cb0 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.overlay_bcf9 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.overlay_bcf9 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.south_c3ce {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.south_c3ce strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.input_e02e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.large-096d {
  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;
}

.large-096d:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.large-096d.hard-42c0 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.large-096d .image-3969 {
  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;
}

.large-096d h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.link_e774 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.chip-6b48 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.chip-6b48 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.highlight_1cae {
  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 === */
.table-31f1 {
  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;
}

.breadcrumb_c518 {
  background-color: var(--primary-color);
  color: white;
}

.breadcrumb_c518:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.slow-2256 {
  background-color: var(--text-secondary);
  color: white;
}

.slow-2256:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.column-active-ae63 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.column-active-ae63:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.mask-3f84 {
  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;
}

.mask-3f84:hover {
  background-color: var(--primary-dark);
}

.shadow_d539 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.backdrop-2b0b {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.yellow-2cef {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.message-e949 {
  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 === */
.menu-519f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.thumbnail-selected-1668 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.thumbnail-selected-1668 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.inner_37ac {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.accordion_4bcc {
  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;
}

.logo_4d09 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.item_33ef {
  list-style: none;
  counter-reset: rank-counter;
}

.item_33ef li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.item_33ef 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;
}

.fixed_0bbb {
  list-style: none;
}

.fixed_0bbb li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.secondary-3eb7 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.hover-958e {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hover-958e .light_d1a7 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.hover-958e .pagination_focused_2d78 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.simple_f64d {
  margin-top: 3rem;
}

.panel-0ef3 {
  width: 100%;
}

.container_4e3a {
  background-color: #fef3c7;
}

.accordion_757b {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.white-0547 {
  margin: 3rem 0;
}

.tooltip_inner_64bf {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.status_fc7c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.status_fc7c:hover {
  box-shadow: var(--shadow-lg);
}

.status_fc7c.media-mini-9b86 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.thumbnail_red_60f9 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.caption-52fb strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.caption-52fb span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.slider_a6cc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.status_fc7c blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.focus-fixed-6b15 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.wrapper-4f20 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.mask-liquid-73c1 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.dropdown_dynamic_d420 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.complex_40e3 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.progress_00e0 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.solid-0c94 {
  max-width: 900px;
  margin: 0 auto;
}

.liquid-8cbb {
  margin: 2rem 0;
}

.shadow_up_7110 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.shadow_up_7110 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.shadow_up_7110 summary::-webkit-details-marker {
  display: none;
}

.shadow_up_7110 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.preview_af91 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.shadow_up_7110[open] .preview_af91 {
  transform: rotate(45deg);
}

.logo-advanced-a7f5 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.logo-advanced-a7f5 p:last-child {
  margin-bottom: 0;
}

.wood_628a {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.video_91dc {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.red_079c {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.red_079c p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.red_079c .table-31f1 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.photo_632f {
  max-width: 900px;
  margin: 0 auto;
}

.message-hard-e6ad {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.item-e8d0 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.item-e8d0.fn-success-b498 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.large-69f5 {
  font-size: 3rem;
  line-height: 1;
}

.footer-yellow-6b99 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.preview_upper_4308 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.red_3014,
.detail-39b1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.red_3014 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.detail-39b1 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.gradient_tall_ad8e,
.accordion-9b79 {
  margin: 1.5rem 0;
}

.gradient_tall_ad8e li,
.accordion-9b79 li {
  margin-bottom: 1rem;
}

.element-71dd {
  margin: 3rem 0;
}

.input-hard-092f {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.input-hard-092f h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.input-hard-092f ol {
  margin: 1rem 0;
}

.input-hard-092f li {
  margin-bottom: 0.75rem;
}

.row-847a {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.tall_4f26 {
  margin: 2rem 0;
}

.heading_d23a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.main_1bbe {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.down-76ba {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.thumbnail-static-9a57 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.info-large-06d4 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.gallery_motion_a96a {
  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;
}

.gallery_motion_a96a img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.label-top-5078 {
  flex: 1;
}

.label-top-5078 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.message_2e8e {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.slider_2890 p {
  margin-bottom: 1rem;
}

.article-white-fff0 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.module-white-6280 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.slider-058c {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.slider-058c a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.picture_prev_fcc5 h3 {
  margin-bottom: 1.5rem;
}

.breadcrumb-purple-1e54 {
  display: grid;
  gap: 2rem;
}

.aside-a1a9 {
  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;
}

.aside-a1a9 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.aside-a1a9 h4 {
  margin: 0 0 0.25rem;
}

.aside-a1a9 p {
  margin: 0;
  font-size: 0.9375rem;
}

.pro-6175 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.first_a663 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.first_a663 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.first_a663 ul {
  margin: 1.5rem 0;
}

.first_a663 li {
  margin-bottom: 0.75rem;
}

.main-liquid-b5ea {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.advanced_e364 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.component_focused_5cb0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.basic-4b86 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.basic-4b86 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.east_b204 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.east_b204 a {
  color: rgba(255, 255, 255, 0.8);
}

.link-advanced-1dc3 {
  list-style: none;
}

.link-advanced-1dc3 li {
  margin-bottom: 0.75rem;
}

.link-advanced-1dc3 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.link-advanced-1dc3 a:hover {
  color: white;
}

.footer-wood-4f47 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.nav_de9b {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.photo_static_92f7 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.notification_0c9d {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.input-over-58eb {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .gold_5e79 {
    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;
  }

  .static_1d55 {
    font-size: 1.5rem !important;
  }

  .detail-gas-fb00 {
    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 */
  .progress-orange-e4dd,
  .badge_ec87,
  .status-0191,
  .focus-large-d1bc,
  .thumbnail_red_60f9,
  .status_fc7c,
  .logo-advanced-a7f5,
  .filter_yellow_65a2,
  .filter_orange_ddd8,
  .form-complex-1b1f {
    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 */
  .paragraph_tall_88fc {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .over-5ec7 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .north-a43f {
    flex-shrink: 0;
  }

  .label-top-5078 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .slider-cool-a422,
  .up_3008 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .up_3008 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .sidebar-in-ccaa {
    display: none;
  }

  /* Show mobile actions */
  .gas-709f {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .search-current-4e54 {
    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;
  }

  .search-current-4e54 svg {
    flex-shrink: 0;
  }

  .search-current-4e54 .thumbnail_next_7ffe {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .search-current-4e54 .sort_56d1 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .nav-2959 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .title_up_16b3 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .search-current-4e54:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .hovered_30b2 {
    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;
  }

  .hovered_30b2.fn-active-b498 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hovered_30b2 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .hovered_30b2 li:last-child {
    border-bottom: none;
  }

  .hovered_30b2 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .slider_black_83fb {
    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;
  }

  .slider_black_83fb li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .slider_black_83fb li:last-child {
    border-bottom: none;
  }

  .slider_black_83fb a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .white_38f9 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .prev_54f0 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .preview_a425,
  .heading_6a1f {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .preview_a425 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .heading_6a1f {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .slider_black_83fb.fn-active-b498 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .footer_orange_04f1 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .backdrop_west_4621 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .popup-4706 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .detail-middle-7be2 {
    margin-top: 0;
  }

  /* Hero section */
  .detail-middle-7be2 {
    padding: 2rem 0 1.5rem;
  }

  .detail-gas-fb00 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .filter_orange_ddd8 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .frame_90a9 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .paper_0371 {
    max-width: 100%;
    border-radius: 8px;
  }

  .selected-5601 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stone_0ebf {
    padding: 1rem;
  }

  .popup_f7d3 {
    font-size: 1.5rem;
  }

  .row_hard_a0ca {
    font-size: 0.75rem;
  }

  .filter_yellow_65a2 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .complex_63a2 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .complex_63a2 .table-31f1 {
    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 */
  .section-selected-7e89 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .detail-7e3c {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .pattern-408b {
    margin-bottom: 1rem;
  }

  /* Author */
  .breadcrumb-purple-0f3e {
    flex-direction: column;
  }

  .gallery_motion_a96a {
    flex-direction: column;
  }

  /* Quotes */
  .thumbnail_red_60f9 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .preview_upper_4308 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .thumbnail-static-9a57 {
    flex-direction: column;
  }

  .thumbnail-static-9a57 .table-31f1 {
    width: 100%;
  }

  /* Version comparison */
  .input_e02e {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .menu-519f {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .component_focused_5cb0 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .photo_static_92f7 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .block-current-e788,
  .wood-d42f,
  .hover_9b40,
  .panel-0ef3,
  .info-6fdb,
  .down_cf20 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .block-current-e788 table,
  .wood-d42f table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .highlight_1cae {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .gold_5e79 {
    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;
  }

  .static_1d55 {
    font-size: 1.25rem !important;
  }

  .detail-gas-fb00 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .backdrop_west_4621 {
    position: fixed;
  }

  .popup-4706 {
    padding: 0.625rem 0;
  }

  .caption_next_8d50 img {
    height: 26px;
  }

  .slider_black_83fb {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .hovered_30b2 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .search-current-4e54 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .search-current-4e54 svg {
    width: 18px;
    height: 18px;
  }

  .search-current-4e54 .thumbnail_next_7ffe {
    font-size: 0.7rem;
  }

  .search-current-4e54 .sort_56d1 {
    font-size: 0.65rem;
  }

  .preview_a425,
  .heading_6a1f {
    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, .gold_5e79, .container-d237, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .frame_90a9 {
    padding: 1rem;
  }

  .selected-5601 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .stone_0ebf {
    padding: 0.875rem;
  }

  .popup_f7d3 {
    font-size: 1.25rem;
  }

  .complex_63a2 .table-31f1 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .detail-gas-fb00 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .table-31f1 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .shadow_d539 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .detail-7e3c {
    padding: 1rem;
  }

  .pattern-408b span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .progress-orange-e4dd,
  .paper_c2a6,
  .grid_yellow_7d33,
  .aside-first-08c5 {
    padding: 1rem;
  }
}

@media print {
  .backdrop_west_4621,
  .text_0beb,
  .footer_orange_04f1,
  .table-31f1,
  .advanced_e364 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .gold_5e79 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.texture_6019 {
  margin-bottom: 3rem;
  text-align: center;
}

.static_1d55 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.item_6787 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.heading-active-ecd8,
.top-575c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.sidebar_be69 {
  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;
}

.sidebar_be69:hover {
  transform: translateY(-5px);
}

.sidebar_be69 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.sidebar_be69 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.module_left_52a8 {
  margin: 3rem 0;
}

.current-8a9a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.highlight-cd1c {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.highlight-cd1c:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.main-steel-d4da {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.tertiary-next-5e5d {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.copper_0e05 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.hard-1d14 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.last_1ed1 {
  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;
}

.last_1ed1:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.last_1ed1.green_12e7 {
  border-left: 4px solid var(--primary-color);
}

.green_271a {
  flex-shrink: 0;
}

.green_271a svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.pagination_hot_90cd {
  flex: 1;
}

.pagination_hot_90cd h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.video-orange-4df3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.preview_d387,
.texture_0135,
.surface-d0c3 {
  margin-bottom: 1.5rem;
}

.preview_d387 h4,
.texture_0135 h4,
.surface-d0c3 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.preview_d387 ul,
.texture_0135 ul,
.surface-d0c3 ul {
  list-style: none;
  padding: 0;
}

.preview_d387 li,
.texture_0135 li,
.surface-d0c3 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.preview_d387 li:before,
.texture_0135 li:before,
.surface-d0c3 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.surface-f4d8 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.surface-f4d8 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;
}

.surface-f4d8 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.center-8404 { margin: 2rem 0; }
.carousel_3b82 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.carousel_3b82 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.dirty_5716 p { margin-bottom: 1rem; line-height: 1.7; }
.dirty_5716 strong { color: var(--text-primary); }
.dirty_5716 ul { list-style: none; padding-left: 0; }
.dirty_5716 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.dirty_5716 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.module-0658 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.fast-82ca { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.fast-82ca:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.carousel-8c51 { font-size: 3rem; margin-bottom: 1rem; }
.fast-82ca h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.fast-82ca p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.white-0f8e { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.white-0f8e span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.blue-8cac { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.input-paper-27d4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.main-fluid-6f17 { text-align: center; }
.sidebar_mini_7898 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.lower-3bdb { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.fresh-525c { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.glass_9909 { margin: 2rem 0; }
.main-iron-ef9c { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.main-iron-ef9c h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.main-iron-ef9c p, .main-iron-ef9c ul { line-height: 1.7; }
.main-iron-ef9c ul { list-style: none; padding-left: 0; }
.main-iron-ef9c ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.main-iron-ef9c ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.gallery_out_8fd0 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.preview-stone-5c8d { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.border_6d33 { text-align: center; }
.shade-small-7e88 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.main-5be2 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.form_9f27 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.list-8707 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.mask-light-fd21 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.mask-light-fd21:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.mask-light-fd21 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.mask-light-fd21 p, .mask-light-fd21 ul { line-height: 1.7; }
.mask-light-fd21 ul { list-style: none; padding-left: 0; }
.mask-light-fd21 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.mask-light-fd21 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: d61a */
.phantom-card-w4 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.0;
}
