/* ============================================
   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 */
.fixed_e257 p,
.inner-0144,
.frame_9e2c,
.slider_up_0efb,
.lower_034e,
.hot-0722,
.texture-b58c,
.hover_4807 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.message-0b89 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.message-0b89 > *,
.disabled-d059,
.fixed_e257,
.logo-b6ca {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .message-0b89 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .message-0b89 {
    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 === */
.button_18b6 {
  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 */
.button_18b6.narrow-bce7 {
  box-shadow: var(--shadow-md);
}

.row-narrow-698f {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.focused-92e0 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.liquid_53d6 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.breadcrumb_4c20 {
  display: none;
}

/* Hide mobile actions on desktop */
.east-85d4 {
  display: none;
}

.content_8648 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.content_8648 a:hover,
.content_8648 a.fn-active-d638 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.steel_ca1a {
  margin-left: 1rem;
}

.small-8482 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.active-08eb,
.icon_gold_c420 {
  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;
}

.active-08eb {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.active-08eb: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;
}

.icon_gold_c420 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.icon_gold_c420: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;
}

.active-08eb svg,
.icon_gold_c420 svg {
  flex-shrink: 0;
}

.slider_5179 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.input-large-5c4f {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.input-large-5c4f::before,
.input-large-5c4f::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.input-large-5c4f::before {
  top: -7px;
}

.input-large-5c4f::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.card_motion_4974 {
  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 === */
.row_fdbe {
  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);
}

.alert-east-803f {
  margin: 0 0 2rem;
  text-align: center;
}

.detail_2fd2 {
  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;
}

.detail_2fd2:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.overlay-119c {
  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);
}

.overlay-119c strong {
  color: var(--primary-color);
  font-weight: 700;
}

.sort-static-28e2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.thumbnail_db1c {
  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;
}

.thumbnail_db1c:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.static_43d7 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.image_4fc2 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.mask-c16e {
  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);
}

.mask-c16e .inner_fe0a {
  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;
}

.mask-c16e .inner_fe0a svg {
  flex-shrink: 0;
}

.mask-c16e .highlight-6c54 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.mask-c16e .highlight-6c54: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);
}

