/* ============================================
   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 */
.progress-0501 p,
.fixed_6940,
.texture-out-2d73,
.block-small-898d,
.logo-77b2,
.hero_lite_90e0,
.large-8744,
.summary_fast_5d38 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.tag-bronze-a026 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.tag-bronze-a026 > *,
.frame_last_5983,
.progress-0501,
.module-13e9 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .tag-bronze-a026 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .tag-bronze-a026 {
    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 === */
.section_stone_9bf4 {
  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 */
.section_stone_9bf4.header_3ae3 {
  box-shadow: var(--shadow-md);
}

.primary-simple-3010 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.basic-2de7 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.input_short_cd2a {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.bronze-f467 {
  display: none;
}

/* Hide mobile actions on desktop */
.feature-short-5ac8 {
  display: none;
}

.content_c2f1 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.content_c2f1 a:hover,
.content_c2f1 a.fn-active-9df6 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.highlight-out-6f58 {
  margin-left: 1rem;
}

.dropdown_fluid_5647 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.east-9b1c,
.preview_center_cfde {
  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;
}

.east-9b1c {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.east-9b1c: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;
}

.preview_center_cfde {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.preview_center_cfde: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;
}

.east-9b1c svg,
.preview_center_cfde svg {
  flex-shrink: 0;
}

.steel-0cb1 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.bright_d4c6 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.bright_d4c6::before,
.bright_d4c6::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.bright_d4c6::before {
  top: -7px;
}

.bright_d4c6::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.description-active-ac09 {
  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 === */
.texture-dim-ba1d {
  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);
}

.purple-ef4f {
  margin: 0 0 2rem;
  text-align: center;
}

.notice_af8e {
  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;
}

.notice_af8e:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.gradient-dynamic-a3f0 {
  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);
}

.gradient-dynamic-a3f0 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.warm-fd70 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.silver-d8d7 {
  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;
}

.silver-d8d7:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.row_plasma_34f4 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.focused-5b09 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.text-iron-fa18 {
  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);
}

.text-iron-fa18 .primary-c000 {
  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;
}

.text-iron-fa18 .primary-c000 svg {
  flex-shrink: 0;
}

.text-iron-fa18 .smooth-a0a0 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.text-iron-fa18 .smooth-a0a0: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);
}

