/* ============================================
   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 */
.detail-dirty-376b p,
.sort_d90b,
.pro-e530,
.description_hovered_9179,
.button_6e38,
.down_2aee,
.element-iron-89c8,
.fluid_5789 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.heading-6da7 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.heading-6da7 > *,
.next_0855,
.detail-dirty-376b,
.disabled-south-8ad4 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .heading-6da7 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .heading-6da7 {
    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 === */
.up_5f4a {
  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 */
.up_5f4a.picture_785d {
  box-shadow: var(--shadow-md);
}

.sort-south-a465 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.gallery-prev-8118 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.search_up_5bcc {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.background-e83d {
  display: none;
}

/* Hide mobile actions on desktop */
.popup-7011 {
  display: none;
}

.secondary_8e0b a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.secondary_8e0b a:hover,
.secondary_8e0b a.fn-active-a824 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.under_c664 {
  margin-left: 1rem;
}

.stale_13c7 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.thumbnail_79cd,
.orange_0ef9 {
  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;
}

.thumbnail_79cd {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.thumbnail_79cd: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;
}

.orange_0ef9 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.orange_0ef9: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;
}

.thumbnail_79cd svg,
.orange_0ef9 svg {
  flex-shrink: 0;
}

.solid_ed4a {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hover-east-0c71 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.hover-east-0c71::before,
.hover-east-0c71::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.hover-east-0c71::before {
  top: -7px;
}

.hover-east-0c71::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.up_6014 {
  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 === */
.shadow_dynamic_73d7 {
  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);
}

.input-west-d013 {
  margin: 0 0 2rem;
  text-align: center;
}

.paragraph-silver-ba5e {
  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;
}

.paragraph-silver-ba5e:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.notice-thick-22ff {
  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);
}

.notice-thick-22ff strong {
  color: var(--primary-color);
  font-weight: 700;
}

.lite-897d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.overlay-e3aa {
  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;
}

.overlay-e3aa:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.bright_5f33 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.border-cf9c {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.form_6ed1 {
  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);
}

.form_6ed1 .link_plasma_cb5e {
  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;
}

.form_6ed1 .link_plasma_cb5e svg {
  flex-shrink: 0;
}

.form_6ed1 .breadcrumb-light-d83e {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.form_6ed1 .breadcrumb-light-d83e: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);
}

.form_6ed1 .picture_a54c {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.form_6ed1 .picture_a54c: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) {
  .shadow_dynamic_73d7 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .paragraph-silver-ba5e {
    max-width: 100%;
  }

  .lite-897d {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .overlay-e3aa {
    padding: 1rem;
  }

  .bright_5f33 {
    font-size: 1.5rem;
  }

  .border-cf9c {
    font-size: 0.75rem;
  }

  .notice-thick-22ff {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .form_6ed1 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .form_6ed1 .link_plasma_cb5e {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .lite-897d {
    grid-template-columns: 1fr;
  }
}

.dim-0f68 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hero-35a8 {
  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 === */
.copper_035d {
  margin-bottom: 2.5rem;
}

.iron-4f94 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.dim-0f68 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.red-cd62 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hover_95a5 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.wrapper-up-260a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.modal_f645 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.article-under-cf6b {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.picture-pro-794e {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pressed-aa83 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pressed-aa83 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.focus_6794 {
  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);
}

.highlight_center_a4c8 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.summary_narrow_d0e7 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.message_basic_f649 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.active_000e {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.pro_55cf {
  display: grid;
  gap: 1rem;
}

.aside-5311 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.notice-dffc {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.dropdown-dynamic-7d86 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.full_063e {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.picture_bronze_9e6f {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.hidden_out_f7f9 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.hidden_out_f7f9 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.sort_d90b {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.tertiary-bottom-f407 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.simple-7c89 {
  display: grid;
  gap: 2rem;
}

.nav_32a5 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.hover_95a5 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.red-cd62 {
  flex: 1;
}

.modal_f645 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.modal_f645 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.dropdown_outer_5bd6 {
  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;
}

.article-under-cf6b {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.item-current-6d48 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.item-current-6d48 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.sidebar_95d7 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.sidebar_95d7 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.progress-slow-6b1a {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.progress-slow-6b1a strong {
  display: block;
  margin-bottom: 0.75rem;
}

.progress-slow-6b1a ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.progress-slow-6b1a li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.mask-solid-cbe4 {
  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 === */
.upper_f135 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.badge-full-1c66 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.accent-ca3c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.shade-over-702d h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.shade-over-702d ol {
  list-style: none;
  counter-reset: toc-counter;
}

.shade-over-702d ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.shade-over-702d 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;
}

.shade-over-702d ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.shade-over-702d ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.detail-dirty-376b {
  padding: 3rem 0 5rem;
}

.disabled-south-8ad4 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.disabled-south-8ad4.alert_1186 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.pro-e530 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.disabled-hard-1c59 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.summary-stone-609a {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.summary-stone-609a h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.nav_ef78 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.hidden-black-514b {
  text-align: center;
}

.title_west_f35e {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.middle_01f9 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.light_5821 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.down_2aee {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.description_hovered_9179 {
  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;
}

.description_hovered_9179 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.description_hovered_9179:hover {
  box-shadow: var(--shadow-lg);
}

.description_hovered_9179.wrapper_mini_7581 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.description_hovered_9179 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.description_hovered_9179 ul {
  margin: 1rem 0;
}

.description_hovered_9179 li {
  margin-bottom: 0.75rem;
}

.frame-red-5734 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.cold_9ef0 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.cold_9ef0 a {
  font-weight: 600;
}

/* === Data Tables === */
.element_48b7 {
  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;
}

.element_48b7 table {
  width: 100%;
  min-width: 600px;
}

.element_48b7 thead {
  background-color: var(--primary-color);
  color: white;
}

.element_48b7 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.element_48b7 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.element_48b7 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.element_48b7 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.media_a29f {
  list-style: none;
  margin: 1.5rem 0;
}

.media_a29f li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.media_a29f li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.block-3d27::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-a824::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 === */
.hidden-clean-de9b {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.icon-solid-84d6 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.icon-solid-84d6 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.icon-solid-84d6 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.icon-solid-84d6 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hidden-clean-de9b blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.element-iron-89c8 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.element-iron-89c8::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.accent-pink-5680 {
  position: relative;
  margin-bottom: 3rem;
}

.focus_63dc {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.focus_63dc .huge-3b8c {
  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;
}

.feature-lite-b2fd {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.feature-lite-b2fd h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.feature-lite-b2fd ul {
  margin: 1rem 0;
}

.feature-lite-b2fd li {
  margin-bottom: 0.75rem;
}

.content_11d1 {
  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 === */
.frame-copper-a230 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.frame-copper-a230 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.copper-1acd {
  list-style: none;
  margin: 1.5rem 0;
}

.copper-1acd li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.copper-1acd a {
  font-weight: 600;
}

.purple_6a74 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.fluid_5789 {
  margin: 2.5rem 0;
}

.brown_92cb {
  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;
}

.brown_92cb:hover {
  box-shadow: var(--shadow-lg);
}

.brown_92cb.prev-02ef {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.alert-6e4e {
  flex-shrink: 0;
}

.alert-6e4e 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);
}

.message_brown_3245 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.fresh-19c0,
.grid_right_5cd4,
.progress_f834 {
  width: 100%;
  margin: 1.5rem 0;
}

.badge-right-336b {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.badge-right-336b strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.bright-7a5a {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.bright-7a5a strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.in-baa8 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.in-baa8 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.old_7352 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.narrow_055b {
  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;
}

.narrow_055b:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.narrow_055b.progress_9ce6 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.narrow_055b .under_0302 {
  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;
}

.narrow_055b h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.text_10b5 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.green-f75c {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.green-f75c label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.menu_9c40 {
  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 === */
.link_plasma_cb5e {
  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-light-d83e {
  background-color: var(--primary-color);
  color: white;
}

.breadcrumb-light-d83e:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.picture_a54c {
  background-color: var(--text-secondary);
  color: white;
}

.picture_a54c:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.gold-5d8c {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.gold-5d8c:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.current-1014 {
  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;
}

.current-1014:hover {
  background-color: var(--primary-dark);
}

.slider_058f {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.up_a7f6 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.fast-383d {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.filter-3ac0 {
  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 === */
.feature_b34c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.active-next-e83f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.active-next-e83f h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.link-paper-0c06 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.pro-76ed {
  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_625e {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.silver-a1cf {
  list-style: none;
  counter-reset: rank-counter;
}

.silver-a1cf li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.silver-a1cf 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;
}

.east_02a2 {
  list-style: none;
}

.east_02a2 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.tooltip_21d2 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.lower_a34f {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.lower_a34f .row_ff9f {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.lower_a34f .easy_fd7f {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.cold_cb63 {
  margin-top: 3rem;
}

.preview_7eef {
  width: 100%;
}

.accordion-purple-de98 {
  background-color: #fef3c7;
}

.fixed-fb9f {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.header_7a78 {
  margin: 3rem 0;
}

.hover_out_bd07 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.title_05b0 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.title_05b0:hover {
  box-shadow: var(--shadow-lg);
}

.title_05b0.heading_ed11 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.summary_15c7 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.huge-29e5 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.huge-29e5 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.caption-complex-e34f {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.title_05b0 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.button_20b0 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tooltip_e90d {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.title-hovered-5c7f {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.photo-fc0b {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.badge_93d5 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.heading-f4b9 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.soft-d6e1 {
  max-width: 900px;
  margin: 0 auto;
}

.cool_3ccd {
  margin: 2rem 0;
}

.simple-f503 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.simple-f503 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.simple-f503 summary::-webkit-details-marker {
  display: none;
}

.simple-f503 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.container_new_cb59 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.simple-f503[open] .container_new_cb59 {
  transform: rotate(45deg);
}

.popup-simple-f52f {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.popup-simple-f52f p:last-child {
  margin-bottom: 0;
}

.summary_cacf {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.logo-7ad7 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.info_tiny_dc6d {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.info_tiny_dc6d p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.info_tiny_dc6d .link_plasma_cb5e {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.main_gold_bdf0 {
  max-width: 900px;
  margin: 0 auto;
}

.panel-stone-112e {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.narrow_5fc5 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.narrow_5fc5.fn-success-a824 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.highlight_dark_9d37 {
  font-size: 3rem;
  line-height: 1;
}

.hover-old-765d h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.layout_cool_ff83 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.progress-simple-1b55,
.list_8cb0 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.progress-simple-1b55 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.list_8cb0 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.mask-76c9,
.module-bd88 {
  margin: 1.5rem 0;
}

.mask-76c9 li,
.module-bd88 li {
  margin-bottom: 1rem;
}

.detail-4519 {
  margin: 3rem 0;
}

.column_fresh_7851 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.column_fresh_7851 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.column_fresh_7851 ol {
  margin: 1rem 0;
}

.column_fresh_7851 li {
  margin-bottom: 0.75rem;
}

.motion_46b1 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.notice_up_f9f1 {
  margin: 2rem 0;
}

.under-b51d {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.chip-9f2d {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.current_7056 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.overlay_a938 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.label-7866 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.red-cda5 {
  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;
}

.red-cda5 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.wrapper-up-260a {
  flex: 1;
}

.wrapper-up-260a h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.motion-e07a {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.cool-74fa p {
  margin-bottom: 1rem;
}

.menu_paper_0dd3 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.breadcrumb-action-d91e {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.static_99e5 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.static_99e5 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.slider-purple-ffa4 h3 {
  margin-bottom: 1.5rem;
}

.prev_2aaf {
  display: grid;
  gap: 2rem;
}

.aside_06fc {
  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_06fc img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.aside_06fc h4 {
  margin: 0 0 0.25rem;
}

.aside_06fc p {
  margin: 0;
  font-size: 0.9375rem;
}

.info-996b {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.container_8ebc {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.container_8ebc h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.container_8ebc ul {
  margin: 1.5rem 0;
}

.container_8ebc li {
  margin-bottom: 0.75rem;
}

.dim_ee09 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.breadcrumb_clean_a233 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.stale_601e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.hidden_4a18 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.hidden_4a18 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.caption-6a57 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.caption-6a57 a {
  color: rgba(255, 255, 255, 0.8);
}

.form-302f {
  list-style: none;
}

.form-302f li {
  margin-bottom: 0.75rem;
}

.form-302f a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.form-302f a:hover {
  color: white;
}

.search-cool-f0a8 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.surface_efbf {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.module-df60 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.disabled_stone_4af6 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.secondary-hard-d506 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .heading-6da7 {
    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;
  }

  .text_pressed_dd86 {
    font-size: 1.5rem !important;
  }

  .iron-4f94 {
    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 */
  .description_hovered_9179,
  .button_6e38,
  .feature-lite-b2fd,
  .message_brown_3245,
  .summary_15c7,
  .title_05b0,
  .popup-simple-f52f,
  .notice-thick-22ff,
  .sort_d90b,
  .pro-e530 {
    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 */
  .dim-0f68 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .red-cd62 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .hover_95a5 {
    flex-shrink: 0;
  }

  .wrapper-up-260a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .modal_f645,
  .article-under-cf6b {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .article-under-cf6b {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .search_up_5bcc {
    display: none;
  }

  /* Show mobile actions */
  .popup-7011 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .wrapper_8e50 {
    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;
  }

  .wrapper_8e50 svg {
    flex-shrink: 0;
  }

  .wrapper_8e50 .selected-5fd1 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .wrapper_8e50 .main_2195 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .hero-dark-8fe3 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .hero_5539 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .wrapper_8e50:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .background-e83d {
    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;
  }

  .background-e83d.fn-active-a824 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .background-e83d li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .background-e83d li:last-child {
    border-bottom: none;
  }

  .background-e83d a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .secondary_8e0b {
    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;
  }

  .secondary_8e0b li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .secondary_8e0b li:last-child {
    border-bottom: none;
  }

  .secondary_8e0b a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .under_c664 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .stale_13c7 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .thumbnail_79cd,
  .orange_0ef9 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .thumbnail_79cd {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .orange_0ef9 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .secondary_8e0b.fn-active-a824 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .solid_ed4a {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .up_5f4a {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .sort-south-a465 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .up_6014 {
    margin-top: 0;
  }

  /* Hero section */
  .up_6014 {
    padding: 2rem 0 1.5rem;
  }

  .iron-4f94 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .sort_d90b {
    font-size: 1rem;
  }

  /* Hero brand image */
  .shadow_dynamic_73d7 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .paragraph-silver-ba5e {
    max-width: 100%;
    border-radius: 8px;
  }

  .lite-897d {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .overlay-e3aa {
    padding: 1rem;
  }

  .bright_5f33 {
    font-size: 1.5rem;
  }

  .border-cf9c {
    font-size: 0.75rem;
  }

  .notice-thick-22ff {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .form_6ed1 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .form_6ed1 .link_plasma_cb5e {
    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 */
  .accent-ca3c {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .brown_92cb {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .alert-6e4e {
    margin-bottom: 1rem;
  }

  /* Author */
  .nav_32a5 {
    flex-direction: column;
  }

  .red-cda5 {
    flex-direction: column;
  }

  /* Quotes */
  .summary_15c7 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .layout_cool_ff83 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .overlay_a938 {
    flex-direction: column;
  }

  .overlay_a938 .link_plasma_cb5e {
    width: 100%;
  }

  /* Version comparison */
  .old_7352 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .feature_b34c {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .stale_601e {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .module-df60 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .element_48b7,
  .grid_right_5cd4,
  .section_50af,
  .preview_7eef,
  .fresh-19c0,
  .progress_f834 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .element_48b7 table,
  .grid_right_5cd4 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .menu_9c40 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .heading-6da7 {
    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;
  }

  .text_pressed_dd86 {
    font-size: 1.25rem !important;
  }

  .iron-4f94 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .up_5f4a {
    position: fixed;
  }

  .sort-south-a465 {
    padding: 0.625rem 0;
  }

  .gallery-prev-8118 img {
    height: 26px;
  }

  .secondary_8e0b {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .background-e83d {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .wrapper_8e50 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .wrapper_8e50 svg {
    width: 18px;
    height: 18px;
  }

  .wrapper_8e50 .selected-5fd1 {
    font-size: 0.7rem;
  }

  .wrapper_8e50 .main_2195 {
    font-size: 0.65rem;
  }

  .thumbnail_79cd,
  .orange_0ef9 {
    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, .heading-6da7, .next_0855, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .shadow_dynamic_73d7 {
    padding: 1rem;
  }

  .lite-897d {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .overlay-e3aa {
    padding: 0.875rem;
  }

  .bright_5f33 {
    font-size: 1.25rem;
  }

  .form_6ed1 .link_plasma_cb5e {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .iron-4f94 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .link_plasma_cb5e {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .slider_058f {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .brown_92cb {
    padding: 1rem;
  }

  .alert-6e4e span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .description_hovered_9179,
  .dropdown_8ad5,
  .center_b152,
  .secondary-narrow-f671 {
    padding: 1rem;
  }
}

@media print {
  .up_5f4a,
  .upper_f135,
  .solid_ed4a,
  .link_plasma_cb5e,
  .breadcrumb_clean_a233 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .heading-6da7 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.medium-2ecc {
  margin-bottom: 3rem;
  text-align: center;
}

.text_pressed_dd86 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.box_cde2 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.cool-f72b,
.hero-hot-606a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.button-motion-8bb8 {
  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;
}

.button-motion-8bb8:hover {
  transform: translateY(-5px);
}

.button-motion-8bb8 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.button-motion-8bb8 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.box_af71 {
  margin: 3rem 0;
}

.pattern_copper_1629 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.upper-bf14 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.upper-bf14:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.menu_hot_01b8 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.rough_0a12 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.backdrop_7f0b {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.fixed_8dd2 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.table_3f61 {
  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;
}

.table_3f61:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.table_3f61.warm_7b04 {
  border-left: 4px solid var(--primary-color);
}

.out-baa0 {
  flex-shrink: 0;
}

.out-baa0 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.logo_gas_ad1b {
  flex: 1;
}

.logo_gas_ad1b h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.box-first-6530 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.static_8e73,
.outline_upper_8457,
.north-0f0a {
  margin-bottom: 1.5rem;
}

.static_8e73 h4,
.outline_upper_8457 h4,
.north-0f0a h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.static_8e73 ul,
.outline_upper_8457 ul,
.north-0f0a ul {
  list-style: none;
  padding: 0;
}

.static_8e73 li,
.outline_upper_8457 li,
.north-0f0a li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.static_8e73 li:before,
.outline_upper_8457 li:before,
.north-0f0a li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.tooltip-west-e42d {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.tooltip-west-e42d 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;
}

.tooltip-west-e42d a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.search_95cf { margin: 2rem 0; }
.text_c285 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.text_c285 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.info_4578 p { margin-bottom: 1rem; line-height: 1.7; }
.info_4578 strong { color: var(--text-primary); }
.info_4578 ul { list-style: none; padding-left: 0; }
.info_4578 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.info_4578 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.orange-51ad { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.detail-current-5c62 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.detail-current-5c62:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.panel-74d4 { font-size: 3rem; margin-bottom: 1rem; }
.detail-current-5c62 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.detail-current-5c62 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.notice-outer-79d8 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.notice-outer-79d8 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.button-a788 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.backdrop_fdc7 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.summary-gas-391e { text-align: center; }
.surface_right_66b6 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.frame_dynamic_a1ff { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.sort-e208 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.border_a81e { margin: 2rem 0; }
.up_d584 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.up_d584 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.up_d584 p, .up_d584 ul { line-height: 1.7; }
.up_d584 ul { list-style: none; padding-left: 0; }
.up_d584 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.up_d584 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.hover_bfd3 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.popup_up_7c88 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.wide-50d0 { text-align: center; }
.outline_left_32e3 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.selected-a57a { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.article-short-de09 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.middle-136b { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.modal-tiny-670a { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.modal-tiny-670a:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.modal-tiny-670a h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.modal-tiny-670a p, .modal-tiny-670a ul { line-height: 1.7; }
.modal-tiny-670a ul { list-style: none; padding-left: 0; }
.modal-tiny-670a ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.modal-tiny-670a ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 8ead */
.ghost-box-j1 {
  padding: 0.3rem;
  font-size: 12px;
  line-height: 1.3;
}