.mask-c16e .disabled_faee {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.mask-c16e .disabled_faee: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) {
  .row_fdbe {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .detail_2fd2 {
    max-width: 100%;
  }

  .sort-static-28e2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .thumbnail_db1c {
    padding: 1rem;
  }

  .static_43d7 {
    font-size: 1.5rem;
  }

  .image_4fc2 {
    font-size: 0.75rem;
  }

  .overlay-119c {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .mask-c16e {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .mask-c16e .inner_fe0a {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .sort-static-28e2 {
    grid-template-columns: 1fr;
  }
}

.media_6256 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.iron_07c0 {
  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 === */
.breadcrumb_d491 {
  margin-bottom: 2.5rem;
}

.hidden_0473 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.media_6256 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.badge-9dff {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.slow-b472 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.center_13e3 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.disabled_soft_30e8 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.caption-hard-96b5 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.sort-wood-04e0 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.dropdown_08fc {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.dropdown_08fc svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.component_brown_3844 {
  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);
}

.tertiary_68d3 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.notification-6afc {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.backdrop-selected-c766 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.main-ca41 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.table_d195 {
  display: grid;
  gap: 1rem;
}

.item_705c {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.hot-08c9 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.large-6b9d {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.tertiary_bef8 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.tabs-fluid-1c95 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.large_f86c {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.large_f86c p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.inner-0144 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.hot-1888 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.focus_left_b192 {
  display: grid;
  gap: 2rem;
}

.short_748d {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.slow-b472 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.badge-9dff {
  flex: 1;
}

.disabled_soft_30e8 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.disabled_soft_30e8 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.fresh-6f7a {
  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;
}

.caption-hard-96b5 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.aside_glass_5479 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.aside_glass_5479 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.up-51ea {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.up-51ea a {
  font-size: 0.875rem;
  font-weight: 500;
}

.box_a214 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.box_a214 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.box_a214 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.box_a214 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.advanced_55e1 {
  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 === */
.title_black_9b64 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.chip-glass-9cb3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.clean_375d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.notification_hot_347d h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.notification_hot_347d ol {
  list-style: none;
  counter-reset: toc-counter;
}

.notification_hot_347d ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.notification_hot_347d 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;
}

.notification_hot_347d ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.notification_hot_347d ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.fixed_e257 {
  padding: 3rem 0 5rem;
}

.logo-b6ca {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.logo-b6ca.bronze-32d3 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.frame_9e2c {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.feature_hot_ea8e {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.outer_4d02 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.outer_4d02 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.outline-light-ce41 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.wrapper_e263 {
  text-align: center;
}

.outer-84c3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.huge_2cb7 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.narrow_eb86 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.hot-0722 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.slider_up_0efb {
  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;
}

.slider_up_0efb * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.slider_up_0efb:hover {
  box-shadow: var(--shadow-lg);
}

.slider_up_0efb.video-8e55 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.slider_up_0efb h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.slider_up_0efb ul {
  margin: 1rem 0;
}

.slider_up_0efb li {
  margin-bottom: 0.75rem;
}

.plasma_6458 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.rough_1408 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.rough_1408 a {
  font-weight: 600;
}

/* === Data Tables === */
.sort-dbe3 {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background-color: var(--bg-primary);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.sort-dbe3 table {
  width: 100%;
  min-width: 600px;
}

.sort-dbe3 thead {
  background-color: var(--primary-color);
  color: white;
}

.sort-dbe3 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.sort-dbe3 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.sort-dbe3 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.sort-dbe3 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.header_0183 {
  list-style: none;
  margin: 1.5rem 0;
}

.header_0183 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.header_0183 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.layout-2294::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-d638::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 === */
.nav_down_19b8 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.gallery_full_c497 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.gallery_full_c497 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.gallery_full_c497 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.gallery_full_c497 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.nav_down_19b8 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.texture-b58c {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.texture-b58c::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.glass-eb17 {
  position: relative;
  margin-bottom: 3rem;
}

.pagination_hovered_0a85 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.pagination_hovered_0a85 .outer-4610 {
  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;
}

.stale-c5fb {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.stale-c5fb h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.stale-c5fb ul {
  margin: 1rem 0;
}

.stale-c5fb li {
  margin-bottom: 0.75rem;
}

.clean_264f {
  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 === */
.hot-bb47 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.hot-bb47 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.sort-action-b5dc {
  list-style: none;
  margin: 1.5rem 0;
}

.sort-action-b5dc li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.sort-action-b5dc a {
  font-weight: 600;
}

.video-c5f4 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.hover_4807 {
  margin: 2.5rem 0;
}

.tabs-f74e {
  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;
}

.tabs-f74e:hover {
  box-shadow: var(--shadow-lg);
}

.tabs-f74e.large_5f6a {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.detail-huge-97ff {
  flex-shrink: 0;
}

.detail-huge-97ff 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);
}

.menu_cold_386d h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.stone_3eff,
.section_outer_45a2,
.main_03e2 {
  width: 100%;
  margin: 1.5rem 0;
}

.wrapper_dc1c {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.wrapper_dc1c strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.border-1af0 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.border-1af0 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.avatar_2a5a {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.avatar_2a5a strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.slider-first-abec {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.card-b8d0 {
  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;
}

.card-b8d0:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card-b8d0.focus-e571 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.card-b8d0 .image_mini_1209 {
  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;
}

.card-b8d0 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.backdrop_95da {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.gas-94ae {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.gas-94ae label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.modal-green-e4ba {
  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 === */
.inner_fe0a {
  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;
}

.highlight-6c54 {
  background-color: var(--primary-color);
  color: white;
}

.highlight-6c54:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.disabled_faee {
  background-color: var(--text-secondary);
  color: white;
}

.disabled_faee:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.popup_light_357f {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.popup_light_357f:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.backdrop_504c {
  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;
}

.backdrop_504c:hover {
  background-color: var(--primary-dark);
}

.light-10a7 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.shadow_prev_8b1b {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.text_plasma_6797 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.secondary_center_85d6 {
  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 === */
.filter-2cb5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.highlight-white-3ed2 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.highlight-white-3ed2 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.black_0d31 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.right-e373 {
  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;
}

.notification_87c6 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.plasma_1de8 {
  list-style: none;
  counter-reset: rank-counter;
}

.plasma_1de8 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.plasma_1de8 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;
}

.grid_8959 {
  list-style: none;
}

.grid_8959 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.hard_14d5 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.shadow-hard-8040 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.shadow-hard-8040 .silver-b8ed {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.shadow-hard-8040 .slow_7c0b {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.card-f815 {
  margin-top: 3rem;
}

.hidden-9059 {
  width: 100%;
}

.hover_26c3 {
  background-color: #fef3c7;
}

.progress-38ce {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.description-6aae {
  margin: 3rem 0;
}

.wide-7359 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.accordion-fd5a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.accordion-fd5a:hover {
  box-shadow: var(--shadow-lg);
}

.accordion-fd5a.border_under_e8ea {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.hover-last-efd9 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.sidebar-south-ceaf strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.sidebar-south-ceaf span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.out_fee4 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.accordion-fd5a blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.disabled-530f {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.label_6389 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.liquid_c7dd {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.mask-advanced-25bb {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.large_c0de {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.thumbnail_static_6cae {
  margin-top: 1rem;
}

/* === FAQ Section === */
.icon-ecf6 {
  max-width: 900px;
  margin: 0 auto;
}

.bronze_a69a {
  margin: 2rem 0;
}

.accordion-dark-0393 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-dark-0393 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.accordion-dark-0393 summary::-webkit-details-marker {
  display: none;
}

.accordion-dark-0393 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.menu_dynamic_ef58 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.accordion-dark-0393[open] .menu_dynamic_ef58 {
  transform: rotate(45deg);
}

.hidden-57db {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.hidden-57db p:last-child {
  margin-bottom: 0;
}

.card_e944 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.button-north-b11e {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.dropdown_5654 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.dropdown_5654 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.dropdown_5654 .inner_fe0a {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.thumbnail_efd5 {
  max-width: 900px;
  margin: 0 auto;
}

.layout-6fdf {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.breadcrumb_d4bf {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.breadcrumb_d4bf.fn-success-d638 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.layout_narrow_a5ce {
  font-size: 3rem;
  line-height: 1;
}

.footer-ed02 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.feature-easy-99bf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.steel-8629,
.carousel_a82a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.steel-8629 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.carousel_a82a h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.advanced_8fd7,
.title-8dde {
  margin: 1.5rem 0;
}

.advanced_8fd7 li,
.title-8dde li {
  margin-bottom: 1rem;
}

.shadow_ceab {
  margin: 3rem 0;
}

.in-b416 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.in-b416 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.in-b416 ol {
  margin: 1rem 0;
}

.in-b416 li {
  margin-bottom: 0.75rem;
}

.component-802a {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.active-f8f3 {
  margin: 2rem 0;
}

.carousel-gas-73bd {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.silver_85ae {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.tag-b304 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.highlight_9be5 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.motion-ac32 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.thumbnail-large-d7c7 {
  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;
}

.thumbnail-large-d7c7 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.center_13e3 {
  flex: 1;
}

.center_13e3 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.highlight-31f4 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.popup-8e1b p {
  margin-bottom: 1rem;
}

.caption-843e {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.form-c644 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.outline_bronze_0b68 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.outline_bronze_0b68 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.hidden-e675 h3 {
  margin-bottom: 1.5rem;
}

.complex_6170 {
  display: grid;
  gap: 2rem;
}

.hidden-short-a7e7 {
  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;
}

.hidden-short-a7e7 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.hidden-short-a7e7 h4 {
  margin: 0 0 0.25rem;
}

.hidden-short-a7e7 p {
  margin: 0;
  font-size: 0.9375rem;
}

.frame-29d4 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.nav-glass-48e5 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.nav-glass-48e5 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.nav-glass-48e5 ul {
  margin: 1.5rem 0;
}

.nav-glass-48e5 li {
  margin-bottom: 0.75rem;
}

.cool_57ee {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.slow-60ec {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.input-advanced-4327 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.mask_fixed_d116 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.mask_fixed_d116 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.dropdown_4292 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.dropdown_4292 a {
  color: rgba(255, 255, 255, 0.8);
}

.over_e112 {
  list-style: none;
}

.over_e112 li {
  margin-bottom: 0.75rem;
}

.over_e112 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.over_e112 a:hover {
  color: white;
}

.status_2d31 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.left_c03e {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.info_bf95 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.table-0c1d {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.card_inner_56a5 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .message-0b89 {
    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;
  }

  .primary-short-cef1 {
    font-size: 1.5rem !important;
  }

  .hidden_0473 {
    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 */
  .slider_up_0efb,
  .lower_034e,
  .stale-c5fb,
  .menu_cold_386d,
  .hover-last-efd9,
  .accordion-fd5a,
  .hidden-57db,
  .overlay-119c,
  .inner-0144,
  .frame_9e2c {
    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 */
  .media_6256 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .badge-9dff {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .slow-b472 {
    flex-shrink: 0;
  }

  .center_13e3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .disabled_soft_30e8,
  .caption-hard-96b5 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .caption-hard-96b5 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .liquid_53d6 {
    display: none;
  }

  /* Show mobile actions */
  .east-85d4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .avatar-d398 {
    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;
  }

  .avatar-d398 svg {
    flex-shrink: 0;
  }

  .avatar-d398 .orange-8842 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .avatar-d398 .banner_31a7 {
    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_f50f {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .column_left_0479 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .avatar-d398:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .breadcrumb_4c20 {
    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;
  }

  .breadcrumb_4c20.fn-active-d638 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .breadcrumb_4c20 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .breadcrumb_4c20 li:last-child {
    border-bottom: none;
  }

  .breadcrumb_4c20 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .content_8648 {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background-color: var(--bg-primary);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-height: calc(100vh - 65px);
    overflow-y: auto;
    gap: 0;
  }

  .content_8648 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .content_8648 li:last-child {
    border-bottom: none;
  }

  .content_8648 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .steel_ca1a {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .small-8482 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .active-08eb,
  .icon_gold_c420 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .active-08eb {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .icon_gold_c420 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .content_8648.fn-active-d638 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .slider_5179 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .button_18b6 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .row-narrow-698f {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .card_motion_4974 {
    margin-top: 0;
  }

  /* Hero section */
  .card_motion_4974 {
    padding: 2rem 0 1.5rem;
  }

  .hidden_0473 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .inner-0144 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .row_fdbe {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .detail_2fd2 {
    max-width: 100%;
    border-radius: 8px;
  }

  .sort-static-28e2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .thumbnail_db1c {
    padding: 1rem;
  }

  .static_43d7 {
    font-size: 1.5rem;
  }

  .image_4fc2 {
    font-size: 0.75rem;
  }

  .overlay-119c {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .mask-c16e {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .mask-c16e .inner_fe0a {
    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 */
  .clean_375d {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .tabs-f74e {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .detail-huge-97ff {
    margin-bottom: 1rem;
  }

  /* Author */
  .short_748d {
    flex-direction: column;
  }

  .thumbnail-large-d7c7 {
    flex-direction: column;
  }

  /* Quotes */
  .hover-last-efd9 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .feature-easy-99bf {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .highlight_9be5 {
    flex-direction: column;
  }

  .highlight_9be5 .inner_fe0a {
    width: 100%;
  }

  /* Version comparison */
  .slider-first-abec {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .filter-2cb5 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .input-advanced-4327 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .info_bf95 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .sort-dbe3,
  .section_outer_45a2,
  .progress_green_4e89,
  .hidden-9059,
  .stone_3eff,
  .main_03e2 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sort-dbe3 table,
  .section_outer_45a2 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .modal-green-e4ba {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .message-0b89 {
    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;
  }

  .primary-short-cef1 {
    font-size: 1.25rem !important;
  }

  .hidden_0473 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .button_18b6 {
    position: fixed;
  }

  .row-narrow-698f {
    padding: 0.625rem 0;
  }

  .focused-92e0 img {
    height: 26px;
  }

  .content_8648 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .breadcrumb_4c20 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .avatar-d398 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .avatar-d398 svg {
    width: 18px;
    height: 18px;
  }

  .avatar-d398 .orange-8842 {
    font-size: 0.7rem;
  }

  .avatar-d398 .banner_31a7 {
    font-size: 0.65rem;
  }

  .active-08eb,
  .icon_gold_c420 {
    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, .message-0b89, .disabled-d059, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .row_fdbe {
    padding: 1rem;
  }

  .sort-static-28e2 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .thumbnail_db1c {
    padding: 0.875rem;
  }

  .static_43d7 {
    font-size: 1.25rem;
  }

  .mask-c16e .inner_fe0a {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .hidden_0473 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .inner_fe0a {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .light-10a7 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .tabs-f74e {
    padding: 1rem;
  }

  .detail-huge-97ff span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .slider_up_0efb,
  .shadow-red-8ca5,
  .button_narrow_ee2e,
  .label_e9e3 {
    padding: 1rem;
  }
}

@media print {
  .button_18b6,
  .title_black_9b64,
  .slider_5179,
  .inner_fe0a,
  .slow-60ec {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .message-0b89 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.hover-ace3 {
  margin-bottom: 3rem;
  text-align: center;
}

.primary-short-cef1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.frame_eb7a {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.popup-gas-ff09,
.south_5f3e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.active-7362 {
  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;
}

.active-7362:hover {
  transform: translateY(-5px);
}

.active-7362 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.active-7362 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.button_7783 {
  margin: 3rem 0;
}

.purple_f8d2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.filter_4cf2 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.filter_4cf2:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.chip-f595 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.photo_0303 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.progress_new_a817 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.in-882c {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.outline-first-eb6d {
  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;
}

.outline-first-eb6d:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.outline-first-eb6d.module_215a {
  border-left: 4px solid var(--primary-color);
}

.element_d1fc {
  flex-shrink: 0;
}

.element_d1fc svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.middle-e776 {
  flex: 1;
}

.middle-e776 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.thick_9c12 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.item-paper-7096,
.element-right-3b62,
.secondary-d7d7 {
  margin-bottom: 1.5rem;
}

.item-paper-7096 h4,
.element-right-3b62 h4,
.secondary-d7d7 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.item-paper-7096 ul,
.element-right-3b62 ul,
.secondary-d7d7 ul {
  list-style: none;
  padding: 0;
}

.item-paper-7096 li,
.element-right-3b62 li,
.secondary-d7d7 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.item-paper-7096 li:before,
.element-right-3b62 li:before,
.secondary-d7d7 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.element-soft-de88 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.element-soft-de88 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;
}

.element-soft-de88 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.thick_adbf { margin: 2rem 0; }
.tooltip_brown_53f1 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.tooltip_brown_53f1 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.large_9fd5 p { margin-bottom: 1rem; line-height: 1.7; }
.large_9fd5 strong { color: var(--text-primary); }
.large_9fd5 ul { list-style: none; padding-left: 0; }
.large_9fd5 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.large_9fd5 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.shadow_active_33f7 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.description-cool-734e { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.description-cool-734e:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.image-7de9 { font-size: 3rem; margin-bottom: 1rem; }
.description-cool-734e h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.description-cool-734e p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.filter_lower_4a36 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.filter_lower_4a36 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.block-1001 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.button_84fd { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.chip_2e7c { text-align: center; }
.photo-a60b { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.highlight_dynamic_a733 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.panel-tall-3b72 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.copper_7dc5 { margin: 2rem 0; }
.hidden-8a7c { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.hidden-8a7c h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.hidden-8a7c p, .hidden-8a7c ul { line-height: 1.7; }
.hidden-8a7c ul { list-style: none; padding-left: 0; }
.hidden-8a7c ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.hidden-8a7c ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.highlight-4411 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.primary_full_f7a3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.solid_4ffc { text-align: center; }
.message-e3a3 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.component-large-d445 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.progress-fresh-9114 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.banner-86a5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.pattern-black-1ae1 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.pattern-black-1ae1:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.pattern-black-1ae1 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.pattern-black-1ae1 p, .pattern-black-1ae1 ul { line-height: 1.7; }
.pattern-black-1ae1 ul { list-style: none; padding-left: 0; }
.pattern-black-1ae1 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.pattern-black-1ae1 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: a9d5 */
.widget-item-b0 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.1;
}
