/* ============================================
   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 */
.bottom-8e69 p,
.menu-north-9fcb,
.inner-8650,
.hard_3c8f,
.card-under-fc20,
.notice_a250,
.progress_da22,
.current-dd8f {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.narrow_5c3d {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.narrow_5c3d > *,
.cool-6e96,
.bottom-8e69,
.button_22bd {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .narrow_5c3d {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .narrow_5c3d {
    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 === */
.mask-655e {
  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 */
.mask-655e.search_hovered_ec2d {
  box-shadow: var(--shadow-md);
}

.pattern-a281 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.module-dda5 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.warm-6fba {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.wide_c4a0 {
  display: none;
}

/* Hide mobile actions on desktop */
.hidden-4a31 {
  display: none;
}

.summary_inner_5142 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.summary_inner_5142 a:hover,
.summary_inner_5142 a.fn-active-4a8d {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.list-ec78 {
  margin-left: 1rem;
}

.sidebar-1cae {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.wrapper_87fd,
.media-south-08cd {
  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;
}

.wrapper_87fd {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.wrapper_87fd: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;
}

.media-south-08cd {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.media-south-08cd: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;
}

.wrapper_87fd svg,
.media-south-08cd svg {
  flex-shrink: 0;
}

.content_lite_1bf4 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.backdrop_5680 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.backdrop_5680::before,
.backdrop_5680::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.backdrop_5680::before {
  top: -7px;
}

.backdrop_5680::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.up_1203 {
  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 === */
.feature-e2b2 {
  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);
}

.texture_de62 {
  margin: 0 0 2rem;
  text-align: center;
}

.thumbnail_c87c {
  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;
}

.thumbnail_c87c:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.lite-b237 {
  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);
}

.lite-b237 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.progress_02f8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.gold_ed5a {
  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;
}

.gold_ed5a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.complex-12cc {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.shadow-d990 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.heading_pro_f9e1 {
  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);
}

.heading_pro_f9e1 .hovered-8922 {
  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;
}

.heading_pro_f9e1 .hovered-8922 svg {
  flex-shrink: 0;
}

.heading_pro_f9e1 .in-8378 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.heading_pro_f9e1 .in-8378: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);
}

.heading_pro_f9e1 .progress-white-8280 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.heading_pro_f9e1 .progress-white-8280: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) {
  .feature-e2b2 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .thumbnail_c87c {
    max-width: 100%;
  }

  .progress_02f8 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .gold_ed5a {
    padding: 1rem;
  }

  .complex-12cc {
    font-size: 1.5rem;
  }

  .shadow-d990 {
    font-size: 0.75rem;
  }

  .lite-b237 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .heading_pro_f9e1 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .heading_pro_f9e1 .hovered-8922 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .progress_02f8 {
    grid-template-columns: 1fr;
  }
}

.layout-outer-8303 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.mask_e7eb {
  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 === */
.focus-cold-0f7f {
  margin-bottom: 2.5rem;
}

.picture-slow-42d7 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.layout-outer-8303 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.backdrop_d548 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.slider-fluid-ed8a {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.fast_221d {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.box-glass-22ff {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.badge_545e {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.card-current-c665 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hovered-be32 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hovered-be32 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.texture-wide-23f8 {
  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);
}

.summary-a0d8 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.dropdown-0912 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.focus-962b {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.hovered-b2cf {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.heading-23a5 {
  display: grid;
  gap: 1rem;
}

.notification-9b1e {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.menu_a303 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.active-in-37cb {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.article-f4d1 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.focus_brown_1110 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.border-4350 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.border-4350 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.menu-north-9fcb {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.grid_bbb9 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.pattern_618a {
  display: grid;
  gap: 2rem;
}

.button-83a1 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.slider-fluid-ed8a {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.backdrop_d548 {
  flex: 1;
}

.box-glass-22ff {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.box-glass-22ff a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.bright-737b {
  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;
}

.badge_545e {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.next-9620 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.next-9620 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.bright-3215 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.bright-3215 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.link_414a {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.link_414a strong {
  display: block;
  margin-bottom: 0.75rem;
}

.link_414a ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.link_414a li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.fluid_f889 {
  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 === */
.nav-brown-92ea {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.search_8d3b {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.center-8719 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.status-focused-8519 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.status-focused-8519 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.status-focused-8519 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.status-focused-8519 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;
}

.status-focused-8519 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.status-focused-8519 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.bottom-8e69 {
  padding: 3rem 0 5rem;
}

.button_22bd {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.button_22bd.hard_797f {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.inner-8650 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.north-653b {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.aside-plasma-6404 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.aside-plasma-6404 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.background-active-2332 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.filter-5cbd {
  text-align: center;
}

.message_17d8 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.banner-6558 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.down_50cd {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.notice_a250 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.hard_3c8f {
  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;
}

.hard_3c8f * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hard_3c8f:hover {
  box-shadow: var(--shadow-lg);
}

.hard_3c8f.copper_6e6d {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.hard_3c8f h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.hard_3c8f ul {
  margin: 1rem 0;
}

.hard_3c8f li {
  margin-bottom: 0.75rem;
}

.plasma_3497 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.dark_87fc {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.dark_87fc a {
  font-weight: 600;
}

/* === Data Tables === */
.nav_ba4c {
  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;
}

.nav_ba4c table {
  width: 100%;
  min-width: 600px;
}

.nav_ba4c thead {
  background-color: var(--primary-color);
  color: white;
}

.nav_ba4c th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.nav_ba4c td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.nav_ba4c tbody tr:hover {
  background-color: var(--bg-secondary);
}

.nav_ba4c tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.rough-079d {
  list-style: none;
  margin: 1.5rem 0;
}

.rough-079d li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.rough-079d li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.orange-2bc2::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-4a8d::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_upper_69a5 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.thick_8070 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.thick_8070 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.thick_8070 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.thick_8070 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tooltip_upper_69a5 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.progress_da22 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.progress_da22::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.active-7e70 {
  position: relative;
  margin-bottom: 3rem;
}

.progress-dark-fab8 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.progress-dark-fab8 .item-ff85 {
  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;
}

.logo_basic_b30b {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.logo_basic_b30b h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.logo_basic_b30b ul {
  margin: 1rem 0;
}

.logo_basic_b30b li {
  margin-bottom: 0.75rem;
}

.highlight-gold-79e7 {
  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 === */
.chip-05e4 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.chip-05e4 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.green-8c2b {
  list-style: none;
  margin: 1.5rem 0;
}

.green-8c2b li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.green-8c2b a {
  font-weight: 600;
}

.modal-short-06bd {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.current-dd8f {
  margin: 2.5rem 0;
}

.small_cd9c {
  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;
}

.small_cd9c:hover {
  box-shadow: var(--shadow-lg);
}

.small_cd9c.list-2b84 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.surface-48b4 {
  flex-shrink: 0;
}

.surface-48b4 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);
}

.under_c10d h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.complex-c612,
.blue-70de,
.title-0fc4 {
  width: 100%;
  margin: 1.5rem 0;
}

.frame_basic_b609 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.frame_basic_b609 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.clean-cdaf {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.clean-cdaf strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.header-84a4 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.header-84a4 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.action_120c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.accordion-d08d {
  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;
}

.accordion-d08d:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.accordion-d08d.primary-hovered-41fa {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.accordion-d08d .basic-7bc9 {
  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;
}

.accordion-d08d h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.fast-be56 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.heading-866e {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.heading-866e label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.chip_a9aa {
  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 === */
.hovered-8922 {
  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;
}

.in-8378 {
  background-color: var(--primary-color);
  color: white;
}

.in-8378:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.progress-white-8280 {
  background-color: var(--text-secondary);
  color: white;
}

.progress-white-8280:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.shadow-under-2997 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.shadow-under-2997:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.light_4a2c {
  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;
}

.light_4a2c:hover {
  background-color: var(--primary-dark);
}

.thick-3dad {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.focused_01e2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.stale-3065 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.text_huge_de98 {
  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 === */
.main_under_6733 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.basic-d501 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.basic-d501 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.outer_eb4d {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.left_bde3 {
  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;
}

.huge-a699 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.notification_71c9 {
  list-style: none;
  counter-reset: rank-counter;
}

.notification_71c9 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.notification_71c9 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;
}

.overlay-7569 {
  list-style: none;
}

.overlay-7569 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.detail-action-51ef {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.box-5c14 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.box-5c14 .thick-015b {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.box-5c14 .tag_deff {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.active_01fc {
  margin-top: 3rem;
}

.fast-fa6b {
  width: 100%;
}

.border-gas-9ee4 {
  background-color: #fef3c7;
}

.button-bronze-8014 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.old-face {
  margin: 3rem 0;
}

.sidebar-c449 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.table_a1ff {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.table_a1ff:hover {
  box-shadow: var(--shadow-lg);
}

.table_a1ff.panel_1994 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.input-brown-4a0a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.status_8e57 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.status_8e57 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.prev_d461 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.table_a1ff blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.progress_fd9b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pro-1cb2 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.action-ad3b {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.top_9ee4 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.notice-easy-647a {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.logo_in_f739 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.gold-9a6a {
  max-width: 900px;
  margin: 0 auto;
}

.notification_d735 {
  margin: 2rem 0;
}

.notice-2def {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.notice-2def summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.notice-2def summary::-webkit-details-marker {
  display: none;
}

.notice-2def summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.mini-ad36 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.notice-2def[open] .mini-ad36 {
  transform: rotate(45deg);
}

.message-left-c006 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.message-left-c006 p:last-child {
  margin-bottom: 0;
}

.video-orange-b647 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.inner_133e {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.pro-bf7f {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.pro-bf7f p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.pro-bf7f .hovered-8922 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.breadcrumb-39dc {
  max-width: 900px;
  margin: 0 auto;
}

.left-93a3 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.accent_cold_e934 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.accent_cold_e934.fn-success-4a8d {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.feature_dim_c1d9 {
  font-size: 3rem;
  line-height: 1;
}

.badge-static-38fc h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.popup_8e99 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.wide-957e,
.accordion-short-e037 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.wide-957e h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.accordion-short-e037 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.description_center_1e11,
.layout-cf5c {
  margin: 1.5rem 0;
}

.description_center_1e11 li,
.layout-cf5c li {
  margin-bottom: 1rem;
}

.section_solid_d50a {
  margin: 3rem 0;
}

.dropdown_down_b7a8 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.dropdown_down_b7a8 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.dropdown_down_b7a8 ol {
  margin: 1rem 0;
}

.dropdown_down_b7a8 li {
  margin-bottom: 0.75rem;
}

.main-5b95 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.form-solid-f948 {
  margin: 2rem 0;
}

.backdrop-outer-8f95 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.last_a7be {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.border-3720 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.top-e783 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.narrow_02aa {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.summary_paper_a969 {
  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;
}

.summary_paper_a969 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.fast_221d {
  flex: 1;
}

.fast_221d h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.left-05a6 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.description_6607 p {
  margin-bottom: 1rem;
}

.preview-e802 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.progress-right-27d6 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.detail-2a26 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.detail-2a26 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.element_inner_416a h3 {
  margin-bottom: 1.5rem;
}

.layout-basic-dd91 {
  display: grid;
  gap: 2rem;
}

.label_down_daad {
  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_down_daad img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.label_down_daad h4 {
  margin: 0 0 0.25rem;
}

.label_down_daad p {
  margin: 0;
  font-size: 0.9375rem;
}

.notification_af57 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.top_4c88 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.top_4c88 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.top_4c88 ul {
  margin: 1.5rem 0;
}

.top_4c88 li {
  margin-bottom: 0.75rem;
}

.frame_small_bd6c {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.full_f212 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.item_iron_a46a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.action-7d4a h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.action-7d4a p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.label_3040 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.label_3040 a {
  color: rgba(255, 255, 255, 0.8);
}

.main-97a1 {
  list-style: none;
}

.main-97a1 li {
  margin-bottom: 0.75rem;
}

.main-97a1 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.main-97a1 a:hover {
  color: white;
}

.info_24c2 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.stale-93c2 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.breadcrumb-bf89 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.thumbnail-solid-d960 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.warm-3919 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .narrow_5c3d {
    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;
  }

  .notification_copper_d072 {
    font-size: 1.5rem !important;
  }

  .picture-slow-42d7 {
    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 */
  .hard_3c8f,
  .card-under-fc20,
  .logo_basic_b30b,
  .under_c10d,
  .input-brown-4a0a,
  .table_a1ff,
  .message-left-c006,
  .lite-b237,
  .menu-north-9fcb,
  .inner-8650 {
    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 */
  .layout-outer-8303 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .backdrop_d548 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .slider-fluid-ed8a {
    flex-shrink: 0;
  }

  .fast_221d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .box-glass-22ff,
  .badge_545e {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .badge_545e {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .warm-6fba {
    display: none;
  }

  /* Show mobile actions */
  .hidden-4a31 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .hard_2da9 {
    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;
  }

  .hard_2da9 svg {
    flex-shrink: 0;
  }

  .hard_2da9 .mini_9cdb {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .hard_2da9 .filter_1ac9 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .brown_f666 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .hot-9ffd {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .hard_2da9:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .wide_c4a0 {
    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;
  }

  .wide_c4a0.fn-active-4a8d {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .wide_c4a0 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .wide_c4a0 li:last-child {
    border-bottom: none;
  }

  .wide_c4a0 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .summary_inner_5142 {
    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;
  }

  .summary_inner_5142 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .summary_inner_5142 li:last-child {
    border-bottom: none;
  }

  .summary_inner_5142 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .list-ec78 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .sidebar-1cae {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .wrapper_87fd,
  .media-south-08cd {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .wrapper_87fd {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .media-south-08cd {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .summary_inner_5142.fn-active-4a8d {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .content_lite_1bf4 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .mask-655e {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .pattern-a281 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .up_1203 {
    margin-top: 0;
  }

  /* Hero section */
  .up_1203 {
    padding: 2rem 0 1.5rem;
  }

  .picture-slow-42d7 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .menu-north-9fcb {
    font-size: 1rem;
  }

  /* Hero brand image */
  .feature-e2b2 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .thumbnail_c87c {
    max-width: 100%;
    border-radius: 8px;
  }

  .progress_02f8 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .gold_ed5a {
    padding: 1rem;
  }

  .complex-12cc {
    font-size: 1.5rem;
  }

  .shadow-d990 {
    font-size: 0.75rem;
  }

  .lite-b237 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .heading_pro_f9e1 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .heading_pro_f9e1 .hovered-8922 {
    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 */
  .center-8719 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .small_cd9c {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .surface-48b4 {
    margin-bottom: 1rem;
  }

  /* Author */
  .button-83a1 {
    flex-direction: column;
  }

  .summary_paper_a969 {
    flex-direction: column;
  }

  /* Quotes */
  .input-brown-4a0a {
    flex-direction: column;
  }

  /* Pros/Cons */
  .popup_8e99 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .top-e783 {
    flex-direction: column;
  }

  .top-e783 .hovered-8922 {
    width: 100%;
  }

  /* Version comparison */
  .action_120c {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .main_under_6733 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .item_iron_a46a {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .breadcrumb-bf89 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .nav_ba4c,
  .blue-70de,
  .rough-b84e,
  .fast-fa6b,
  .complex-c612,
  .title-0fc4 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav_ba4c table,
  .blue-70de table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .chip_a9aa {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .narrow_5c3d {
    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;
  }

  .notification_copper_d072 {
    font-size: 1.25rem !important;
  }

  .picture-slow-42d7 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .mask-655e {
    position: fixed;
  }

  .pattern-a281 {
    padding: 0.625rem 0;
  }

  .module-dda5 img {
    height: 26px;
  }

  .summary_inner_5142 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .wide_c4a0 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .hard_2da9 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .hard_2da9 svg {
    width: 18px;
    height: 18px;
  }

  .hard_2da9 .mini_9cdb {
    font-size: 0.7rem;
  }

  .hard_2da9 .filter_1ac9 {
    font-size: 0.65rem;
  }

  .wrapper_87fd,
  .media-south-08cd {
    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, .narrow_5c3d, .cool-6e96, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .feature-e2b2 {
    padding: 1rem;
  }

  .progress_02f8 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .gold_ed5a {
    padding: 0.875rem;
  }

  .complex-12cc {
    font-size: 1.25rem;
  }

  .heading_pro_f9e1 .hovered-8922 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .picture-slow-42d7 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .hovered-8922 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .thick-3dad {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .small_cd9c {
    padding: 1rem;
  }

  .surface-48b4 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .hard_3c8f,
  .north_d0db,
  .dropdown_1fcd,
  .shade-d173 {
    padding: 1rem;
  }
}

@media print {
  .mask-655e,
  .nav-brown-92ea,
  .content_lite_1bf4,
  .hovered-8922,
  .full_f212 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .narrow_5c3d {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.text_df5d {
  margin-bottom: 3rem;
  text-align: center;
}

.notification_copper_d072 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.form-outer-c4bd {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.in-d395,
.upper-5a08 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.block_2902 {
  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;
}

.block_2902:hover {
  transform: translateY(-5px);
}

.block_2902 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.block_2902 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.cool_32f2 {
  margin: 3rem 0;
}

.container-slow-12d9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.green_2f1b {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.green_2f1b:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.gas-6e58 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.secondary_basic_28de {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.alert_pressed_cdb8 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.label_middle_db68 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.tag-c95c {
  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;
}

.tag-c95c:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.tag-c95c.search-dec5 {
  border-left: 4px solid var(--primary-color);
}

.paper-c032 {
  flex-shrink: 0;
}

.paper-c032 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.dropdown-bottom-b3f7 {
  flex: 1;
}

.dropdown-bottom-b3f7 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.panel-warm-1852 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.menu_glass_b50d,
.dynamic-e3d8,
.filter-last-c3e1 {
  margin-bottom: 1.5rem;
}

.menu_glass_b50d h4,
.dynamic-e3d8 h4,
.filter-last-c3e1 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu_glass_b50d ul,
.dynamic-e3d8 ul,
.filter-last-c3e1 ul {
  list-style: none;
  padding: 0;
}

.menu_glass_b50d li,
.dynamic-e3d8 li,
.filter-last-c3e1 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.menu_glass_b50d li:before,
.dynamic-e3d8 li:before,
.filter-last-c3e1 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.feature_9195 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.feature_9195 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;
}

.feature_9195 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.carousel-f3d2 { margin: 2rem 0; }
.copper_c65b { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.copper_c65b h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.chip_red_1d9a p { margin-bottom: 1rem; line-height: 1.7; }
.chip_red_1d9a strong { color: var(--text-primary); }
.chip_red_1d9a ul { list-style: none; padding-left: 0; }
.chip_red_1d9a ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.chip_red_1d9a ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.button_87e2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.progress-bronze-ff09 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.progress-bronze-ff09:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.smooth_9e77 { font-size: 3rem; margin-bottom: 1rem; }
.progress-bronze-ff09 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.progress-bronze-ff09 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.border_next_7dde { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.border_next_7dde span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.orange-8a7b { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.gallery-south-1abc { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.liquid-0105 { text-align: center; }
.slider-a558 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.form_motion_e826 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.label_stale_6b82 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.alert-61ea { margin: 2rem 0; }
.gradient-ed3b { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.gradient-ed3b h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.gradient-ed3b p, .gradient-ed3b ul { line-height: 1.7; }
.gradient-ed3b ul { list-style: none; padding-left: 0; }
.gradient-ed3b ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.gradient-ed3b ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.layout_637c { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.component_7bdc { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.background-lower-85bf { text-align: center; }
.huge-baf2 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.description-d87a { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.form_e6df { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.breadcrumb-medium-c478 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.carousel-bottom-a9f6 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.carousel-bottom-a9f6:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.carousel-bottom-a9f6 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.carousel-bottom-a9f6 p, .carousel-bottom-a9f6 ul { line-height: 1.7; }
.carousel-bottom-a9f6 ul { list-style: none; padding-left: 0; }
.carousel-bottom-a9f6 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.carousel-bottom-a9f6 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: edf5 */
.widget-item-g2 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.1;
}