.text-iron-fa18 .cool-a7f5 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.text-iron-fa18 .cool-a7f5: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) {
  .texture-dim-ba1d {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .notice_af8e {
    max-width: 100%;
  }

  .warm-fd70 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .silver-d8d7 {
    padding: 1rem;
  }

  .row_plasma_34f4 {
    font-size: 1.5rem;
  }

  .focused-5b09 {
    font-size: 0.75rem;
  }

  .gradient-dynamic-a3f0 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .text-iron-fa18 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .text-iron-fa18 .primary-c000 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .warm-fd70 {
    grid-template-columns: 1fr;
  }
}

.nav_purple_243c {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hover_light_62b8 {
  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 === */
.widget_bright_94cd {
  margin-bottom: 2.5rem;
}

.new-f55c {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.nav_purple_243c {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.caption_2a66 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wrapper_02c9 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.popup-middle-5539 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tag-down-980c {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.fresh_45e3 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.table-dim-4a64 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.table_inner_ecb6 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.table_inner_ecb6 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.column_slow_11a1 {
  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);
}

.liquid-4900 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.description_953c {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.active_8a5c {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.text_a3a2 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.gradient-wide-10a5 {
  display: grid;
  gap: 1rem;
}

.image-prev-4f99 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.pagination_white_2ee7 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.hover_pressed_5da1 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.shadow_0091 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.thumbnail-03a0 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.article-9365 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.article-9365 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.fixed_6940 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.element_7fdb {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.mask_7287 {
  display: grid;
  gap: 2rem;
}

.card_aa27 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.wrapper_02c9 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.caption_2a66 {
  flex: 1;
}

.tag-down-980c {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.tag-down-980c a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.hidden_dirty_1184 {
  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;
}

.fresh_45e3 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.surface-c5ff {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.surface-c5ff span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.hero-d996 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.hero-d996 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.modal_gold_0d52 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.modal_gold_0d52 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.modal_gold_0d52 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal_gold_0d52 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.card_2e37 {
  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 === */
.widget-c2b7 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.info_up_c714 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.soft_846d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.plasma_ffd4 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.plasma_ffd4 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.plasma_ffd4 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.plasma_ffd4 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;
}

.plasma_ffd4 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.plasma_ffd4 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.progress-0501 {
  padding: 3rem 0 5rem;
}

.module-13e9 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.module-13e9.image-inner-19db {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.texture-out-2d73 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.bottom_861c {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.summary_d252 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.summary_d252 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.inner-56e5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.media_96ab {
  text-align: center;
}

.over_e489 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.footer-155e {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.dropdown_8562 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.hero_lite_90e0 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.block-small-898d {
  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;
}

.block-small-898d * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.block-small-898d:hover {
  box-shadow: var(--shadow-lg);
}

.block-small-898d.red-bcc9 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.block-small-898d h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.block-small-898d ul {
  margin: 1rem 0;
}

.block-small-898d li {
  margin-bottom: 0.75rem;
}

.under-3f1e {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.border-df03 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.border-df03 a {
  font-weight: 600;
}

/* === Data Tables === */
.sort_bottom_712c {
  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;
}

.sort_bottom_712c table {
  width: 100%;
  min-width: 600px;
}

.sort_bottom_712c thead {
  background-color: var(--primary-color);
  color: white;
}

.sort_bottom_712c th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.sort_bottom_712c td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.sort_bottom_712c tbody tr:hover {
  background-color: var(--bg-secondary);
}

.sort_bottom_712c tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.modal-d231 {
  list-style: none;
  margin: 1.5rem 0;
}

.modal-d231 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.modal-d231 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.solid_3c0b::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-9df6::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 === */
.gallery-dark-f515 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.old-a084 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.old-a084 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.old-a084 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.old-a084 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.gallery-dark-f515 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.large-8744 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.large-8744::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.filter_e9bd {
  position: relative;
  margin-bottom: 3rem;
}

.description_east_788b {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.description_east_788b .tooltip-iron-9700 {
  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;
}

.accent_7878 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.accent_7878 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.accent_7878 ul {
  margin: 1rem 0;
}

.accent_7878 li {
  margin-bottom: 0.75rem;
}

.current_eba7 {
  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 === */
.border-gas-e46e {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.border-gas-e46e h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.sidebar_dd6a {
  list-style: none;
  margin: 1.5rem 0;
}

.sidebar_dd6a li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.sidebar_dd6a a {
  font-weight: 600;
}

.highlight_static_ef98 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.summary_fast_5d38 {
  margin: 2.5rem 0;
}

.status_0db4 {
  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;
}

.status_0db4:hover {
  box-shadow: var(--shadow-lg);
}

.status_0db4.container_db68 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.alert-93a4 {
  flex-shrink: 0;
}

.alert-93a4 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);
}

.surface_4cdc h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.focus_over_7aa0,
.alert_small_2da7,
.container_bb85 {
  width: 100%;
  margin: 1.5rem 0;
}

.tall-614d {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.tall-614d strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.lower-8a15 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.lower-8a15 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.article_334b {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.article_334b strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.right-e641 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.easy-b096 {
  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;
}

.easy-b096:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.easy-b096.info-blue-81b1 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.easy-b096 .current_577b {
  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;
}

.easy-b096 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.silver-c1ab {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.huge-5864 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.huge-5864 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.text_up_2d40 {
  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 === */
.primary-c000 {
  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;
}

.smooth-a0a0 {
  background-color: var(--primary-color);
  color: white;
}

.smooth-a0a0:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.cool-a7f5 {
  background-color: var(--text-secondary);
  color: white;
}

.cool-a7f5:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.accordion-lite-6a6f {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.accordion-lite-6a6f:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.out-b238 {
  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;
}

.out-b238:hover {
  background-color: var(--primary-dark);
}

.status_paper_cd3d {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.sidebar-basic-1326 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.tag-ecbb {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.chip-6aea {
  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 === */
.breadcrumb_8205 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.item_basic_5738 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.item_basic_5738 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.hidden_7020 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.lite-2d50 {
  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;
}

.accordion_8385 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.first-cb40 {
  list-style: none;
  counter-reset: rank-counter;
}

.first-cb40 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.first-cb40 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;
}

.photo-47bb {
  list-style: none;
}

.photo-47bb li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.in_29fd {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.message-dynamic-d6eb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.message-dynamic-d6eb .upper_86af {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.message-dynamic-d6eb .text-89e8 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.small_d574 {
  margin-top: 3rem;
}

.tooltip_light_7b72 {
  width: 100%;
}

.list_a08e {
  background-color: #fef3c7;
}

.block_4536 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.overlay-iron-42c0 {
  margin: 3rem 0;
}

.box-huge-ed01 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.hidden_yellow_6c63 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.hidden_yellow_6c63:hover {
  box-shadow: var(--shadow-lg);
}

.hidden_yellow_6c63.block-91b0 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.small_7e58 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.hidden_wide_4363 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.hidden_wide_4363 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.dirty-7464 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hidden_yellow_6c63 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.static_d34d {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.texture-f34b {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.notification_0d5e {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.article-40af {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.fluid_7410 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.photo_c074 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.photo_0603 {
  max-width: 900px;
  margin: 0 auto;
}

.hero-df6a {
  margin: 2rem 0;
}

.badge_9f16 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.badge_9f16 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.badge_9f16 summary::-webkit-details-marker {
  display: none;
}

.badge_9f16 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.steel_ab29 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.badge_9f16[open] .steel_ab29 {
  transform: rotate(45deg);
}

.hidden_middle_3f90 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.hidden_middle_3f90 p:last-child {
  margin-bottom: 0;
}

.feature_in_15ca {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.info_bb06 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.gradient_action_a1cc {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.gradient_action_a1cc p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.gradient_action_a1cc .primary-c000 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.title-prev-b87b {
  max-width: 900px;
  margin: 0 auto;
}

.prev_f249 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.heading-018c {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.heading-018c.fn-success-9df6 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.fixed-f15c {
  font-size: 3rem;
  line-height: 1;
}

.search_old_fbe2 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.shadow-1624 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.current_799a,
.gas_3a6a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.current_799a h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.gas_3a6a h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.pagination-down-eac7,
.frame-action-6e79 {
  margin: 1.5rem 0;
}

.pagination-down-eac7 li,
.frame-action-6e79 li {
  margin-bottom: 1rem;
}

.filter-new-58a8 {
  margin: 3rem 0;
}

.box-old-e7ae {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.box-old-e7ae h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.box-old-e7ae ol {
  margin: 1rem 0;
}

.box-old-e7ae li {
  margin-bottom: 0.75rem;
}

.accordion-bb0b {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.video-fc87 {
  margin: 2rem 0;
}

.summary_2175 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.sidebar-dark-aa78 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.list_de12 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.description_inner_e576 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.fixed-79a8 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.layout_d31b {
  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;
}

.layout_d31b img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.popup-middle-5539 {
  flex: 1;
}

.popup-middle-5539 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.picture-large-56cb {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.progress-da23 p {
  margin-bottom: 1rem;
}

.menu_iron_19ec {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.alert_silver_7f5f {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.tiny_b18c {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.tiny_b18c a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.widget_f4d7 h3 {
  margin-bottom: 1.5rem;
}

.gallery_cool_cbed {
  display: grid;
  gap: 2rem;
}

.hard-f272 {
  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;
}

.hard-f272 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.hard-f272 h4 {
  margin: 0 0 0.25rem;
}

.hard-f272 p {
  margin: 0;
  font-size: 0.9375rem;
}

.light_05cf {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.mask_0753 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.mask_0753 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.mask_0753 ul {
  margin: 1.5rem 0;
}

.mask_0753 li {
  margin-bottom: 0.75rem;
}

.last-52ca {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.breadcrumb-f418 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.notification-612b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.filter-75af h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.filter-75af p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.hero_red_61dc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.hero_red_61dc a {
  color: rgba(255, 255, 255, 0.8);
}

.outline-wide-aaaf {
  list-style: none;
}

.outline-wide-aaaf li {
  margin-bottom: 0.75rem;
}

.outline-wide-aaaf a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.outline-wide-aaaf a:hover {
  color: white;
}

.soft-f62b {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.overlay_middle_66d5 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.hovered_ed3e {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.solid_c505 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.column_6ecb {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .tag-bronze-a026 {
    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;
  }

  .action-2077 {
    font-size: 1.5rem !important;
  }

  .new-f55c {
    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 */
  .block-small-898d,
  .logo-77b2,
  .accent_7878,
  .surface_4cdc,
  .small_7e58,
  .hidden_yellow_6c63,
  .hidden_middle_3f90,
  .gradient-dynamic-a3f0,
  .fixed_6940,
  .texture-out-2d73 {
    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 */
  .nav_purple_243c {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .caption_2a66 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .wrapper_02c9 {
    flex-shrink: 0;
  }

  .popup-middle-5539 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .tag-down-980c,
  .fresh_45e3 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .fresh_45e3 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .input_short_cd2a {
    display: none;
  }

  /* Show mobile actions */
  .feature-short-5ac8 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .surface-simple-efbf {
    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;
  }

  .surface-simple-efbf svg {
    flex-shrink: 0;
  }

  .surface-simple-efbf .photo_9db4 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .surface-simple-efbf .background_green_4e9b {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .tiny-564a {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .info_full_da95 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .surface-simple-efbf:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .bronze-f467 {
    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;
  }

  .bronze-f467.fn-active-9df6 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .bronze-f467 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .bronze-f467 li:last-child {
    border-bottom: none;
  }

  .bronze-f467 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .content_c2f1 {
    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;
  }

  .content_c2f1 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .content_c2f1 li:last-child {
    border-bottom: none;
  }

  .content_c2f1 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .highlight-out-6f58 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .dropdown_fluid_5647 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .east-9b1c,
  .preview_center_cfde {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .east-9b1c {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .preview_center_cfde {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .content_c2f1.fn-active-9df6 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .steel-0cb1 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .section_stone_9bf4 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .primary-simple-3010 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .description-active-ac09 {
    margin-top: 0;
  }

  /* Hero section */
  .description-active-ac09 {
    padding: 2rem 0 1.5rem;
  }

  .new-f55c {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .fixed_6940 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .texture-dim-ba1d {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .notice_af8e {
    max-width: 100%;
    border-radius: 8px;
  }

  .warm-fd70 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .silver-d8d7 {
    padding: 1rem;
  }

  .row_plasma_34f4 {
    font-size: 1.5rem;
  }

  .focused-5b09 {
    font-size: 0.75rem;
  }

  .gradient-dynamic-a3f0 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .text-iron-fa18 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .text-iron-fa18 .primary-c000 {
    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 */
  .soft_846d {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .status_0db4 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .alert-93a4 {
    margin-bottom: 1rem;
  }

  /* Author */
  .card_aa27 {
    flex-direction: column;
  }

  .layout_d31b {
    flex-direction: column;
  }

  /* Quotes */
  .small_7e58 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .shadow-1624 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .description_inner_e576 {
    flex-direction: column;
  }

  .description_inner_e576 .primary-c000 {
    width: 100%;
  }

  /* Version comparison */
  .right-e641 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .breadcrumb_8205 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .notification-612b {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hovered_ed3e {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .sort_bottom_712c,
  .alert_small_2da7,
  .over-26fc,
  .tooltip_light_7b72,
  .focus_over_7aa0,
  .container_bb85 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sort_bottom_712c table,
  .alert_small_2da7 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .text_up_2d40 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .tag-bronze-a026 {
    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;
  }

  .action-2077 {
    font-size: 1.25rem !important;
  }

  .new-f55c {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .section_stone_9bf4 {
    position: fixed;
  }

  .primary-simple-3010 {
    padding: 0.625rem 0;
  }

  .basic-2de7 img {
    height: 26px;
  }

  .content_c2f1 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .bronze-f467 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .surface-simple-efbf {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .surface-simple-efbf svg {
    width: 18px;
    height: 18px;
  }

  .surface-simple-efbf .photo_9db4 {
    font-size: 0.7rem;
  }

  .surface-simple-efbf .background_green_4e9b {
    font-size: 0.65rem;
  }

  .east-9b1c,
  .preview_center_cfde {
    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, .tag-bronze-a026, .frame_last_5983, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .texture-dim-ba1d {
    padding: 1rem;
  }

  .warm-fd70 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .silver-d8d7 {
    padding: 0.875rem;
  }

  .row_plasma_34f4 {
    font-size: 1.25rem;
  }

  .text-iron-fa18 .primary-c000 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .new-f55c {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .primary-c000 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .status_paper_cd3d {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .status_0db4 {
    padding: 1rem;
  }

  .alert-93a4 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .block-small-898d,
  .under-e926,
  .module-5950,
  .secondary-large-8fe7 {
    padding: 1rem;
  }
}

@media print {
  .section_stone_9bf4,
  .widget-c2b7,
  .steel-0cb1,
  .primary-c000,
  .breadcrumb-f418 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .tag-bronze-a026 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.yellow-1a9d {
  margin-bottom: 3rem;
  text-align: center;
}

.action-2077 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.video_6bc1 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.accordion-down-a878,
.mask_25d3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.media-7f78 {
  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;
}

.media-7f78:hover {
  transform: translateY(-5px);
}

.media-7f78 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.media-7f78 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.tertiary_395c {
  margin: 3rem 0;
}

.popup-b659 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.link-center-8fa0 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.link-center-8fa0:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.carousel-0923 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.row-steel-64eb {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.text-outer-5c9d {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.slider-dim-c743 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.notice_08ec {
  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;
}

.notice_08ec:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.notice_08ec.north-bd00 {
  border-left: 4px solid var(--primary-color);
}

.pro_6de8 {
  flex-shrink: 0;
}

.pro_6de8 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.easy_c958 {
  flex: 1;
}

.easy_c958 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.paragraph-glass-af6f {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.article_2972,
.white_4412,
.complex_749e {
  margin-bottom: 1.5rem;
}

.article_2972 h4,
.white_4412 h4,
.complex_749e h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article_2972 ul,
.white_4412 ul,
.complex_749e ul {
  list-style: none;
  padding: 0;
}

.article_2972 li,
.white_4412 li,
.complex_749e li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.article_2972 li:before,
.white_4412 li:before,
.complex_749e li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.block_steel_970c {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.block_steel_970c 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;
}

.block_steel_970c a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.tertiary_c8c5 { margin: 2rem 0; }
.aside_103d { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.aside_103d h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.south-1e8f p { margin-bottom: 1rem; line-height: 1.7; }
.south-1e8f strong { color: var(--text-primary); }
.south-1e8f ul { list-style: none; padding-left: 0; }
.south-1e8f ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.south-1e8f ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.fresh_d1b5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.gas-06c2 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.gas-06c2:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.first_3076 { font-size: 3rem; margin-bottom: 1rem; }
.gas-06c2 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.gas-06c2 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.dropdown-motion-23ae { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.dropdown-motion-23ae span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.secondary-mini-7d8c { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.tooltip_c70d { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.focus_1000 { text-align: center; }
.slow_634b { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.cool_6c72 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.surface_65df { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.text-next-482a { margin: 2rem 0; }
.element_ab7b { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.element_ab7b h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.element_ab7b p, .element_ab7b ul { line-height: 1.7; }
.element_ab7b ul { list-style: none; padding-left: 0; }
.element_ab7b ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.element_ab7b ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.old-2b83 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.sort_west_cec6 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.dark_e15d { text-align: center; }
.selected_4154 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.pressed-a24b { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.paper-3c31 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.accent-465e { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.simple-5514 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.simple-5514:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.simple-5514 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.simple-5514 p, .simple-5514 ul { line-height: 1.7; }
.simple-5514 ul { list-style: none; padding-left: 0; }
.simple-5514 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.simple-5514 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 813a */
.ghost-box-v0 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.0;
}
