/* ============================================
   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 */
.motion_7168 p,
.fast_a5a8,
.outline-b999,
.box_3c0e,
.summary_wide_3465,
.silver-b29a,
.table-d2d6,
.picture_gold_baa1 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.active-full-195d {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.active-full-195d > *,
.tag-3daf,
.motion_7168,
.dropdown-0d26 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .active-full-195d {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .active-full-195d {
    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 === */
.dark_057c {
  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 */
.dark_057c.component_wood_f414 {
  box-shadow: var(--shadow-md);
}

.right_87ee {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.carousel-662b img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.gold-9d72 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.popup-green-ba5b {
  display: none;
}

/* Hide mobile actions on desktop */
.tooltip_inner_d85a {
  display: none;
}

.feature_bright_b38b a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.feature_bright_b38b a:hover,
.feature_bright_b38b a.fn-active-88e2 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.highlight-under-af0e {
  margin-left: 1rem;
}

.carousel_wide_c1eb {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.tertiary_upper_d96e,
.basic-901b {
  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;
}

.tertiary_upper_d96e {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.tertiary_upper_d96e:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a8a 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transform: translateY(-1px);
  text-decoration: none;
}

.basic-901b {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.basic-901b: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;
}

.tertiary_upper_d96e svg,
.basic-901b svg {
  flex-shrink: 0;
}

.wrapper_cbc0 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.notice_gold_3b85 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.notice_gold_3b85::before,
.notice_gold_3b85::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.notice_gold_3b85::before {
  top: -7px;
}

.notice_gold_3b85::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.widget-blue-9345 {
  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 === */
.photo-4e9e {
  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);
}

.input-dark-4041 {
  margin: 0 0 2rem;
  text-align: center;
}

.modal-1082 {
  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;
}

.modal-1082:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.dropdown-ccd7 {
  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);
}

.dropdown-ccd7 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.gradient-short-3e29 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.nav_75e3 {
  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;
}

.nav_75e3:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.button_5dee {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.notice_de20 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.banner-71d1 {
  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);
}

.banner-71d1 .hero-1291 {
  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;
}

.banner-71d1 .hero-1291 svg {
  flex-shrink: 0;
}

.banner-71d1 .narrow-e069 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.banner-71d1 .narrow-e069: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);
}

.banner-71d1 .overlay-f392 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.banner-71d1 .overlay-f392: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) {
  .photo-4e9e {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .modal-1082 {
    max-width: 100%;
  }

  .gradient-short-3e29 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .nav_75e3 {
    padding: 1rem;
  }

  .button_5dee {
    font-size: 1.5rem;
  }

  .notice_de20 {
    font-size: 0.75rem;
  }

  .dropdown-ccd7 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .banner-71d1 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .banner-71d1 .hero-1291 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .gradient-short-3e29 {
    grid-template-columns: 1fr;
  }
}

.surface-d440 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.smooth-645d {
  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 === */
.nav_east_e317 {
  margin-bottom: 2.5rem;
}

.card_gold_0848 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.surface-d440 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.avatar_885d {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.black_c5cd {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.main-plasma-fcef {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.disabled-paper-e940 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.pattern_next_17c0 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.tall_d0ec {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.huge_3d88 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.huge_3d88 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.sidebar_b5e7 {
  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);
}

.icon_f444 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.alert-blue-b360 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tooltip_purple_0f1a {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.last-95b4 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.brown-24cd {
  display: grid;
  gap: 1rem;
}

.video_f4b2 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.active-49e7 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.progress-e9f9 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.card_e99f {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.widget-545e {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.column-upper-dcf3 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.column-upper-dcf3 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.fast_a5a8 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.middle_168b {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.content_c86b {
  display: grid;
  gap: 2rem;
}

.old-9768 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.black_c5cd {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.avatar_885d {
  flex: 1;
}

.disabled-paper-e940 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.disabled-paper-e940 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.slow_c57a {
  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;
}

.pattern_next_17c0 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.progress-full-957e {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.progress-full-957e span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.slow_77e0 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.slow_77e0 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.active-8a80 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.active-8a80 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.active-8a80 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.active-8a80 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.feature-fresh-0b06 {
  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 === */
.photo-feab {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.gradient-3d6e {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.huge-3064 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.slow_40c4 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.slow_40c4 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.slow_40c4 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.slow_40c4 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;
}

.slow_40c4 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.slow_40c4 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.motion_7168 {
  padding: 3rem 0 5rem;
}

.dropdown-0d26 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.dropdown-0d26.badge_large_2a85 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.outline-b999 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.paragraph-a199 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.gradient-medium-b9fb {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.gradient-medium-b9fb h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.icon-101f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.list-bright-c79c {
  text-align: center;
}

.menu-9d0f {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.link-blue-7dc2 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.texture_2095 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.silver-b29a {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.box_3c0e {
  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;
}

.box_3c0e * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.box_3c0e:hover {
  box-shadow: var(--shadow-lg);
}

.box_3c0e.basic-3416 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.box_3c0e h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.box_3c0e ul {
  margin: 1rem 0;
}

.box_3c0e li {
  margin-bottom: 0.75rem;
}

.logo_b673 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.small-b185 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.small-b185 a {
  font-weight: 600;
}

/* === Data Tables === */
.first_8fc4 {
  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;
}

.first_8fc4 table {
  width: 100%;
  min-width: 600px;
}

.first_8fc4 thead {
  background-color: var(--primary-color);
  color: white;
}

.first_8fc4 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.first_8fc4 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.first_8fc4 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.first_8fc4 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.top_b890 {
  list-style: none;
  margin: 1.5rem 0;
}

.top_b890 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.top_b890 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.green_eba0::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-88e2::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 === */
.header-dim-77a6 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.heading-plasma-f565 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.heading-plasma-f565 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.heading-plasma-f565 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.heading-plasma-f565 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.header-dim-77a6 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.table-d2d6 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.table-d2d6::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.card_selected_3f0b {
  position: relative;
  margin-bottom: 3rem;
}

.tooltip_large_dda4 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.tooltip_large_dda4 .accordion-medium-6987 {
  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;
}

.fixed_f0c5 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.fixed_f0c5 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.fixed_f0c5 ul {
  margin: 1rem 0;
}

.fixed_f0c5 li {
  margin-bottom: 0.75rem;
}

.panel_bronze_bb9a {
  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 === */
.message_north_b2d2 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.message_north_b2d2 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.wood_6084 {
  list-style: none;
  margin: 1.5rem 0;
}

.wood_6084 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.wood_6084 a {
  font-weight: 600;
}

.small-e14b {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.picture_gold_baa1 {
  margin: 2.5rem 0;
}

.logo_bc9e {
  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;
}

.logo_bc9e:hover {
  box-shadow: var(--shadow-lg);
}

.logo_bc9e.wood-aade {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.orange_eb27 {
  flex-shrink: 0;
}

.orange_eb27 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);
}

.info-wood-f1d1 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.content-narrow-8746,
.text_e8e5,
.dim_5ecf {
  width: 100%;
  margin: 1.5rem 0;
}

.column_c682 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.column_c682 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.menu-hard-b717 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.menu-hard-b717 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.medium_b37b {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.medium_b37b strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.filter-32f7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.tooltip_4db7 {
  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;
}

.tooltip_4db7:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.tooltip_4db7.column_1d0f {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.tooltip_4db7 .banner-c803 {
  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;
}

.tooltip_4db7 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.wide_2930 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.list_glass_d0cc {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.list_glass_d0cc label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.modal_hovered_72f3 {
  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 === */
.hero-1291 {
  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;
}

.narrow-e069 {
  background-color: var(--primary-color);
  color: white;
}

.narrow-e069:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.overlay-f392 {
  background-color: var(--text-secondary);
  color: white;
}

.overlay-f392:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.plasma-d859 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.plasma-d859:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.complex_eb9b {
  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;
}

.complex_eb9b:hover {
  background-color: var(--primary-dark);
}

.focused_6df0 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.sidebar-new-6320 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.accent_west_885d {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.title-red-ec3b {
  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 === */
.message_paper_de62 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.highlight-166a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.highlight-166a h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.notice-8a8b {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.description-tiny-f703 {
  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;
}

.column-42ea {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.north-a217 {
  list-style: none;
  counter-reset: rank-counter;
}

.north-a217 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.north-a217 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;
}

.gradient-ab3e {
  list-style: none;
}

.gradient-ab3e li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.bright-4ecd {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.title_3b26 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.title_3b26 .mask_gas_38f6 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.title_3b26 .popup_old_e0c1 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.large_4132 {
  margin-top: 3rem;
}

.short-9639 {
  width: 100%;
}

.notice_motion_9f43 {
  background-color: #fef3c7;
}

.wrapper_adae {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.lower-e4ab {
  margin: 3rem 0;
}

.pattern_3d14 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.container_middle_ec0d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.container_middle_ec0d:hover {
  box-shadow: var(--shadow-lg);
}

.container_middle_ec0d.tiny_8085 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.item_large_68d0 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.fluid_b860 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.fluid_b860 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.menu-lower-c67a {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.container_middle_ec0d blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.avatar_gas_d4da {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.outline-c81f {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.outline_f204 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.gradient-47a9 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.table-purple-6c64 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.center-be2d {
  margin-top: 1rem;
}

/* === FAQ Section === */
.bright-2624 {
  max-width: 900px;
  margin: 0 auto;
}

.blue-641e {
  margin: 2rem 0;
}

.item_upper_e017 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.item_upper_e017 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.item_upper_e017 summary::-webkit-details-marker {
  display: none;
}

.item_upper_e017 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.article_94b0 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.item_upper_e017[open] .article_94b0 {
  transform: rotate(45deg);
}

.item-f3cf {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.item-f3cf p:last-child {
  margin-bottom: 0;
}

.status_over_48cb {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.card-a713 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.widget_simple_4500 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.widget_simple_4500 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.widget_simple_4500 .hero-1291 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.mask_last_89bc {
  max-width: 900px;
  margin: 0 auto;
}

.tiny_ce65 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.tag_outer_d28f {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.tag_outer_d28f.fn-success-88e2 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.input_e476 {
  font-size: 3rem;
  line-height: 1;
}

.slider_stale_e587 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.selected_2076 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.message_bright_a4ac,
.logo-5ec1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.message_bright_a4ac h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.logo-5ec1 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.active-bbfa,
.wood-cfd2 {
  margin: 1.5rem 0;
}

.active-bbfa li,
.wood-cfd2 li {
  margin-bottom: 1rem;
}

.right-a9ed {
  margin: 3rem 0;
}

.shadow_motion_a4d5 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.shadow_motion_a4d5 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.shadow_motion_a4d5 ol {
  margin: 1rem 0;
}

.shadow_motion_a4d5 li {
  margin-bottom: 0.75rem;
}

.paragraph_f016 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.text-55b9 {
  margin: 2rem 0;
}

.avatar_medium_9c9a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.wide-591c {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.content-copper-2fb6 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.highlight_hot_c41f {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.smooth_8e51 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.alert_cool_ab96 {
  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;
}

.alert_cool_ab96 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.main-plasma-fcef {
  flex: 1;
}

.main-plasma-fcef h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.media-pink-8ac7 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.message_gold_6096 p {
  margin-bottom: 1rem;
}

.icon_814f {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.prev_cc09 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.old-4ff1 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.old-4ff1 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.copper_2563 h3 {
  margin-bottom: 1.5rem;
}

.popup-prev-a82d {
  display: grid;
  gap: 2rem;
}

.slow_3874 {
  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;
}

.slow_3874 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.slow_3874 h4 {
  margin: 0 0 0.25rem;
}

.slow_3874 p {
  margin: 0;
  font-size: 0.9375rem;
}

.active-wood-57b1 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.inner_6208 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.inner_6208 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.inner_6208 ul {
  margin: 1.5rem 0;
}

.inner_6208 li {
  margin-bottom: 0.75rem;
}

.table_3517 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.heading_west_0841 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.rough_e5e5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.picture-42de h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.picture-42de p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.backdrop_warm_560e {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.backdrop_warm_560e a {
  color: rgba(255, 255, 255, 0.8);
}

.summary-silver-eb7a {
  list-style: none;
}

.summary-silver-eb7a li {
  margin-bottom: 0.75rem;
}

.summary-silver-eb7a a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.summary-silver-eb7a a:hover {
  color: white;
}

.up_72af {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.picture_iron_5230 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.component_black_126b {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.primary_gold_a422 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.wood-4381 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .active-full-195d {
    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;
  }

  .dropdown_942e {
    font-size: 1.5rem !important;
  }

  .card_gold_0848 {
    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 */
  .box_3c0e,
  .summary_wide_3465,
  .fixed_f0c5,
  .info-wood-f1d1,
  .item_large_68d0,
  .container_middle_ec0d,
  .item-f3cf,
  .dropdown-ccd7,
  .fast_a5a8,
  .outline-b999 {
    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 */
  .surface-d440 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .avatar_885d {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .black_c5cd {
    flex-shrink: 0;
  }

  .main-plasma-fcef {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .disabled-paper-e940,
  .pattern_next_17c0 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .pattern_next_17c0 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .gold-9d72 {
    display: none;
  }

  /* Show mobile actions */
  .tooltip_inner_d85a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .row-inner-0f40 {
    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;
  }

  .row-inner-0f40 svg {
    flex-shrink: 0;
  }

  .row-inner-0f40 .primary-d05a {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .row-inner-0f40 .tertiary-5321 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .active_blue_ba68 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .section_66f3 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .row-inner-0f40:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .popup-green-ba5b {
    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;
  }

  .popup-green-ba5b.fn-active-88e2 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .popup-green-ba5b li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .popup-green-ba5b li:last-child {
    border-bottom: none;
  }

  .popup-green-ba5b a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .feature_bright_b38b {
    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;
  }

  .feature_bright_b38b li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .feature_bright_b38b li:last-child {
    border-bottom: none;
  }

  .feature_bright_b38b a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .highlight-under-af0e {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .carousel_wide_c1eb {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .tertiary_upper_d96e,
  .basic-901b {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .tertiary_upper_d96e {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .basic-901b {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .feature_bright_b38b.fn-active-88e2 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .wrapper_cbc0 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .dark_057c {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .right_87ee {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .widget-blue-9345 {
    margin-top: 0;
  }

  /* Hero section */
  .widget-blue-9345 {
    padding: 2rem 0 1.5rem;
  }

  .card_gold_0848 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .fast_a5a8 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .photo-4e9e {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .modal-1082 {
    max-width: 100%;
    border-radius: 8px;
  }

  .gradient-short-3e29 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .nav_75e3 {
    padding: 1rem;
  }

  .button_5dee {
    font-size: 1.5rem;
  }

  .notice_de20 {
    font-size: 0.75rem;
  }

  .dropdown-ccd7 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .banner-71d1 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .banner-71d1 .hero-1291 {
    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 */
  .huge-3064 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .logo_bc9e {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .orange_eb27 {
    margin-bottom: 1rem;
  }

  /* Author */
  .old-9768 {
    flex-direction: column;
  }

  .alert_cool_ab96 {
    flex-direction: column;
  }

  /* Quotes */
  .item_large_68d0 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .selected_2076 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .highlight_hot_c41f {
    flex-direction: column;
  }

  .highlight_hot_c41f .hero-1291 {
    width: 100%;
  }

  /* Version comparison */
  .filter-32f7 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .message_paper_de62 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .rough_e5e5 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .component_black_126b {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .first_8fc4,
  .text_e8e5,
  .disabled_fdf0,
  .short-9639,
  .content-narrow-8746,
  .dim_5ecf {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .first_8fc4 table,
  .text_e8e5 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .modal_hovered_72f3 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .active-full-195d {
    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;
  }

  .dropdown_942e {
    font-size: 1.25rem !important;
  }

  .card_gold_0848 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .dark_057c {
    position: fixed;
  }

  .right_87ee {
    padding: 0.625rem 0;
  }

  .carousel-662b img {
    height: 26px;
  }

  .feature_bright_b38b {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .popup-green-ba5b {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .row-inner-0f40 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .row-inner-0f40 svg {
    width: 18px;
    height: 18px;
  }

  .row-inner-0f40 .primary-d05a {
    font-size: 0.7rem;
  }

  .row-inner-0f40 .tertiary-5321 {
    font-size: 0.65rem;
  }

  .tertiary_upper_d96e,
  .basic-901b {
    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, .active-full-195d, .tag-3daf, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .photo-4e9e {
    padding: 1rem;
  }

  .gradient-short-3e29 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .nav_75e3 {
    padding: 0.875rem;
  }

  .button_5dee {
    font-size: 1.25rem;
  }

  .banner-71d1 .hero-1291 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .card_gold_0848 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .hero-1291 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .focused_6df0 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .logo_bc9e {
    padding: 1rem;
  }

  .orange_eb27 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .box_3c0e,
  .plasma_002c,
  .picture-086b,
  .logo_ac86 {
    padding: 1rem;
  }
}

@media print {
  .dark_057c,
  .photo-feab,
  .wrapper_cbc0,
  .hero-1291,
  .heading_west_0841 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .active-full-195d {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.down-22e1 {
  margin-bottom: 3rem;
  text-align: center;
}

.dropdown_942e {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hidden_down_7ff5 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.summary-7e95,
.box_4055 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.section_action_b611 {
  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;
}

.section_action_b611:hover {
  transform: translateY(-5px);
}

.section_action_b611 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.section_action_b611 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.south_39b7 {
  margin: 3rem 0;
}

.block-clean-5471 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.badge-55ed {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.badge-55ed:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.outline_aca6 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.selected_fcee {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.dynamic_c67f {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.badge_active_55f2 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.title-3e5f {
  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;
}

.title-3e5f:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.title-3e5f.border_c300 {
  border-left: 4px solid var(--primary-color);
}

.accordion_gas_52ce {
  flex-shrink: 0;
}

.accordion_gas_52ce svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.card_smooth_3fc3 {
  flex: 1;
}

.card_smooth_3fc3 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.footer_d4b2 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.avatar-3583,
.dark-998e,
.cool-5da1 {
  margin-bottom: 1.5rem;
}

.avatar-3583 h4,
.dark-998e h4,
.cool-5da1 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.avatar-3583 ul,
.dark-998e ul,
.cool-5da1 ul {
  list-style: none;
  padding: 0;
}

.avatar-3583 li,
.dark-998e li,
.cool-5da1 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.avatar-3583 li:before,
.dark-998e li:before,
.cool-5da1 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.texture_over_fa5e {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.texture_over_fa5e 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;
}

.texture_over_fa5e a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.block-orange-5085 { margin: 2rem 0; }
.summary_03cd { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.summary_03cd h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.input-b2e1 p { margin-bottom: 1rem; line-height: 1.7; }
.input-b2e1 strong { color: var(--text-primary); }
.input-b2e1 ul { list-style: none; padding-left: 0; }
.input-b2e1 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.input-b2e1 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.footer-static-fdec { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.simple_731a { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.simple_731a:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.bottom-f2bb { font-size: 3rem; margin-bottom: 1rem; }
.simple_731a h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.simple_731a p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.liquid-6b0f { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.liquid-6b0f span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.left-7dd8 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.cool-9cfd { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.disabled-west-b5b2 { text-align: center; }
.header_tiny_a3dc { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.under-f0ab { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.chip-69bc { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.aside_gas_c8ca { margin: 2rem 0; }
.label-stale-32e0 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.label-stale-32e0 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.label-stale-32e0 p, .label-stale-32e0 ul { line-height: 1.7; }
.label-stale-32e0 ul { list-style: none; padding-left: 0; }
.label-stale-32e0 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.label-stale-32e0 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.nav_tiny_04cf { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.button-focused-df59 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.pattern-3c6e { text-align: center; }
.full-da22 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.block-1173 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.texture-291a { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.icon-out-37fb { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.sidebar_glass_534a { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.sidebar_glass_534a:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.sidebar_glass_534a h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.sidebar_glass_534a p, .sidebar_glass_534a ul { line-height: 1.7; }
.sidebar_glass_534a ul { list-style: none; padding-left: 0; }
.sidebar_glass_534a ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.sidebar_glass_534a ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 7465 */
.phantom-card-o8 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.2;
}
