/* ============================================
   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 */
.smooth-4175 p,
.menu_e659,
.hero_silver_02cf,
.feature_inner_a81b,
.blue-5241,
.simple_eed3,
.south-87da,
.slider_advanced_4e90 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.primary-fluid-8a84 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.primary-fluid-8a84 > *,
.gallery_e169,
.smooth-4175,
.block-active-3e46 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .primary-fluid-8a84 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .primary-fluid-8a84 {
    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 === */
.center-0aad {
  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 */
.center-0aad.cool_5b04 {
  box-shadow: var(--shadow-md);
}

.filter_first_bd21 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.menu-south-cd8b img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.full_9cf9 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.hot_06e2 {
  display: none;
}

/* Hide mobile actions on desktop */
.column-7414 {
  display: none;
}

.message-a1cb a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.message-a1cb a:hover,
.message-a1cb a.fn-active-4514 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.outer-96de {
  margin-left: 1rem;
}

.highlight-old-83f2 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.east_8870,
.basic_2642 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  color: white !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.east_8870 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.east_8870: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;
}

.basic_2642 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.basic_2642:hover {
  background: linear-gradient(135deg, #047857 0%, #065f46 100%);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  transform: translateY(-1px);
  text-decoration: none;
}

.east_8870 svg,
.basic_2642 svg {
  flex-shrink: 0;
}

.under_71c0 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hard_d3c7 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.hard_d3c7::before,
.hard_d3c7::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.hard_d3c7::before {
  top: -7px;
}

.hard_d3c7::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.yellow_30d2 {
  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 === */
.new_9e6f {
  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);
}

.carousel-5bc7 {
  margin: 0 0 2rem;
  text-align: center;
}

.module_0dd9 {
  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;
}

.module_0dd9:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.frame_d117 {
  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);
}

.frame_d117 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.in_f16e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.current_e72b {
  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;
}

.current_e72b:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.info-2ab6 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.box-305e {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.popup-slow-ae9c {
  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);
}

.popup-slow-ae9c .silver_ac81 {
  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;
}

.popup-slow-ae9c .silver_ac81 svg {
  flex-shrink: 0;
}

.popup-slow-ae9c .grid-52b3 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.popup-slow-ae9c .grid-52b3: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);
}

