/* ============================================
   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 */
.avatar_mini_93b1 p,
.module_dbd5,
.border-down-8a98,
.hidden-5241,
.title_green_a693,
.section-52d5,
.block-f654,
.link-down-5350 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.chip_9999 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.chip_9999 > *,
.pagination_cd99,
.avatar_mini_93b1,
.accent-129a {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .chip_9999 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .chip_9999 {
    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 === */
.complex-f708 {
  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 */
.complex-f708.border-down-beb8 {
  box-shadow: var(--shadow-md);
}

.background_b5d6 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.brown_21d1 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.pagination-middle-6a15 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.avatar_0cb4 {
  display: none;
}

/* Hide mobile actions on desktop */
.icon_c40c {
  display: none;
}

.footer_a0f2 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer_a0f2 a:hover,
.footer_a0f2 a.fn-active-f437 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.outline_bb6c {
  margin-left: 1rem;
}

.layout-west-c3c0 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.narrow-9470,
.chip_8515 {
  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;
}

.narrow-9470 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.narrow-9470: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;
}

.chip_8515 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.chip_8515: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;
}

.narrow-9470 svg,
.chip_8515 svg {
  flex-shrink: 0;
}

.east-0c3c {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.row_in_eeb0 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.row_in_eeb0::before,
.row_in_eeb0::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.row_in_eeb0::before {
  top: -7px;
}

.row_in_eeb0::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.main-ab45 {
  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 === */
.sidebar_f290 {
  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);
}

.status-large-32b3 {
  margin: 0 0 2rem;
  text-align: center;
}

.preview_selected_4fef {
  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;
}

.preview_selected_4fef:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.soft_68f1 {
  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);
}

.soft_68f1 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.accordion_b8f9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.column_4b0d {
  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;
}

.column_4b0d:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.tooltip-narrow-c37d {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.soft-fad7 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.avatar_3ec0 {
  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);
}

.avatar_3ec0 .dynamic-b812 {
  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;
}

.avatar_3ec0 .dynamic-b812 svg {
  flex-shrink: 0;
}

.avatar_3ec0 .list_medium_0d5e {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.avatar_3ec0 .list_medium_0d5e: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);
}

.avatar_3ec0 .info-warm-8573 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.avatar_3ec0 .info-warm-8573: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) {
  .sidebar_f290 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .preview_selected_4fef {
    max-width: 100%;
  }

  .accordion_b8f9 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .column_4b0d {
    padding: 1rem;
  }

  .tooltip-narrow-c37d {
    font-size: 1.5rem;
  }

  .soft-fad7 {
    font-size: 0.75rem;
  }

  .soft_68f1 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .avatar_3ec0 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .avatar_3ec0 .dynamic-b812 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .accordion_b8f9 {
    grid-template-columns: 1fr;
  }
}

