/* ============================================
   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 */
.small_f95a p,
.frame_clean_5b58,
.short-ecd8,
.icon_8103,
.prev_5946,
.card-09dd,
.description-lite-62c4,
.media_outer_6db9 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.hero_cded {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.hero_cded > *,
.search_tiny_a286,
.small_f95a,
.accordion_out_a551 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .hero_cded {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .hero_cded {
    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 === */
.black_13b3 {
  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 */
.black_13b3.element_bottom_a4c8 {
  box-shadow: var(--shadow-md);
}

.pro_c999 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.full_d79f img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.article_solid_3284 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.rough-3eb3 {
  display: none;
}

/* Hide mobile actions on desktop */
.clean_97ab {
  display: none;
}

.texture-110b a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.texture-110b a:hover,
.texture-110b a.fn-active-3d21 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.outline-over-8dfa {
  margin-left: 1rem;
}

.link_dirty_97df {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.up-64d4,
.complex_ad15 {
  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;
}

.up-64d4 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.up-64d4: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;
}

.complex_ad15 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.complex_ad15: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;
}

.up-64d4 svg,
.complex_ad15 svg {
  flex-shrink: 0;
}

.badge_dae3 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.alert_silver_8860 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.alert_silver_8860::before,
.alert_silver_8860::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.alert_silver_8860::before {
  top: -7px;
}

.alert_silver_8860::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.message-top-e9f9 {
  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 === */
.outline-1384 {
  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);
}

.advanced-9a11 {
  margin: 0 0 2rem;
  text-align: center;
}

.column-next-8ba7 {
  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;
}

.column-next-8ba7:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.icon_71a5 {
  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);
}

.icon_71a5 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.menu_f48c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.preview-tiny-841a {
  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;
}

.preview-tiny-841a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pressed_d051 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.solid-8fe8 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.sidebar_3efd {
  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);
}

.sidebar_3efd .accordion_7b6b {
  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;
}

.sidebar_3efd .accordion_7b6b svg {
  flex-shrink: 0;
}

.sidebar_3efd .clean-4fbd {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.sidebar_3efd .clean-4fbd: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);
}