.popup-slow-ae9c .down_ea4a {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.popup-slow-ae9c .down_ea4a: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) {
  .new_9e6f {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .module_0dd9 {
    max-width: 100%;
  }

  .in_f16e {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .current_e72b {
    padding: 1rem;
  }

  .info-2ab6 {
    font-size: 1.5rem;
  }

  .box-305e {
    font-size: 0.75rem;
  }

  .frame_d117 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .popup-slow-ae9c {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .popup-slow-ae9c .silver_ac81 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .in_f16e {
    grid-template-columns: 1fr;
  }
}

.overlay-small-a817 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.medium-5c37 {
  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 === */
.mask_in_c7fc {
  margin-bottom: 2.5rem;
}

.video-df9d {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.overlay-small-a817 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.center_8850 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.prev_e277 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.fast-ab17 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.over_b966 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.outline-stone-bbb1 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.description-3675 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero_5c90 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero_5c90 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.image-7a77 {
  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);
}

.disabled-d607 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.block_steel_50dd {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.wrapper_5ef2 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.blue_5d54 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.progress_white_0f0b {
  display: grid;
  gap: 1rem;
}

.picture_selected_9dc5 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.picture-8cc8 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.simple_10eb {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.backdrop-2ff3 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.icon-east-4f0e {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.caption-dynamic-2936 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.caption-dynamic-2936 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.menu_e659 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.selected_47d7 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.panel_simple_2fb2 {
  display: grid;
  gap: 2rem;
}

.row-white-dde5 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.prev_e277 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.center_8850 {
  flex: 1;
}

.over_b966 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.over_b966 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.detail_plasma_7def {
  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;
}

.outline-stone-bbb1 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.slider_79b8 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.slider_79b8 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.breadcrumb-yellow-930d {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.breadcrumb-yellow-930d a {
  font-size: 0.875rem;
  font-weight: 500;
}

.cool-3927 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.cool-3927 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.cool-3927 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cool-3927 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.fast-f6e7 {
  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 === */
.banner-f480 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.focus-ead5 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.hovered-90bc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.fast-be89 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.fast-be89 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.fast-be89 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.fast-be89 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;
}

.fast-be89 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.fast-be89 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.smooth-4175 {
  padding: 3rem 0 5rem;
}

.block-active-3e46 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.block-active-3e46.filter_hard_00a5 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.hero_silver_02cf {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.list-old-d96b {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.border_cool_5f65 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.border_cool_5f65 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.content-aecd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.layout-inner-0d1a {
  text-align: center;
}

.item-78c3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.module_c623 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.image_cool_d02d {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.simple_eed3 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.feature_inner_a81b {
  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;
}

.feature_inner_a81b * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.feature_inner_a81b:hover {
  box-shadow: var(--shadow-lg);
}

.feature_inner_a81b.card_364c {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.feature_inner_a81b h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.feature_inner_a81b ul {
  margin: 1rem 0;
}

.feature_inner_a81b li {
  margin-bottom: 0.75rem;
}

.brown-a32b {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.layout_48cf {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.layout_48cf a {
  font-weight: 600;
}

/* === Data Tables === */
.middle-51f6 {
  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;
}

.middle-51f6 table {
  width: 100%;
  min-width: 600px;
}

.middle-51f6 thead {
  background-color: var(--primary-color);
  color: white;
}

.middle-51f6 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.middle-51f6 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.middle-51f6 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.middle-51f6 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.highlight_west_1512 {
  list-style: none;
  margin: 1.5rem 0;
}

.highlight_west_1512 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.highlight_west_1512 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.hover_294c::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-4514::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 === */
.modal_9062 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.image_1705 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.image_1705 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.image_1705 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.image_1705 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.modal_9062 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.south-87da {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.south-87da::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.old_254c {
  position: relative;
  margin-bottom: 3rem;
}

.widget-short-a20d {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.widget-short-a20d .old_3009 {
  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;
}

.row_f634 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.row_f634 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.row_f634 ul {
  margin: 1rem 0;
}

.row_f634 li {
  margin-bottom: 0.75rem;
}

.easy-3070 {
  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 === */
.lite-adc2 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.lite-adc2 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.alert_advanced_64f2 {
  list-style: none;
  margin: 1.5rem 0;
}

.alert_advanced_64f2 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.alert_advanced_64f2 a {
  font-weight: 600;
}

.grid_brown_7886 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.slider_advanced_4e90 {
  margin: 2.5rem 0;
}

.element_f562 {
  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;
}

.element_f562:hover {
  box-shadow: var(--shadow-lg);
}

.element_f562.frame-tall-3e6b {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.dark-86fa {
  flex-shrink: 0;
}

.dark-86fa 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);
}

.button-7fb1 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.main_c50d,
.component-60a5,
.pro-ea7f {
  width: 100%;
  margin: 1.5rem 0;
}

.detail_39b1 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.detail_39b1 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.notification-b998 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.notification-b998 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.banner_bd91 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.banner_bd91 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.slow_c698 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.fresh_ef1a {
  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;
}

.fresh_ef1a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.fresh_ef1a.label_advanced_dcdb {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.fresh_ef1a .notice_0b85 {
  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;
}

.fresh_ef1a h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.action_310d {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.white_0975 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.white_0975 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.container_large_b5d5 {
  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 === */
.silver_ac81 {
  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;
}

.grid-52b3 {
  background-color: var(--primary-color);
  color: white;
}

.grid-52b3:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.down_ea4a {
  background-color: var(--text-secondary);
  color: white;
}

.down_ea4a:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.container-8a0d {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.container-8a0d:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.caption_white_a0e1 {
  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;
}

.caption_white_a0e1:hover {
  background-color: var(--primary-dark);
}

.pressed_8d05 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.in-b144 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.disabled-upper-8f01 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.hard-8ab0 {
  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 === */
.hover-gas-cf32 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.panel_pink_e305 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.panel_pink_e305 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.huge-4fe3 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.green-621c {
  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;
}

.cool_b2d1 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.secondary_top_eade {
  list-style: none;
  counter-reset: rank-counter;
}

.secondary_top_eade li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.secondary_top_eade 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;
}

.static-666b {
  list-style: none;
}

.static-666b li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.picture_cdd1 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.active_eb94 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.active_eb94 .tag_9432 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.active_eb94 .gold-86e1 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.shade_81e2 {
  margin-top: 3rem;
}

.accordion_0422 {
  width: 100%;
}

.popup-88ff {
  background-color: #fef3c7;
}

.widget_dirty_8d12 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.card-9904 {
  margin: 3rem 0;
}

.top_eefd {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.carousel_5522 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.carousel_5522:hover {
  box-shadow: var(--shadow-lg);
}

.carousel_5522.clean-5a73 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.photo_2542 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.backdrop-narrow-b226 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.backdrop-narrow-b226 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tall-3233 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.carousel_5522 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.cool-6498 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.row-easy-01d8 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.static_33bb {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.form-fast-d160 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.heading-7240 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.tooltip-9a3c {
  margin-top: 1rem;
}

/* === FAQ Section === */
.widget-23f7 {
  max-width: 900px;
  margin: 0 auto;
}

.sort_6167 {
  margin: 2rem 0;
}

.search_complex_3a22 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.search_complex_3a22 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.search_complex_3a22 summary::-webkit-details-marker {
  display: none;
}

.search_complex_3a22 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.mini-041c {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.search_complex_3a22[open] .mini-041c {
  transform: rotate(45deg);
}

.info_7d07 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.info_7d07 p:last-child {
  margin-bottom: 0;
}

.module_f4ad {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.dynamic_b921 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.logo-9cff {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.logo-9cff p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.logo-9cff .silver_ac81 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.east_6817 {
  max-width: 900px;
  margin: 0 auto;
}

.footer_357a {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.down-869b {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.down-869b.fn-success-4514 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.container-f44d {
  font-size: 3rem;
  line-height: 1;
}

.message-west-6446 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.pagination_dynamic_4354 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.last-a548,
.purple-52bf {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.last-a548 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.purple-52bf h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.progress-north-d21b,
.secondary_6841 {
  margin: 1.5rem 0;
}

.progress-north-d21b li,
.secondary_6841 li {
  margin-bottom: 1rem;
}

.middle_8cea {
  margin: 3rem 0;
}

.highlight_0d69 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.highlight_0d69 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.highlight_0d69 ol {
  margin: 1rem 0;
}

.highlight_0d69 li {
  margin-bottom: 0.75rem;
}

.gradient-motion-c80a {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.breadcrumb_easy_1fc2 {
  margin: 2rem 0;
}

.blue_00ec {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.lower_a03f {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.heading-3847 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.thumbnail_selected_d125 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.widget-e391 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.paragraph_8ede {
  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;
}

.paragraph_8ede img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.fast-ab17 {
  flex: 1;
}

.fast-ab17 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.grid_tall_a7fb {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.right-fef4 p {
  margin-bottom: 1rem;
}

.logo-d2d6 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.south-9cc4 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.avatar-paper-f8b8 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.avatar-paper-f8b8 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.photo_b98a h3 {
  margin-bottom: 1.5rem;
}

.selected_48ae {
  display: grid;
  gap: 2rem;
}

.label_8773 {
  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;
}

.label_8773 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.label_8773 h4 {
  margin: 0 0 0.25rem;
}

.label_8773 p {
  margin: 0;
  font-size: 0.9375rem;
}

.image-wood-2a00 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.paper-290c {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.paper-290c h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.paper-290c ul {
  margin: 1.5rem 0;
}

.paper-290c li {
  margin-bottom: 0.75rem;
}

.plasma_a0c6 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.slow-565a {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.text-gold-280a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.paragraph-fresh-a65c h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.paragraph-fresh-a65c p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.menu_tiny_3382 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.menu_tiny_3382 a {
  color: rgba(255, 255, 255, 0.8);
}

.pattern-4d11 {
  list-style: none;
}

.pattern-4d11 li {
  margin-bottom: 0.75rem;
}

.pattern-4d11 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.pattern-4d11 a:hover {
  color: white;
}

.feature_advanced_115d {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.modal-cool-a505 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.pattern-green-8290 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.gradient-af6e {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.heading_paper_b65b {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .primary-fluid-8a84 {
    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;
  }

  .header-5ee3 {
    font-size: 1.5rem !important;
  }

  .video-df9d {
    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 */
  .feature_inner_a81b,
  .blue-5241,
  .row_f634,
  .button-7fb1,
  .photo_2542,
  .carousel_5522,
  .info_7d07,
  .frame_d117,
  .menu_e659,
  .hero_silver_02cf {
    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 */
  .overlay-small-a817 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .center_8850 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .prev_e277 {
    flex-shrink: 0;
  }

  .fast-ab17 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .over_b966,
  .outline-stone-bbb1 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .outline-stone-bbb1 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .full_9cf9 {
    display: none;
  }

  /* Show mobile actions */
  .column-7414 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .status_5357 {
    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;
  }

  .status_5357 svg {
    flex-shrink: 0;
  }

  .status_5357 .dirty_f810 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .status_5357 .in_f20e {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .link-gold-a59a {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .lite_4d70 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .status_5357:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .hot_06e2 {
    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;
  }

  .hot_06e2.fn-active-4514 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hot_06e2 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .hot_06e2 li:last-child {
    border-bottom: none;
  }

  .hot_06e2 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .message-a1cb {
    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;
  }

  .message-a1cb li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .message-a1cb li:last-child {
    border-bottom: none;
  }

  .message-a1cb a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .outer-96de {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .highlight-old-83f2 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .east_8870,
  .basic_2642 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .east_8870 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .basic_2642 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .message-a1cb.fn-active-4514 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .under_71c0 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .center-0aad {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .filter_first_bd21 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .yellow_30d2 {
    margin-top: 0;
  }

  /* Hero section */
  .yellow_30d2 {
    padding: 2rem 0 1.5rem;
  }

  .video-df9d {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .menu_e659 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .new_9e6f {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .module_0dd9 {
    max-width: 100%;
    border-radius: 8px;
  }

  .in_f16e {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .current_e72b {
    padding: 1rem;
  }

  .info-2ab6 {
    font-size: 1.5rem;
  }

  .box-305e {
    font-size: 0.75rem;
  }

  .frame_d117 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .popup-slow-ae9c {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .popup-slow-ae9c .silver_ac81 {
    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 */
  .hovered-90bc {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .element_f562 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .dark-86fa {
    margin-bottom: 1rem;
  }

  /* Author */
  .row-white-dde5 {
    flex-direction: column;
  }

  .paragraph_8ede {
    flex-direction: column;
  }

  /* Quotes */
  .photo_2542 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .pagination_dynamic_4354 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .thumbnail_selected_d125 {
    flex-direction: column;
  }

  .thumbnail_selected_d125 .silver_ac81 {
    width: 100%;
  }

  /* Version comparison */
  .slow_c698 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .hover-gas-cf32 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .text-gold-280a {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pattern-green-8290 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .middle-51f6,
  .component-60a5,
  .filter-mini-595d,
  .accordion_0422,
  .main_c50d,
  .pro-ea7f {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .middle-51f6 table,
  .component-60a5 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .container_large_b5d5 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .primary-fluid-8a84 {
    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;
  }

  .header-5ee3 {
    font-size: 1.25rem !important;
  }

  .video-df9d {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .center-0aad {
    position: fixed;
  }

  .filter_first_bd21 {
    padding: 0.625rem 0;
  }

  .menu-south-cd8b img {
    height: 26px;
  }

  .message-a1cb {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .hot_06e2 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .status_5357 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .status_5357 svg {
    width: 18px;
    height: 18px;
  }

  .status_5357 .dirty_f810 {
    font-size: 0.7rem;
  }

  .status_5357 .in_f20e {
    font-size: 0.65rem;
  }

  .east_8870,
  .basic_2642 {
    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, .primary-fluid-8a84, .gallery_e169, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .new_9e6f {
    padding: 1rem;
  }

  .in_f16e {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .current_e72b {
    padding: 0.875rem;
  }

  .info-2ab6 {
    font-size: 1.25rem;
  }

  .popup-slow-ae9c .silver_ac81 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .video-df9d {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .silver_ac81 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .pressed_8d05 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .element_f562 {
    padding: 1rem;
  }

  .dark-86fa span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .feature_inner_a81b,
  .row-green-9006,
  .narrow_0773,
  .caption-d8ac {
    padding: 1rem;
  }
}

@media print {
  .center-0aad,
  .banner-f480,
  .under_71c0,
  .silver_ac81,
  .slow-565a {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .primary-fluid-8a84 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.widget_dirty_6fa3 {
  margin-bottom: 3rem;
  text-align: center;
}

.header-5ee3 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.preview-51b8 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.chip-c409,
.active_inner_536d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.picture-db5d {
  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;
}

.picture-db5d:hover {
  transform: translateY(-5px);
}

.picture-db5d strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.picture-db5d span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.article-action-4a2c {
  margin: 3rem 0;
}

.over_31da {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.right-c776 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.right-c776:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.tabs_solid_4f71 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.module-1fd9 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.progress-hot-33bb {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.card_b48b {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.thumbnail_4241 {
  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;
}

.thumbnail_4241:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.thumbnail_4241.lower_4784 {
  border-left: 4px solid var(--primary-color);
}

.section_c607 {
  flex-shrink: 0;
}

.section_c607 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.link-64a1 {
  flex: 1;
}

.link-64a1 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.glass_6b5e {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.pattern_wood_d091,
.glass_f73e,
.cold_36d0 {
  margin-bottom: 1.5rem;
}

.pattern_wood_d091 h4,
.glass_f73e h4,
.cold_36d0 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pattern_wood_d091 ul,
.glass_f73e ul,
.cold_36d0 ul {
  list-style: none;
  padding: 0;
}

.pattern_wood_d091 li,
.glass_f73e li,
.cold_36d0 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.pattern_wood_d091 li:before,
.glass_f73e li:before,
.cold_36d0 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.out-50f3 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.out-50f3 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;
}

.out-50f3 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.badge-west-6e6b { margin: 2rem 0; }
.avatar_1198 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.avatar_1198 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.backdrop_1077 p { margin-bottom: 1rem; line-height: 1.7; }
.backdrop_1077 strong { color: var(--text-primary); }
.backdrop_1077 ul { list-style: none; padding-left: 0; }
.backdrop_1077 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.backdrop_1077 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.aside-up-942f { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.heading_fixed_f98f { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.heading_fixed_f98f:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.feature_78dc { font-size: 3rem; margin-bottom: 1rem; }
.heading_fixed_f98f h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.heading_fixed_f98f p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.upper-b0e6 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.upper-b0e6 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.modal_98f7 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.highlight_stone_834a { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.bronze_5e60 { text-align: center; }
.nav_dbd2 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.card_fluid_06d6 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.background_narrow_831d { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.south-9db6 { margin: 2rem 0; }
.card_medium_3a47 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.card_medium_3a47 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.card_medium_3a47 p, .card_medium_3a47 ul { line-height: 1.7; }
.card_medium_3a47 ul { list-style: none; padding-left: 0; }
.card_medium_3a47 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.card_medium_3a47 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.texture_ee0a { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.footer_bright_f6c6 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.stone-afae { text-align: center; }
.red_9da2 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.main-fast-f1f1 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.nav_dark_6dfb { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.text-west-7026 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.container-2c49 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.container-2c49:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.container-2c49 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.container-2c49 p, .container-2c49 ul { line-height: 1.7; }
.container-2c49 ul { list-style: none; padding-left: 0; }
.container-2c49 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.container-2c49 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 939d */
.ghost-box-s0 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.3;
}
