/* ============================================
   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 */
.notice_orange_c37a p,
.highlight-0b87,
.tabs-mini-a228,
.disabled_9277,
.iron_cfc7,
.narrow_52de,
.image_8834,
.slider_lite_e57f {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.filter_9e69 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.filter_9e69 > *,
.simple_2e5b,
.notice_orange_c37a,
.filter-9576 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .filter_9e69 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .filter_9e69 {
    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 === */
.label_north_0c0e {
  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 */
.label_north_0c0e.orange_f4c3 {
  box-shadow: var(--shadow-md);
}

.avatar-084c {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.top_be62 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.input-7f83 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.next-b116 {
  display: none;
}

/* Hide mobile actions on desktop */
.over-f56e {
  display: none;
}

.backdrop_new_9c2d a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.backdrop_new_9c2d a:hover,
.backdrop_new_9c2d a.fn-active-5c9a {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.list-orange-dff5 {
  margin-left: 1rem;
}

.grid_bright_e966 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.complex-5914,
.up_fa9e {
  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;
}

.complex-5914 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.complex-5914: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;
}

.up_fa9e {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.up_fa9e: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;
}

.complex-5914 svg,
.up_fa9e svg {
  flex-shrink: 0;
}

.next-07a9 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.right_ee9f {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.right_ee9f::before,
.right_ee9f::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.right_ee9f::before {
  top: -7px;
}

.right_ee9f::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.secondary-dim-450f {
  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 === */
.next-02d4 {
  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);
}

.orange-73a2 {
  margin: 0 0 2rem;
  text-align: center;
}

.simple_d112 {
  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;
}

.simple_d112:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.south-8489 {
  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);
}

.south-8489 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.green_f430 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.box_02e6 {
  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;
}

.box_02e6:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.item_action_3865 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.popup_89f5 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.row-tiny-10e6 {
  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);
}

.row-tiny-10e6 .tertiary-hot-03bc {
  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;
}

.row-tiny-10e6 .tertiary-hot-03bc svg {
  flex-shrink: 0;
}

.row-tiny-10e6 .solid-6b7f {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.row-tiny-10e6 .solid-6b7f: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);
}

.row-tiny-10e6 .large-b182 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.row-tiny-10e6 .large-b182: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) {
  .next-02d4 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .simple_d112 {
    max-width: 100%;
  }

  .green_f430 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .box_02e6 {
    padding: 1rem;
  }

  .item_action_3865 {
    font-size: 1.5rem;
  }

  .popup_89f5 {
    font-size: 0.75rem;
  }

  .south-8489 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .row-tiny-10e6 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .row-tiny-10e6 .tertiary-hot-03bc {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .green_f430 {
    grid-template-columns: 1fr;
  }
}

.sidebar-fa71 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.dim-74b7 {
  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 === */
.wrapper-1b02 {
  margin-bottom: 2.5rem;
}

.fresh-d20f {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.sidebar-fa71 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.photo_ec9f {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pressed-cb9d {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.description_3e22 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tabs_2e34 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.lower_05e9 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.caption-pink-ba83 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.filter_fluid_b171 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.filter_fluid_b171 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.caption-south-69e5 {
  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);
}

.lite-5c7f {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.input-hard-cc30 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tooltip-fcbf {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.feature-complex-5efe {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.pagination_07d8 {
  display: grid;
  gap: 1rem;
}

.active-28fa {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.tag-5e0c {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.fixed_6d5a {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.red-9add {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.copper_7aec {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.container_gold_ff29 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.container_gold_ff29 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.highlight-0b87 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.notification_8d0c {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.box_cc0f {
  display: grid;
  gap: 2rem;
}

.menu-inner-8907 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.pressed-cb9d {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.photo_ec9f {
  flex: 1;
}

.tabs_2e34 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.tabs_2e34 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.thumbnail-2f76 {
  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;
}

.lower_05e9 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.bright_b9d1 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.bright_b9d1 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.thumbnail_in_6dc7 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.thumbnail_in_6dc7 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.notification-a707 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.notification-a707 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.notification-a707 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.notification-a707 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.highlight_c017 {
  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 === */
.filter_6c14 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.pro_7a6b {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.breadcrumb-black-87ad {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.east_1b58 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.east_1b58 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.east_1b58 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.east_1b58 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;
}

.east_1b58 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.east_1b58 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.notice_orange_c37a {
  padding: 3rem 0 5rem;
}

.filter-9576 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.filter-9576.glass_38c7 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.tabs-mini-a228 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.narrow_2072 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.dynamic-30b8 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.dynamic-30b8 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.text-hot-ee0f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.tall_3ec4 {
  text-align: center;
}

.sort_lite_03c9 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.sidebar_current_e2a4 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.feature_6007 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.narrow_52de {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.disabled_9277 {
  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;
}

.disabled_9277 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disabled_9277:hover {
  box-shadow: var(--shadow-lg);
}

.disabled_9277.sort-dark-9735 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.disabled_9277 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.disabled_9277 ul {
  margin: 1rem 0;
}

.disabled_9277 li {
  margin-bottom: 0.75rem;
}

.purple-1fd7 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.texture-f235 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.texture-f235 a {
  font-weight: 600;
}

/* === Data Tables === */
.inner_c118 {
  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;
}

.inner_c118 table {
  width: 100%;
  min-width: 600px;
}

.inner_c118 thead {
  background-color: var(--primary-color);
  color: white;
}

.inner_c118 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.inner_c118 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.inner_c118 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.inner_c118 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.stone_5ece {
  list-style: none;
  margin: 1.5rem 0;
}

.stone_5ece li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.stone_5ece li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.dim_5481::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-5c9a::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 === */
.aside-plasma-197c {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.image_422a {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.image_422a img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.image_422a strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.image_422a span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.aside-plasma-197c blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.image_8834 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.image_8834::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.red-f9c5 {
  position: relative;
  margin-bottom: 3rem;
}

.header_selected_2313 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.header_selected_2313 .medium-b71e {
  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;
}

.thick-a19b {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.thick-a19b h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.thick-a19b ul {
  margin: 1rem 0;
}

.thick-a19b li {
  margin-bottom: 0.75rem;
}

.red_7a8a {
  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 === */
.easy-6191 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.easy-6191 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.gradient-black-d651 {
  list-style: none;
  margin: 1.5rem 0;
}

.gradient-black-d651 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.gradient-black-d651 a {
  font-weight: 600;
}

.hero-steel-0496 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.slider_lite_e57f {
  margin: 2.5rem 0;
}

.notice-dim-3906 {
  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;
}

.notice-dim-3906:hover {
  box-shadow: var(--shadow-lg);
}

.notice-dim-3906.surface_e53b {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.element_green_4271 {
  flex-shrink: 0;
}

.element_green_4271 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);
}

.header_e5e0 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.accordion-81a2,
.sort-c00d,
.main-down-9053 {
  width: 100%;
  margin: 1.5rem 0;
}

.nav-86f1 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.nav-86f1 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.in-aaa9 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.in-aaa9 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.box-full-f30b {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.box-full-f30b strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.preview-orange-decd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.pro-75c5 {
  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;
}

.pro-75c5:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pro-75c5.accordion_70b1 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.pro-75c5 .message_lower_43ea {
  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;
}

.pro-75c5 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.narrow-80b9 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.secondary_north_5447 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.secondary_north_5447 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.fast_9732 {
  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 === */
.tertiary-hot-03bc {
  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;
}

.solid-6b7f {
  background-color: var(--primary-color);
  color: white;
}

.solid-6b7f:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.large-b182 {
  background-color: var(--text-secondary);
  color: white;
}

.large-b182:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.accent-hot-f769 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.accent-hot-f769:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.secondary-806e {
  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;
}

.secondary-806e:hover {
  background-color: var(--primary-dark);
}

.bright_fd05 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.hero-mini-91f1 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.popup_middle_8632 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.current_f18a {
  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 === */
.plasma-26b9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.photo_silver_9411 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.photo_silver_9411 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.carousel-inner-5bce {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.box_bottom_ad52 {
  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;
}

.main-middle-3a47 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.complex-dbf2 {
  list-style: none;
  counter-reset: rank-counter;
}

.complex-dbf2 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.complex-dbf2 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;
}

.filter_fluid_172c {
  list-style: none;
}

.filter_fluid_172c li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.chip_middle_ef9c {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.info_1033 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.info_1033 .border-rough-653e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.info_1033 .accent-b3f2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.nav-tiny-7418 {
  margin-top: 3rem;
}

.feature-c05e {
  width: 100%;
}

.iron-f7cc {
  background-color: #fef3c7;
}

.cool-d464 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.section_5889 {
  margin: 3rem 0;
}

.main-stale-bc38 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.in_0da6 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.in_0da6:hover {
  box-shadow: var(--shadow-lg);
}

.in_0da6.component-1fa7 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.block-bdff {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section_plasma_d18d strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.section_plasma_d18d span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.old-5d6d {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.in_0da6 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.fresh_a501 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.item-7dab {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.article_735b {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.focused_4eb2 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.progress-right-f8e7 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.light-9e32 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.icon_52c9 {
  max-width: 900px;
  margin: 0 auto;
}

.modal-easy-3656 {
  margin: 2rem 0;
}

.status_purple_b02d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.status_purple_b02d summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.status_purple_b02d summary::-webkit-details-marker {
  display: none;
}

.status_purple_b02d summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.dark-2d12 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.status_purple_b02d[open] .dark-2d12 {
  transform: rotate(45deg);
}

.widget_small_2c67 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.widget_small_2c67 p:last-child {
  margin-bottom: 0;
}

.box_complex_506b {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.wrapper-full-421e {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.dynamic_adb1 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.dynamic_adb1 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.dynamic_adb1 .tertiary-hot-03bc {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.notification_c9a8 {
  max-width: 900px;
  margin: 0 auto;
}

.summary_thick_5716 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.overlay_middle_7e83 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.overlay_middle_7e83.fn-success-5c9a {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.row_d42c {
  font-size: 3rem;
  line-height: 1;
}

.description_full_8adb h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.input_bronze_9e94 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.preview_pro_44da,
.article-0808 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.preview_pro_44da h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.article-0808 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.container-wide-6a80,
.panel_a76f {
  margin: 1.5rem 0;
}

.container-wide-6a80 li,
.panel_a76f li {
  margin-bottom: 1rem;
}

.light-40df {
  margin: 3rem 0;
}

.fast_21ce {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.fast_21ce h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.fast_21ce ol {
  margin: 1rem 0;
}

.fast_21ce li {
  margin-bottom: 0.75rem;
}

.form_bottom_f4b0 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.blue_4374 {
  margin: 2rem 0;
}

.primary-up-90aa {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.grid-under-2f16 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.description_c8f4 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.list_current_cf38 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.cold-358b {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.tertiary-full-fedf {
  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;
}

.tertiary-full-fedf img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.description_3e22 {
  flex: 1;
}

.description_3e22 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.heading_79d5 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.tiny_14ab p {
  margin-bottom: 1rem;
}

.pattern_9c1b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.avatar_fresh_22bb {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.table-ded4 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.table-ded4 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.large-e0de h3 {
  margin-bottom: 1.5rem;
}

.shade-73eb {
  display: grid;
  gap: 2rem;
}

.block_c6b3 {
  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;
}

.block_c6b3 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.block_c6b3 h4 {
  margin: 0 0 0.25rem;
}

.block_c6b3 p {
  margin: 0;
  font-size: 0.9375rem;
}

.search-easy-8aff {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.accent_9525 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.accent_9525 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.accent_9525 ul {
  margin: 1.5rem 0;
}

.accent_9525 li {
  margin-bottom: 0.75rem;
}

.cold-5a6b {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.feature_paper_1799 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.south_e831 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.overlay-8b86 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.overlay-8b86 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.complex_0da4 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.complex_0da4 a {
  color: rgba(255, 255, 255, 0.8);
}

.item_0941 {
  list-style: none;
}

.item_0941 li {
  margin-bottom: 0.75rem;
}

.item_0941 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.item_0941 a:hover {
  color: white;
}

.carousel_1120 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.out_8407 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.simple_2367 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.gas-fa09 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.popup-upper-474b {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .filter_9e69 {
    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;
  }

  .focus-steel-d567 {
    font-size: 1.5rem !important;
  }

  .fresh-d20f {
    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 */
  .disabled_9277,
  .iron_cfc7,
  .thick-a19b,
  .header_e5e0,
  .block-bdff,
  .in_0da6,
  .widget_small_2c67,
  .south-8489,
  .highlight-0b87,
  .tabs-mini-a228 {
    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 */
  .sidebar-fa71 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .photo_ec9f {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .pressed-cb9d {
    flex-shrink: 0;
  }

  .description_3e22 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .tabs_2e34,
  .lower_05e9 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .lower_05e9 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .input-7f83 {
    display: none;
  }

  /* Show mobile actions */
  .over-f56e {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .item_1a5d {
    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;
  }

  .item_1a5d svg {
    flex-shrink: 0;
  }

  .item_1a5d .image_current_8a43 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .item_1a5d .hover_last_688b {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .prev-9c16 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .badge_7f84 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .item_1a5d:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .next-b116 {
    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;
  }

  .next-b116.fn-active-5c9a {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .next-b116 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .next-b116 li:last-child {
    border-bottom: none;
  }

  .next-b116 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .backdrop_new_9c2d {
    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;
  }

  .backdrop_new_9c2d li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .backdrop_new_9c2d li:last-child {
    border-bottom: none;
  }

  .backdrop_new_9c2d a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .list-orange-dff5 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .grid_bright_e966 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .complex-5914,
  .up_fa9e {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .complex-5914 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .up_fa9e {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .backdrop_new_9c2d.fn-active-5c9a {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .next-07a9 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .label_north_0c0e {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .avatar-084c {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .secondary-dim-450f {
    margin-top: 0;
  }

  /* Hero section */
  .secondary-dim-450f {
    padding: 2rem 0 1.5rem;
  }

  .fresh-d20f {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .highlight-0b87 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .next-02d4 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .simple_d112 {
    max-width: 100%;
    border-radius: 8px;
  }

  .green_f430 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .box_02e6 {
    padding: 1rem;
  }

  .item_action_3865 {
    font-size: 1.5rem;
  }

  .popup_89f5 {
    font-size: 0.75rem;
  }

  .south-8489 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .row-tiny-10e6 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .row-tiny-10e6 .tertiary-hot-03bc {
    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 */
  .breadcrumb-black-87ad {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .notice-dim-3906 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .element_green_4271 {
    margin-bottom: 1rem;
  }

  /* Author */
  .menu-inner-8907 {
    flex-direction: column;
  }

  .tertiary-full-fedf {
    flex-direction: column;
  }

  /* Quotes */
  .block-bdff {
    flex-direction: column;
  }

  /* Pros/Cons */
  .input_bronze_9e94 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .list_current_cf38 {
    flex-direction: column;
  }

  .list_current_cf38 .tertiary-hot-03bc {
    width: 100%;
  }

  /* Version comparison */
  .preview-orange-decd {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .plasma-26b9 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .south_e831 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .simple_2367 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .inner_c118,
  .sort-c00d,
  .detail_static_f5bb,
  .feature-c05e,
  .accordion-81a2,
  .main-down-9053 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .inner_c118 table,
  .sort-c00d table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .fast_9732 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .filter_9e69 {
    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;
  }

  .focus-steel-d567 {
    font-size: 1.25rem !important;
  }

  .fresh-d20f {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .label_north_0c0e {
    position: fixed;
  }

  .avatar-084c {
    padding: 0.625rem 0;
  }

  .top_be62 img {
    height: 26px;
  }

  .backdrop_new_9c2d {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .next-b116 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .item_1a5d {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .item_1a5d svg {
    width: 18px;
    height: 18px;
  }

  .item_1a5d .image_current_8a43 {
    font-size: 0.7rem;
  }

  .item_1a5d .hover_last_688b {
    font-size: 0.65rem;
  }

  .complex-5914,
  .up_fa9e {
    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, .filter_9e69, .simple_2e5b, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .next-02d4 {
    padding: 1rem;
  }

  .green_f430 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .box_02e6 {
    padding: 0.875rem;
  }

  .item_action_3865 {
    font-size: 1.25rem;
  }

  .row-tiny-10e6 .tertiary-hot-03bc {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .fresh-d20f {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .tertiary-hot-03bc {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .bright_fd05 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .notice-dim-3906 {
    padding: 1rem;
  }

  .element_green_4271 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .disabled_9277,
  .media_inner_5059,
  .bronze-10a7,
  .section_ba69 {
    padding: 1rem;
  }
}

@media print {
  .label_north_0c0e,
  .filter_6c14,
  .next-07a9,
  .tertiary-hot-03bc,
  .feature_paper_1799 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .filter_9e69 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.icon_3253 {
  margin-bottom: 3rem;
  text-align: center;
}

.focus-steel-d567 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.short-9548 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.image_6384,
.focus_9492 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.content-7730 {
  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;
}

.content-7730:hover {
  transform: translateY(-5px);
}

.content-7730 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.content-7730 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.aside_d6f4 {
  margin: 3rem 0;
}

.popup-c68a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.component_08ee {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.component_08ee:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.surface-9681 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.highlight-glass-4b33 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.alert_ae43 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.large_7cde {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.photo-up-1a89 {
  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;
}

.photo-up-1a89:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.photo-up-1a89.feature_dfa6 {
  border-left: 4px solid var(--primary-color);
}

.backdrop-8120 {
  flex-shrink: 0;
}

.backdrop-8120 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.mini_77bd {
  flex: 1;
}

.mini_77bd h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.mask_b5fd {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.prev-7c3f,
.bronze_d170,
.photo_70c7 {
  margin-bottom: 1.5rem;
}

.prev-7c3f h4,
.bronze_d170 h4,
.photo_70c7 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.prev-7c3f ul,
.bronze_d170 ul,
.photo_70c7 ul {
  list-style: none;
  padding: 0;
}

.prev-7c3f li,
.bronze_d170 li,
.photo_70c7 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.prev-7c3f li:before,
.bronze_d170 li:before,
.photo_70c7 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.main_smooth_4a58 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.main_smooth_4a58 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;
}

.main_smooth_4a58 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.pagination-outer-7f94 { margin: 2rem 0; }
.prev-1242 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.prev-1242 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.warm-6679 p { margin-bottom: 1rem; line-height: 1.7; }
.warm-6679 strong { color: var(--text-primary); }
.warm-6679 ul { list-style: none; padding-left: 0; }
.warm-6679 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.warm-6679 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.mask_liquid_0392 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.purple-b119 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.purple-b119:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.link_top_0f60 { font-size: 3rem; margin-bottom: 1rem; }
.purple-b119 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.purple-b119 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.overlay-last-03bd { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.overlay-last-03bd span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.solid_66e6 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.layout_dark_e1d7 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.card-6f2e { text-align: center; }
.gallery_8286 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.stale-07da { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.down-1ad4 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.out-2da6 { margin: 2rem 0; }
.advanced-c9fc { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.advanced-c9fc h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.advanced-c9fc p, .advanced-c9fc ul { line-height: 1.7; }
.advanced-c9fc ul { list-style: none; padding-left: 0; }
.advanced-c9fc ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.advanced-c9fc ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.photo_40d5 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.form_bronze_0090 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.tabs_fixed_bd59 { text-align: center; }
.light_1cae { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.notification-first-5d8e { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.border_ffcc { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.hover_rough_8d5f { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.preview_93e1 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.preview_93e1:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.preview_93e1 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.preview_93e1 p, .preview_93e1 ul { line-height: 1.7; }
.preview_93e1 ul { list-style: none; padding-left: 0; }
.preview_93e1 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.preview_93e1 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: f1dc */
.widget-item-s8 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.1;
}