.nav_c048 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.light_41c0 {
  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 === */
.in-92ea {
  margin-bottom: 2.5rem;
}

.breadcrumb_060a {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.nav_c048 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.widget-fb80 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.shadow_9151 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.stale_a5e6 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.block_left_95e7 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.status_f2ac {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.lower-85af {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.layout-old-32c3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.layout-old-32c3 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.info_6f65 {
  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);
}

.column_06e6 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.widget-fd02 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.outline-white-7d39 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.lower_1e2c {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.inner-d866 {
  display: grid;
  gap: 1rem;
}

.notification-pressed-abd7 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.wrapper_cbb4 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.message_complex_d73e {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.steel-4a0c {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.hidden-pro-cc1c {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.copper_dfd4 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.copper_dfd4 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.module_dbd5 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.fast-be9a {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.media_bottom_8116 {
  display: grid;
  gap: 2rem;
}

.content_in_a3bf {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.shadow_9151 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.widget-fb80 {
  flex: 1;
}

.block_left_95e7 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.block_left_95e7 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.hard-a060 {
  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;
}

.status_f2ac {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.media_fluid_bacd {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.media_fluid_bacd span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.icon-dirty-f22c {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.icon-dirty-f22c a {
  font-size: 0.875rem;
  font-weight: 500;
}

.text_8db4 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.text_8db4 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.text_8db4 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.text_8db4 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.outline-b5a8 {
  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 === */
.accent_76f8 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.detail-91b9 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.dropdown-2179 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.container-4b0d h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.container-4b0d ol {
  list-style: none;
  counter-reset: toc-counter;
}

.container-4b0d ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.container-4b0d 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;
}

.container-4b0d ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.container-4b0d ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.avatar_mini_93b1 {
  padding: 3rem 0 5rem;
}

.accent-129a {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.accent-129a.tertiary-center-5be3 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.border-down-8a98 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.grid-e651 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.picture-7dc5 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.picture-7dc5 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.red-0bed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.info_dim_f649 {
  text-align: center;
}

.hidden_2e01 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.picture_center_1dc6 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.gallery_clean_97f1 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.section-52d5 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.hidden-5241 {
  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;
}

.hidden-5241 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hidden-5241:hover {
  box-shadow: var(--shadow-lg);
}

.hidden-5241.pattern-steel-5156 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.hidden-5241 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.hidden-5241 ul {
  margin: 1rem 0;
}

.hidden-5241 li {
  margin-bottom: 0.75rem;
}

.badge_solid_27ab {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.solid_f3fc {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.solid_f3fc a {
  font-weight: 600;
}

/* === Data Tables === */
.component_action_1d26 {
  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;
}

.component_action_1d26 table {
  width: 100%;
  min-width: 600px;
}

.component_action_1d26 thead {
  background-color: var(--primary-color);
  color: white;
}

.component_action_1d26 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.component_action_1d26 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.component_action_1d26 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.component_action_1d26 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.component_light_5236 {
  list-style: none;
  margin: 1.5rem 0;
}

.component_light_5236 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.component_light_5236 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.dark-ba65::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-f437::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 === */
.chip-af8b {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.focus_right_4aac {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.focus_right_4aac img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.focus_right_4aac strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.focus_right_4aac span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.chip-af8b blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.block-f654 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.block-f654::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.bright-b08d {
  position: relative;
  margin-bottom: 3rem;
}

.element_static_f3fb {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.element_static_f3fb .thumbnail-5e6c {
  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;
}

.frame-62e4 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.frame-62e4 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.frame-62e4 ul {
  margin: 1rem 0;
}

.frame-62e4 li {
  margin-bottom: 0.75rem;
}

.disabled-2e27 {
  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 === */
.description-dcdc {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.description-dcdc h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.preview_8815 {
  list-style: none;
  margin: 1.5rem 0;
}

.preview_8815 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.preview_8815 a {
  font-weight: 600;
}

.fluid-ec00 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.link-down-5350 {
  margin: 2.5rem 0;
}

.input-blue-f280 {
  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;
}

.input-blue-f280:hover {
  box-shadow: var(--shadow-lg);
}

.input-blue-f280.pink_8881 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.mask_e7be {
  flex-shrink: 0;
}

.mask_e7be 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);
}

.progress_small_76db h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.shadow_gold_4457,
.form_a299,
.tooltip_right_75ff {
  width: 100%;
  margin: 1.5rem 0;
}

.title_slow_78b1 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.title_slow_78b1 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.south_1bdb {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.south_1bdb strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.hidden_pressed_a8f4 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.hidden_pressed_a8f4 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.main-dim-4eff {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.paper_7fdd {
  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;
}

.paper_7fdd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.paper_7fdd.image_lower_e40f {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.paper_7fdd .gallery_eb6f {
  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;
}

.paper_7fdd h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.motion-a80d {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.lower-c0ab {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.lower-c0ab label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.chip_out_653e {
  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 === */
.dynamic-b812 {
  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;
}

.list_medium_0d5e {
  background-color: var(--primary-color);
  color: white;
}

.list_medium_0d5e:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.info-warm-8573 {
  background-color: var(--text-secondary);
  color: white;
}

.info-warm-8573:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.banner-a36f {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.banner-a36f:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.button_b983 {
  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;
}

.button_b983:hover {
  background-color: var(--primary-dark);
}

.list_clean_de11 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.east-cfdf {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.notice_upper_7bb7 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.hard_d87b {
  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 === */
.summary-small-b236 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.thick_926e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.thick_926e h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.red-c245 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.texture-c65d {
  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;
}

.yellow-ce1c {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.in_c40d {
  list-style: none;
  counter-reset: rank-counter;
}

.in_c40d li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.in_c40d 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;
}

.pro-915f {
  list-style: none;
}

.pro-915f li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.left_5f0f {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.gallery_438a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.gallery_438a .slider-d812 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.gallery_438a .row-action-8222 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.red_ed83 {
  margin-top: 3rem;
}

.last_f089 {
  width: 100%;
}

.stone-e8b5 {
  background-color: #fef3c7;
}

.message-f6b2 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.box-a032 {
  margin: 3rem 0;
}

.dark-5b73 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.shadow-166a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.shadow-166a:hover {
  box-shadow: var(--shadow-lg);
}

.shadow-166a.medium_9e86 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.orange-b129 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.module-east-bf91 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.module-east-bf91 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.badge-12ca {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.shadow-166a blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.pressed_16c2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.outer-231d {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.form-2458 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.black-48aa {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.icon_5289 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.lite_6596 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.breadcrumb-a076 {
  max-width: 900px;
  margin: 0 auto;
}

.pagination_advanced_0f99 {
  margin: 2rem 0;
}

.progress_d422 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.progress_d422 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.progress_d422 summary::-webkit-details-marker {
  display: none;
}

.progress_d422 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.huge_9942 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.progress_d422[open] .huge_9942 {
  transform: rotate(45deg);
}

.tag_narrow_808c {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.tag_narrow_808c p:last-child {
  margin-bottom: 0;
}

.image-brown-f184 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.south-dfe0 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.input-motion-2ffd {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.input-motion-2ffd p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.input-motion-2ffd .dynamic-b812 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.alert_d6bc {
  max-width: 900px;
  margin: 0 auto;
}

.easy_0e7c {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.title_97d2 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.title_97d2.fn-success-f437 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.list-122b {
  font-size: 3rem;
  line-height: 1;
}

.image-ebad h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.border_495f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.overlay-inner-9011,
.section_a38a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.overlay-inner-9011 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.section_a38a h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.heading-hard-f440,
.paper-af75 {
  margin: 1.5rem 0;
}

.heading-hard-f440 li,
.paper-af75 li {
  margin-bottom: 1rem;
}

.texture_8ef9 {
  margin: 3rem 0;
}

.card-cddb {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.card-cddb h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.card-cddb ol {
  margin: 1rem 0;
}

.card-cddb li {
  margin-bottom: 0.75rem;
}

.pattern_focused_bd8e {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.popup-last-0c6b {
  margin: 2rem 0;
}

.sort_a894 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.thumbnail_selected_d833 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.shade-9ec8 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.simple_4e8e {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.table_9a3a {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.simple_0c30 {
  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;
}

.simple_0c30 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.stale_a5e6 {
  flex: 1;
}

.stale_a5e6 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.content-ac6e {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.yellow_a2cb p {
  margin-bottom: 1rem;
}

.dim-92f7 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.frame-e5aa {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.cool_47fb {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.cool_47fb a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.wrapper-blue-a0d6 h3 {
  margin-bottom: 1.5rem;
}

.hidden-middle-31e9 {
  display: grid;
  gap: 2rem;
}

.current_34ee {
  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;
}

.current_34ee img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.current_34ee h4 {
  margin: 0 0 0.25rem;
}

.current_34ee p {
  margin: 0;
  font-size: 0.9375rem;
}

.avatar-2dfc {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.link-9df1 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.link-9df1 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.link-9df1 ul {
  margin: 1.5rem 0;
}

.link-9df1 li {
  margin-bottom: 0.75rem;
}

.prev_b4f1 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.notice_a07a {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.up-610d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.logo-5f2f h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.logo-5f2f p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.dropdown-hard-73da {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.dropdown-hard-73da a {
  color: rgba(255, 255, 255, 0.8);
}

.dropdown_top_ab29 {
  list-style: none;
}

.dropdown_top_ab29 li {
  margin-bottom: 0.75rem;
}

.dropdown_top_ab29 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.dropdown_top_ab29 a:hover {
  color: white;
}

.chip_04a1 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.solid_96fa {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.thick-3eb9 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.active-743c {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.header_lower_b443 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .chip_9999 {
    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;
  }

  .easy-d744 {
    font-size: 1.5rem !important;
  }

  .breadcrumb_060a {
    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 */
  .hidden-5241,
  .title_green_a693,
  .frame-62e4,
  .progress_small_76db,
  .orange-b129,
  .shadow-166a,
  .tag_narrow_808c,
  .soft_68f1,
  .module_dbd5,
  .border-down-8a98 {
    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_c048 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .widget-fb80 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .shadow_9151 {
    flex-shrink: 0;
  }

  .stale_a5e6 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .block_left_95e7,
  .status_f2ac {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .status_f2ac {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .pagination-middle-6a15 {
    display: none;
  }

  /* Show mobile actions */
  .icon_c40c {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .solid_4029 {
    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;
  }

  .solid_4029 svg {
    flex-shrink: 0;
  }

  .solid_4029 .nav_cb00 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .solid_4029 .filter-fc1a {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .tooltip_static_5a70 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .outline_fe33 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .solid_4029:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .avatar_0cb4 {
    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;
  }

  .avatar_0cb4.fn-active-f437 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .avatar_0cb4 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .avatar_0cb4 li:last-child {
    border-bottom: none;
  }

  .avatar_0cb4 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .footer_a0f2 {
    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;
  }

  .footer_a0f2 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .footer_a0f2 li:last-child {
    border-bottom: none;
  }

  .footer_a0f2 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .outline_bb6c {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .layout-west-c3c0 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .narrow-9470,
  .chip_8515 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .narrow-9470 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .chip_8515 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .footer_a0f2.fn-active-f437 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .east-0c3c {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .complex-f708 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .background_b5d6 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .main-ab45 {
    margin-top: 0;
  }

  /* Hero section */
  .main-ab45 {
    padding: 2rem 0 1.5rem;
  }

  .breadcrumb_060a {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .module_dbd5 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .sidebar_f290 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .preview_selected_4fef {
    max-width: 100%;
    border-radius: 8px;
  }

  .accordion_b8f9 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .column_4b0d {
    padding: 1rem;
  }

  .tooltip-narrow-c37d {
    font-size: 1.5rem;
  }

  .soft-fad7 {
    font-size: 0.75rem;
  }

  .soft_68f1 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .avatar_3ec0 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .avatar_3ec0 .dynamic-b812 {
    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 */
  .dropdown-2179 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .input-blue-f280 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .mask_e7be {
    margin-bottom: 1rem;
  }

  /* Author */
  .content_in_a3bf {
    flex-direction: column;
  }

  .simple_0c30 {
    flex-direction: column;
  }

  /* Quotes */
  .orange-b129 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .border_495f {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .simple_4e8e {
    flex-direction: column;
  }

  .simple_4e8e .dynamic-b812 {
    width: 100%;
  }

  /* Version comparison */
  .main-dim-4eff {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .summary-small-b236 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .up-610d {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .thick-3eb9 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .component_action_1d26,
  .form_a299,
  .light-736d,
  .last_f089,
  .shadow_gold_4457,
  .tooltip_right_75ff {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .component_action_1d26 table,
  .form_a299 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .chip_out_653e {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .chip_9999 {
    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;
  }

  .easy-d744 {
    font-size: 1.25rem !important;
  }

  .breadcrumb_060a {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .complex-f708 {
    position: fixed;
  }

  .background_b5d6 {
    padding: 0.625rem 0;
  }

  .brown_21d1 img {
    height: 26px;
  }

  .footer_a0f2 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .avatar_0cb4 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .solid_4029 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .solid_4029 svg {
    width: 18px;
    height: 18px;
  }

  .solid_4029 .nav_cb00 {
    font-size: 0.7rem;
  }

  .solid_4029 .filter-fc1a {
    font-size: 0.65rem;
  }

  .narrow-9470,
  .chip_8515 {
    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, .chip_9999, .pagination_cd99, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .sidebar_f290 {
    padding: 1rem;
  }

  .accordion_b8f9 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .column_4b0d {
    padding: 0.875rem;
  }

  .tooltip-narrow-c37d {
    font-size: 1.25rem;
  }

  .avatar_3ec0 .dynamic-b812 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .breadcrumb_060a {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .dynamic-b812 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .list_clean_de11 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .input-blue-f280 {
    padding: 1rem;
  }

  .mask_e7be span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .hidden-5241,
  .modal_outer_caa2,
  .current-3efa,
  .caption-0197 {
    padding: 1rem;
  }
}

@media print {
  .complex-f708,
  .accent_76f8,
  .east-0c3c,
  .dynamic-b812,
  .notice_a07a {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .chip_9999 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.detail_out_9a4a {
  margin-bottom: 3rem;
  text-align: center;
}

.easy-d744 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.alert_6698 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.complex-2d86,
.menu_active_0527 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.liquid_7b26 {
  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;
}

.liquid_7b26:hover {
  transform: translateY(-5px);
}

.liquid_7b26 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.liquid_7b26 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.header_upper_b3b7 {
  margin: 3rem 0;
}

.small-5666 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.slow_e060 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.slow_e060:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.middle-e9c1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.link-dim-caf5 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.north-5cef {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.clean_4f5e {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.purple_69cb {
  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;
}

.purple_69cb:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.purple_69cb.yellow-3bfc {
  border-left: 4px solid var(--primary-color);
}

.texture-black-d829 {
  flex-shrink: 0;
}

.texture-black-d829 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.fluid-faf1 {
  flex: 1;
}

.fluid-faf1 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.breadcrumb_rough_5dc5 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.picture_857a,
.feature_steel_4e49,
.list-solid-711d {
  margin-bottom: 1.5rem;
}

.picture_857a h4,
.feature_steel_4e49 h4,
.list-solid-711d h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.picture_857a ul,
.feature_steel_4e49 ul,
.list-solid-711d ul {
  list-style: none;
  padding: 0;
}

.picture_857a li,
.feature_steel_4e49 li,
.list-solid-711d li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.picture_857a li:before,
.feature_steel_4e49 li:before,
.list-solid-711d li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.secondary-complex-d081 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.secondary-complex-d081 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;
}

.secondary-complex-d081 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.disabled_current_9c7e { margin: 2rem 0; }
.steel_84ed { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.steel_84ed h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.thumbnail_4ec7 p { margin-bottom: 1rem; line-height: 1.7; }
.thumbnail_4ec7 strong { color: var(--text-primary); }
.thumbnail_4ec7 ul { list-style: none; padding-left: 0; }
.thumbnail_4ec7 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.thumbnail_4ec7 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.row_hovered_028e { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.popup-west-d78a { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.popup-west-d78a:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.popup_cool_549b { font-size: 3rem; margin-bottom: 1rem; }
.popup-west-d78a h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.popup-west-d78a p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.info_plasma_2b89 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.info_plasma_2b89 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.mask_4fca { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.accent-right-e79a { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.slider-first-4383 { text-align: center; }
.tabs-cf1a { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.shade-red-488e { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.container_3470 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.dropdown-pink-c602 { margin: 2rem 0; }
.top_da4f { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.top_da4f h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.top_da4f p, .top_da4f ul { line-height: 1.7; }
.top_da4f ul { list-style: none; padding-left: 0; }
.top_da4f ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.top_da4f ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.image-5e1c { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.alert_0d75 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.glass_11ae { text-align: center; }
.search_d33b { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.grid_first_a495 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.fluid-ad49 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.heading_gold_e1a4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.grid_385c { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.grid_385c:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.grid_385c h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.grid_385c p, .grid_385c ul { line-height: 1.7; }
.grid_385c ul { list-style: none; padding-left: 0; }
.grid_385c ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.grid_385c ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 5f7d */
.phantom-card-f7 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.2;
}