.sidebar_3efd .breadcrumb_5d10 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.sidebar_3efd .breadcrumb_5d10: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) {
  .outline-1384 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .column-next-8ba7 {
    max-width: 100%;
  }

  .menu_f48c {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .preview-tiny-841a {
    padding: 1rem;
  }

  .pressed_d051 {
    font-size: 1.5rem;
  }

  .solid-8fe8 {
    font-size: 0.75rem;
  }

  .icon_71a5 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .sidebar_3efd {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .sidebar_3efd .accordion_7b6b {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .menu_f48c {
    grid-template-columns: 1fr;
  }
}

.outline_mini_2b2b {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.large-600b {
  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 === */
.iron_90a5 {
  margin-bottom: 2.5rem;
}

.hover-blue-6ae7 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.outline_mini_2b2b {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.avatar_baa4 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.easy-ff60 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.message-inner-8655 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tall-d852 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.right_14f4 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.overlay_d085 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.backdrop-aebe {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.backdrop-aebe svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.accordion-inner-6cd4 {
  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);
}

.paragraph-iron-062e {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.tag_7a30 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.description_medium_10ae {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.blue-dc80 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.brown-7997 {
  display: grid;
  gap: 1rem;
}

.hero_4842 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.primary-e1fd {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.fluid_f000 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.cool-d7a7 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.primary-f486 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.south_f3b1 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.south_f3b1 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.frame_clean_5b58 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.search-blue-4a2c {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.video-soft-71ff {
  display: grid;
  gap: 2rem;
}

.short-1d00 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.easy-ff60 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.avatar_baa4 {
  flex: 1;
}

.tall-d852 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.tall-d852 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.logo_stale_3007 {
  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;
}

.right_14f4 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.caption_e7e5 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.caption_e7e5 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.photo_large_a1b9 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.photo_large_a1b9 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.container-9a8b {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.container-9a8b strong {
  display: block;
  margin-bottom: 0.75rem;
}

.container-9a8b ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.container-9a8b li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.white-8ced {
  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 === */
.progress_fluid_2b2b {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb_advanced_a619 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.active-c240 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.cool_e0a4 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.cool_e0a4 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.cool_e0a4 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.cool_e0a4 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;
}

.cool_e0a4 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.cool_e0a4 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.small_f95a {
  padding: 3rem 0 5rem;
}

.accordion_out_a551 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.accordion_out_a551.green_5221 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.short-ecd8 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.focused_50d5 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.chip-prev-358d {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.chip-prev-358d h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.preview_9965 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.copper-6d91 {
  text-align: center;
}

.tag-97fc {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.easy_4f76 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.static-09f3 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.card-09dd {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.icon_8103 {
  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;
}

.icon_8103 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.icon_8103:hover {
  box-shadow: var(--shadow-lg);
}

.icon_8103.plasma-3d00 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.icon_8103 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.icon_8103 ul {
  margin: 1rem 0;
}

.icon_8103 li {
  margin-bottom: 0.75rem;
}

.slider-upper-be12 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.dirty_a658 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.dirty_a658 a {
  font-weight: 600;
}

/* === Data Tables === */
.title_middle_eae6 {
  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;
}

.title_middle_eae6 table {
  width: 100%;
  min-width: 600px;
}

.title_middle_eae6 thead {
  background-color: var(--primary-color);
  color: white;
}

.title_middle_eae6 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.title_middle_eae6 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.title_middle_eae6 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.title_middle_eae6 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.cold_35c1 {
  list-style: none;
  margin: 1.5rem 0;
}

.cold_35c1 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.cold_35c1 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.container-6ec2::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-3d21::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 === */
.tooltip_d83d {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.sidebar-action-c91c {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.sidebar-action-c91c img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.sidebar-action-c91c strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.sidebar-action-c91c span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tooltip_d83d blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.description-lite-62c4 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.description-lite-62c4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.chip_09f7 {
  position: relative;
  margin-bottom: 3rem;
}

.focused_10aa {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.focused_10aa .hidden_ef74 {
  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;
}

.info_c586 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.info_c586 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.info_c586 ul {
  margin: 1rem 0;
}

.info_c586 li {
  margin-bottom: 0.75rem;
}

.image-317c {
  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 === */
.tabs_6031 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.tabs_6031 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.cold-43df {
  list-style: none;
  margin: 1.5rem 0;
}

.cold-43df li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.cold-43df a {
  font-weight: 600;
}

.filter-small-3d38 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.media_outer_6db9 {
  margin: 2.5rem 0;
}

.fast-bbd1 {
  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;
}

.fast-bbd1:hover {
  box-shadow: var(--shadow-lg);
}

.fast-bbd1.accordion_e537 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.wood_5129 {
  flex-shrink: 0;
}

.wood_5129 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);
}

.hovered-ff5c h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.content_b7cb,
.highlight_slow_8e8d,
.menu-bright-4270 {
  width: 100%;
  margin: 1.5rem 0;
}

.wrapper-upper-4a89 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.wrapper-upper-4a89 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.backdrop-basic-7bb8 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.backdrop-basic-7bb8 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.avatar_8a1c {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.avatar_8a1c strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.cool_cfeb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.fixed-7846 {
  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;
}

.fixed-7846:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.fixed-7846.hidden_5d07 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.fixed-7846 .button_bright_d8e7 {
  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;
}

.fixed-7846 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.panel_8a8d {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.menu_south_e6a3 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.menu_south_e6a3 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.popup-1cfd {
  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 === */
.accordion_7b6b {
  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;
}

.clean-4fbd {
  background-color: var(--primary-color);
  color: white;
}

.clean-4fbd:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.breadcrumb_5d10 {
  background-color: var(--text-secondary);
  color: white;
}

.breadcrumb_5d10:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.hero-black-1dbf {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.hero-black-1dbf:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.item_light_2f65 {
  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;
}

.item_light_2f65:hover {
  background-color: var(--primary-dark);
}

.badge-533d {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.info_63f9 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.paragraph-a821 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.slow_3b84 {
  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 === */
.steel-bce2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.avatar-fb1c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.avatar-fb1c h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.list_89f8 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.focused_701a {
  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;
}

.gold-f1be {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.hard-1f44 {
  list-style: none;
  counter-reset: rank-counter;
}

.hard-1f44 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.hard-1f44 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;
}

.chip_cold_123e {
  list-style: none;
}

.chip_cold_123e li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.mask-next-7137 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.current-c793 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.current-c793 .sidebar-c8fb {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.current-c793 .yellow_17a2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.icon-89be {
  margin-top: 3rem;
}

.item-old-b0bb {
  width: 100%;
}

.old-b078 {
  background-color: #fef3c7;
}

.link_d3a3 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.blue-31b7 {
  margin: 3rem 0;
}

.sidebar-last-d6df {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.upper_7c0f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.upper_7c0f:hover {
  box-shadow: var(--shadow-lg);
}

.upper_7c0f.content_hovered_1fbd {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.overlay_basic_e71a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.glass_6de1 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.glass_6de1 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.detail_c6b9 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.upper_7c0f blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.filter-218e {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.link-3f89 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.north-5cf0 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.nav_red_9be6 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.article_9845 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.popup_9bce {
  margin-top: 1rem;
}

/* === FAQ Section === */
.footer-fresh-8617 {
  max-width: 900px;
  margin: 0 auto;
}

.title_67b5 {
  margin: 2rem 0;
}

.photo-af53 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.photo-af53 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.photo-af53 summary::-webkit-details-marker {
  display: none;
}

.photo-af53 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.row-large-d875 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.photo-af53[open] .row-large-d875 {
  transform: rotate(45deg);
}

.label_brown_7579 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.label_brown_7579 p:last-child {
  margin-bottom: 0;
}

.thumbnail-448f {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.under_32ea {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.sidebar_iron_b427 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.sidebar_iron_b427 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.sidebar_iron_b427 .accordion_7b6b {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.filter-ed3c {
  max-width: 900px;
  margin: 0 auto;
}

.title-f5bf {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.pressed_b4cb {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.pressed_b4cb.fn-success-3d21 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.component-large-c9d4 {
  font-size: 3rem;
  line-height: 1;
}

.search_east_303d h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.accent_in_744a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.pattern_silver_2b00,
.background_left_4a96 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.pattern_silver_2b00 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.background_left_4a96 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.backdrop_4029,
.active_108c {
  margin: 1.5rem 0;
}

.backdrop_4029 li,
.active_108c li {
  margin-bottom: 1rem;
}

.wood-016c {
  margin: 3rem 0;
}

.secondary_bottom_996c {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.secondary_bottom_996c h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.secondary_bottom_996c ol {
  margin: 1rem 0;
}

.secondary_bottom_996c li {
  margin-bottom: 0.75rem;
}

.summary_fixed_8619 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.sort-e578 {
  margin: 2rem 0;
}

.secondary-last-4dfe {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.border_c566 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.link_9586 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.module_huge_701c {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.focus-fecc {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.tall-1e2a {
  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;
}

.tall-1e2a img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.message-inner-8655 {
  flex: 1;
}

.message-inner-8655 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.alert-copper-34ab {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section_lower_a388 p {
  margin-bottom: 1rem;
}

.description-6786 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.footer_middle_bb03 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.static_1d2d {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.static_1d2d a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.dirty-70b5 h3 {
  margin-bottom: 1.5rem;
}

.box-2ba3 {
  display: grid;
  gap: 2rem;
}

.notice_80eb {
  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;
}

.notice_80eb img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.notice_80eb h4 {
  margin: 0 0 0.25rem;
}

.notice_80eb p {
  margin: 0;
  font-size: 0.9375rem;
}

.fluid-3b43 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.info_a573 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.info_a573 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.info_a573 ul {
  margin: 1.5rem 0;
}

.info_a573 li {
  margin-bottom: 0.75rem;
}

.bright-93e4 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.dark_39c3 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.fixed_3aa7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.smooth_1f44 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.smooth_1f44 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.rough_2394 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.rough_2394 a {
  color: rgba(255, 255, 255, 0.8);
}

.hot-0283 {
  list-style: none;
}

.hot-0283 li {
  margin-bottom: 0.75rem;
}

.hot-0283 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.hot-0283 a:hover {
  color: white;
}

.thick-0173 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.slider_bottom_344a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.north_dde2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.tertiary_in_bb85 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.dirty-d712 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .hero_cded {
    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;
  }

  .caption-small-a277 {
    font-size: 1.5rem !important;
  }

  .hover-blue-6ae7 {
    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 */
  .icon_8103,
  .prev_5946,
  .info_c586,
  .hovered-ff5c,
  .overlay_basic_e71a,
  .upper_7c0f,
  .label_brown_7579,
  .icon_71a5,
  .frame_clean_5b58,
  .short-ecd8 {
    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 */
  .outline_mini_2b2b {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .avatar_baa4 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .easy-ff60 {
    flex-shrink: 0;
  }

  .message-inner-8655 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .tall-d852,
  .right_14f4 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .right_14f4 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .article_solid_3284 {
    display: none;
  }

  /* Show mobile actions */
  .clean_97ab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .full-6ae9 {
    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;
  }

  .full-6ae9 svg {
    flex-shrink: 0;
  }

  .full-6ae9 .avatar_pressed_a647 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .full-6ae9 .progress_orange_5d99 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .tiny-1da0 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .title_884d {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .full-6ae9:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .rough-3eb3 {
    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;
  }

  .rough-3eb3.fn-active-3d21 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .rough-3eb3 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .rough-3eb3 li:last-child {
    border-bottom: none;
  }

  .rough-3eb3 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .texture-110b {
    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;
  }

  .texture-110b li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .texture-110b li:last-child {
    border-bottom: none;
  }

  .texture-110b a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .outline-over-8dfa {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .link_dirty_97df {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .up-64d4,
  .complex_ad15 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .up-64d4 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .complex_ad15 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .texture-110b.fn-active-3d21 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .badge_dae3 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .black_13b3 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .pro_c999 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .message-top-e9f9 {
    margin-top: 0;
  }

  /* Hero section */
  .message-top-e9f9 {
    padding: 2rem 0 1.5rem;
  }

  .hover-blue-6ae7 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .frame_clean_5b58 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .outline-1384 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .column-next-8ba7 {
    max-width: 100%;
    border-radius: 8px;
  }

  .menu_f48c {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .preview-tiny-841a {
    padding: 1rem;
  }

  .pressed_d051 {
    font-size: 1.5rem;
  }

  .solid-8fe8 {
    font-size: 0.75rem;
  }

  .icon_71a5 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .sidebar_3efd {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .sidebar_3efd .accordion_7b6b {
    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 */
  .active-c240 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .fast-bbd1 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .wood_5129 {
    margin-bottom: 1rem;
  }

  /* Author */
  .short-1d00 {
    flex-direction: column;
  }

  .tall-1e2a {
    flex-direction: column;
  }

  /* Quotes */
  .overlay_basic_e71a {
    flex-direction: column;
  }

  /* Pros/Cons */
  .accent_in_744a {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .module_huge_701c {
    flex-direction: column;
  }

  .module_huge_701c .accordion_7b6b {
    width: 100%;
  }

  /* Version comparison */
  .cool_cfeb {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .steel-bce2 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .fixed_3aa7 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .north_dde2 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .title_middle_eae6,
  .highlight_slow_8e8d,
  .border_paper_599b,
  .item-old-b0bb,
  .content_b7cb,
  .menu-bright-4270 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .title_middle_eae6 table,
  .highlight_slow_8e8d table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .popup-1cfd {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero_cded {
    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;
  }

  .caption-small-a277 {
    font-size: 1.25rem !important;
  }

  .hover-blue-6ae7 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .black_13b3 {
    position: fixed;
  }

  .pro_c999 {
    padding: 0.625rem 0;
  }

  .full_d79f img {
    height: 26px;
  }

  .texture-110b {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .rough-3eb3 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .full-6ae9 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .full-6ae9 svg {
    width: 18px;
    height: 18px;
  }

  .full-6ae9 .avatar_pressed_a647 {
    font-size: 0.7rem;
  }

  .full-6ae9 .progress_orange_5d99 {
    font-size: 0.65rem;
  }

  .up-64d4,
  .complex_ad15 {
    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, .hero_cded, .search_tiny_a286, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .outline-1384 {
    padding: 1rem;
  }

  .menu_f48c {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .preview-tiny-841a {
    padding: 0.875rem;
  }

  .pressed_d051 {
    font-size: 1.25rem;
  }

  .sidebar_3efd .accordion_7b6b {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .hover-blue-6ae7 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .accordion_7b6b {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .badge-533d {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .fast-bbd1 {
    padding: 1rem;
  }

  .wood_5129 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .icon_8103,
  .logo_selected_5b83,
  .backdrop-cold-5eb3,
  .container-lower-2b98 {
    padding: 1rem;
  }
}

@media print {
  .black_13b3,
  .progress_fluid_2b2b,
  .badge_dae3,
  .accordion_7b6b,
  .dark_39c3 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .hero_cded {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.frame_badf {
  margin-bottom: 3rem;
  text-align: center;
}

.caption-small-a277 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.secondary_1ec6 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.column_dc80,
.dynamic-48ce {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.cold_c86b {
  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;
}

.cold_c86b:hover {
  transform: translateY(-5px);
}

.cold_c86b strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.cold_c86b span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.modal_f8a3 {
  margin: 3rem 0;
}

.chip-f47c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gradient-white-9b05 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.gradient-white-9b05:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.yellow_73da {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature_slow_3939 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.wood-2810 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.right_6261 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.stone-9aef {
  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;
}

.stone-9aef:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.stone-9aef.active_6b32 {
  border-left: 4px solid var(--primary-color);
}

.simple_994b {
  flex-shrink: 0;
}

.simple_994b svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.clean_4dda {
  flex: 1;
}

.clean_4dda h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.gradient-silver-06ab {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.gallery-96a1,
.footer_huge_f949,
.thick-5706 {
  margin-bottom: 1.5rem;
}

.gallery-96a1 h4,
.footer_huge_f949 h4,
.thick-5706 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gallery-96a1 ul,
.footer_huge_f949 ul,
.thick-5706 ul {
  list-style: none;
  padding: 0;
}

.gallery-96a1 li,
.footer_huge_f949 li,
.thick-5706 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.gallery-96a1 li:before,
.footer_huge_f949 li:before,
.thick-5706 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.link-d4a7 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.link-d4a7 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;
}

.link-d4a7 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.title-right-9ae9 { margin: 2rem 0; }
.surface-smooth-2101 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.surface-smooth-2101 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.gallery-wood-f497 p { margin-bottom: 1rem; line-height: 1.7; }
.gallery-wood-f497 strong { color: var(--text-primary); }
.gallery-wood-f497 ul { list-style: none; padding-left: 0; }
.gallery-wood-f497 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.gallery-wood-f497 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.footer-large-5780 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.modal_bcba { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.modal_bcba:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.tag-afb6 { font-size: 3rem; margin-bottom: 1rem; }
.modal_bcba h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.modal_bcba p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.container-pressed-4cf9 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.container-pressed-4cf9 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.hovered-dd13 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.detail-right-8c37 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.hover_5278 { text-align: center; }
.shade_narrow_4f4e { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.mask-2dea { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.frame-f3b6 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.header-left-60be { margin: 2rem 0; }
.sort-in-d455 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.sort-in-d455 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.sort-in-d455 p, .sort-in-d455 ul { line-height: 1.7; }
.sort-in-d455 ul { list-style: none; padding-left: 0; }
.sort-in-d455 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.sort-in-d455 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.small-3d57 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.section-0a96 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.fixed_c733 { text-align: center; }
.overlay_inner_14f4 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.frame_4f32 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.dropdown_389f { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.icon-dark-d050 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.aside-lower-c6aa { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.aside-lower-c6aa:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.aside-lower-c6aa h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.aside-lower-c6aa p, .aside-lower-c6aa ul { line-height: 1.7; }
.aside-lower-c6aa ul { list-style: none; padding-left: 0; }
.aside-lower-c6aa ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.aside-lower-c6aa ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 01f7 */
.ghost-box-m5 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.2;
}
