/* ============================================
   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 */
.detail-orange-1c78 p,
.content-71b6,
.shade-fresh-6896,
.paper-b6dc,
.backdrop-easy-9f7d,
.block_cdbc,
.block-thick-7473,
.shade_161c {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.tertiary-8b0e {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.tertiary-8b0e > *,
.component_6308,
.detail-orange-1c78,
.backdrop-down-8990 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .tertiary-8b0e {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .tertiary-8b0e {
    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 === */
.link-c7f1 {
  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 */
.link-c7f1.shadow_b847 {
  box-shadow: var(--shadow-md);
}

.primary_02ae {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.form-stale-7b57 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.medium_b4f8 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.stone_f63a {
  display: none;
}

/* Hide mobile actions on desktop */
.stone-bc97 {
  display: none;
}

.summary-pressed-0309 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.summary-pressed-0309 a:hover,
.summary-pressed-0309 a.fn-active-8326 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.narrow_14a6 {
  margin-left: 1rem;
}

.table-30d6 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.table-last-82c5,
.down_7f65 {
  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;
}

.table-last-82c5 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.table-last-82c5: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;
}

.down_7f65 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.down_7f65: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;
}

.table-last-82c5 svg,
.down_7f65 svg {
  flex-shrink: 0;
}

.tall_b72f {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.focus_3b56 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.focus_3b56::before,
.focus_3b56::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.focus_3b56::before {
  top: -7px;
}

.focus_3b56::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.basic-5534 {
  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 === */
.popup_c24a {
  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);
}

.main_e067 {
  margin: 0 0 2rem;
  text-align: center;
}

.over_fe8e {
  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;
}

.over_fe8e:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.text-wood-550b {
  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);
}

.text-wood-550b strong {
  color: var(--primary-color);
  font-weight: 700;
}

.feature_f33a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.label-1162 {
  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;
}

.label-1162:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.column_gold_92c9 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.static_c6c7 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.alert-39aa {
  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);
}

.alert-39aa .component_wood_19e6 {
  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;
}

.alert-39aa .component_wood_19e6 svg {
  flex-shrink: 0;
}

.alert-39aa .avatar_3374 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.alert-39aa .avatar_3374: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);
}

.alert-39aa .modal_249f {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.alert-39aa .modal_249f: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) {
  .popup_c24a {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .over_fe8e {
    max-width: 100%;
  }

  .feature_f33a {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .label-1162 {
    padding: 1rem;
  }

  .column_gold_92c9 {
    font-size: 1.5rem;
  }

  .static_c6c7 {
    font-size: 0.75rem;
  }

  .text-wood-550b {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .alert-39aa {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .alert-39aa .component_wood_19e6 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .feature_f33a {
    grid-template-columns: 1fr;
  }
}

.smooth_9563 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.component-cfe7 {
  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 === */
.row_3169 {
  margin-bottom: 2.5rem;
}

.mask-lower-6171 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.smooth_9563 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.main_2c41 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.paper-8c98 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.solid_a6c3 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pro-d082 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.tooltip-6983 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.short-def7 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.thumbnail-9ada {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.thumbnail-9ada svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.fast_42e4 {
  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);
}

.orange_f4cf {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.form_52da {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.shade-723c {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.list-new-78b2 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.slider_hot_f7d9 {
  display: grid;
  gap: 1rem;
}

.wood_db84 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.box-huge-a8b5 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.frame-warm-5efa {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.short_0d1d {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.paragraph-3c70 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.content_fluid_ca62 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.content_fluid_ca62 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.content-71b6 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.pink-7629 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.border_7cf5 {
  display: grid;
  gap: 2rem;
}

.hero-29e6 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.paper-8c98 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.main_2c41 {
  flex: 1;
}

.pro-d082 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.pro-d082 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.article_3801 {
  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;
}

.tooltip-6983 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.photo-e588 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.photo-e588 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.light_d87d {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.light_d87d a {
  font-size: 0.875rem;
  font-weight: 500;
}

.modal_dark_efff {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.modal_dark_efff strong {
  display: block;
  margin-bottom: 0.75rem;
}

.modal_dark_efff ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal_dark_efff li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.progress-2842 {
  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 === */
.accent-cd47 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.lite-155d {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.title-43d3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.hover_fd76 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.hover_fd76 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.hover_fd76 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.hover_fd76 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;
}

.hover_fd76 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.hover_fd76 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.detail-orange-1c78 {
  padding: 3rem 0 5rem;
}

.backdrop-down-8990 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.backdrop-down-8990.backdrop-top-6370 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.shade-fresh-6896 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.section-prev-023f {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.button_a83d {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.button_a83d h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.stale-865b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.dirty-2395 {
  text-align: center;
}

.liquid-bc74 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.gradient-ec7f {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.static-6a9a {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.block_cdbc {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.paper-b6dc {
  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;
}

.paper-b6dc * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.paper-b6dc:hover {
  box-shadow: var(--shadow-lg);
}

.paper-b6dc.module-a9c8 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.paper-b6dc h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.paper-b6dc ul {
  margin: 1rem 0;
}

.paper-b6dc li {
  margin-bottom: 0.75rem;
}

.mask_short_f411 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.description_dynamic_882c {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.description_dynamic_882c a {
  font-weight: 600;
}

/* === Data Tables === */
.old-fbe6 {
  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;
}

.old-fbe6 table {
  width: 100%;
  min-width: 600px;
}

.old-fbe6 thead {
  background-color: var(--primary-color);
  color: white;
}

.old-fbe6 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.old-fbe6 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.old-fbe6 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.old-fbe6 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.banner-fast-ca1e {
  list-style: none;
  margin: 1.5rem 0;
}

.banner-fast-ca1e li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.banner-fast-ca1e li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.lower-2929::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-8326::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 === */
.list-b878 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.card_next_9075 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.card_next_9075 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.card_next_9075 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.card_next_9075 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.list-b878 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.block-thick-7473 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.block-thick-7473::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.iron-550e {
  position: relative;
  margin-bottom: 3rem;
}

.active-c956 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.active-c956 .section_soft_bfe7 {
  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;
}

.liquid-e2c5 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.liquid-e2c5 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.liquid-e2c5 ul {
  margin: 1rem 0;
}

.liquid-e2c5 li {
  margin-bottom: 0.75rem;
}

.component_2c9b {
  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 === */
.avatar_b3e5 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.avatar_b3e5 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.layout_5713 {
  list-style: none;
  margin: 1.5rem 0;
}

.layout_5713 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.layout_5713 a {
  font-weight: 600;
}

.nav-5a3f {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.shade_161c {
  margin: 2.5rem 0;
}

.highlight_middle_8911 {
  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;
}

.highlight_middle_8911:hover {
  box-shadow: var(--shadow-lg);
}

.highlight_middle_8911.item-c927 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.popup-33cb {
  flex-shrink: 0;
}

.popup-33cb 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);
}

.title_e091 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.mask_white_1c4c,
.dirty_3ff0,
.shade-basic-0002 {
  width: 100%;
  margin: 1.5rem 0;
}

.grid-soft-f5b6 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.grid-soft-f5b6 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.outline_1e53 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.outline_1e53 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.item_354a {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.item_354a strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.column-top-9bb9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.container-hard-aadd {
  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;
}

.container-hard-aadd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.container-hard-aadd.huge-aca9 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.container-hard-aadd .outer-f674 {
  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;
}

.container-hard-aadd h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.thumbnail-full-5471 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.highlight-left-689d {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.highlight-left-689d label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.stone-b2da {
  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 === */
.component_wood_19e6 {
  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;
}

.avatar_3374 {
  background-color: var(--primary-color);
  color: white;
}

.avatar_3374:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.modal_249f {
  background-color: var(--text-secondary);
  color: white;
}

.modal_249f:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.header-short-645b {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.header-short-645b:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.tabs-action-a9ee {
  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;
}

.tabs-action-a9ee:hover {
  background-color: var(--primary-dark);
}

.tooltip_5308 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.west_c511 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.search-short-36cd {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.caption-6b25 {
  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 === */
.section_bottom_f5b1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.cool-6a86 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.cool-6a86 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.title_prev_e39c {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.new-9406 {
  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;
}

.small-78ec {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.footer-tiny-46fa {
  list-style: none;
  counter-reset: rank-counter;
}

.footer-tiny-46fa li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.footer-tiny-46fa 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;
}

.picture_white_f425 {
  list-style: none;
}

.picture_white_f425 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.notice_last_538c {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.active_bright_bb56 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.active_bright_bb56 .gradient-9070 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.active_bright_bb56 .clean-9416 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.notification_pressed_2514 {
  margin-top: 3rem;
}

.modal-a232 {
  width: 100%;
}

.box-bright-cf4f {
  background-color: #fef3c7;
}

.solid-2e27 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.focus_22ad {
  margin: 3rem 0;
}

.list_blue_7df9 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.content-glass-9c60 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.content-glass-9c60:hover {
  box-shadow: var(--shadow-lg);
}

.content-glass-9c60.simple-1d7f {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.tabs-7c6a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.hot_ab21 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.hot_ab21 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.title-26b3 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.content-glass-9c60 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.disabled-lower-0a2e {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.smooth_64cb {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.warm-a26e {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.tag_in_0215 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.box_warm_4ad7 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.dropdown_155d {
  margin-top: 1rem;
}

/* === FAQ Section === */
.paper-06e6 {
  max-width: 900px;
  margin: 0 auto;
}

.action_1d18 {
  margin: 2rem 0;
}

.iron-276a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.iron-276a summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.iron-276a summary::-webkit-details-marker {
  display: none;
}

.iron-276a summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.silver_364e {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.iron-276a[open] .silver_364e {
  transform: rotate(45deg);
}

.up-3e21 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.up-3e21 p:last-child {
  margin-bottom: 0;
}

.pressed_76b5 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.paragraph-under-dacd {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.progress_e83b {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.progress_e83b p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.progress_e83b .component_wood_19e6 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.center-5802 {
  max-width: 900px;
  margin: 0 auto;
}

.huge-aa9f {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.component-2a5d {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.component-2a5d.fn-success-8326 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.list-yellow-83d9 {
  font-size: 3rem;
  line-height: 1;
}

.up-4e22 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.active-last-4061 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.silver_8ce2,
.media-4379 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.silver_8ce2 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.media-4379 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.wood_c990,
.icon-4ba9 {
  margin: 1.5rem 0;
}

.wood_c990 li,
.icon-4ba9 li {
  margin-bottom: 1rem;
}

.under_0ebf {
  margin: 3rem 0;
}

.secondary_eaa0 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.secondary_eaa0 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.secondary_eaa0 ol {
  margin: 1rem 0;
}

.secondary_eaa0 li {
  margin-bottom: 0.75rem;
}

.active_a1ae {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.black-055c {
  margin: 2rem 0;
}

.full-3d92 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.gold-3775 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.module-action-e200 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.last-038a {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.card-tall-8d0a {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.accent_d1fa {
  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;
}

.accent_d1fa img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.solid_a6c3 {
  flex: 1;
}

.solid_a6c3 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.liquid-3776 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.left-1764 p {
  margin-bottom: 1rem;
}

.accent-right-5541 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.row_d5cc {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.footer_hovered_8b97 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.footer_hovered_8b97 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.overlay_fresh_c649 h3 {
  margin-bottom: 1.5rem;
}

.pink_5d33 {
  display: grid;
  gap: 2rem;
}

.gas-2813 {
  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;
}

.gas-2813 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.gas-2813 h4 {
  margin: 0 0 0.25rem;
}

.gas-2813 p {
  margin: 0;
  font-size: 0.9375rem;
}

.caption-b7a5 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.element-medium-0f70 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.element-medium-0f70 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.element-medium-0f70 ul {
  margin: 1.5rem 0;
}

.element-medium-0f70 li {
  margin-bottom: 0.75rem;
}

.message_8f6a {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.next_0285 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.row_first_036f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.chip-old-4276 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.chip-old-4276 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.purple-d76e {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.purple-d76e a {
  color: rgba(255, 255, 255, 0.8);
}

.pro-1d73 {
  list-style: none;
}

.pro-1d73 li {
  margin-bottom: 0.75rem;
}

.pro-1d73 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.pro-1d73 a:hover {
  color: white;
}

.tag_9acf {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.hero_3597 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.detail_paper_1085 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.label-3e4d {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.out-5456 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .tertiary-8b0e {
    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;
  }

  .disabled-c2a2 {
    font-size: 1.5rem !important;
  }

  .mask-lower-6171 {
    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 */
  .paper-b6dc,
  .backdrop-easy-9f7d,
  .liquid-e2c5,
  .title_e091,
  .tabs-7c6a,
  .content-glass-9c60,
  .up-3e21,
  .text-wood-550b,
  .content-71b6,
  .shade-fresh-6896 {
    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 */
  .smooth_9563 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .main_2c41 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .paper-8c98 {
    flex-shrink: 0;
  }

  .solid_a6c3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .pro-d082,
  .tooltip-6983 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .tooltip-6983 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .medium_b4f8 {
    display: none;
  }

  /* Show mobile actions */
  .stone-bc97 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .medium_aed9 {
    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;
  }

  .medium_aed9 svg {
    flex-shrink: 0;
  }

  .medium_aed9 .paragraph_16e0 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .medium_aed9 .header_68ff {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .summary-narrow-6ece {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .hover-afa0 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .medium_aed9:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .stone_f63a {
    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;
  }

  .stone_f63a.fn-active-8326 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .stone_f63a li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .stone_f63a li:last-child {
    border-bottom: none;
  }

  .stone_f63a a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .summary-pressed-0309 {
    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-pressed-0309 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .summary-pressed-0309 li:last-child {
    border-bottom: none;
  }

  .summary-pressed-0309 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .narrow_14a6 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .table-30d6 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .table-last-82c5,
  .down_7f65 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .table-last-82c5 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .down_7f65 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .summary-pressed-0309.fn-active-8326 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .tall_b72f {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .link-c7f1 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .primary_02ae {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .basic-5534 {
    margin-top: 0;
  }

  /* Hero section */
  .basic-5534 {
    padding: 2rem 0 1.5rem;
  }

  .mask-lower-6171 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .content-71b6 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .popup_c24a {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .over_fe8e {
    max-width: 100%;
    border-radius: 8px;
  }

  .feature_f33a {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .label-1162 {
    padding: 1rem;
  }

  .column_gold_92c9 {
    font-size: 1.5rem;
  }

  .static_c6c7 {
    font-size: 0.75rem;
  }

  .text-wood-550b {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .alert-39aa {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .alert-39aa .component_wood_19e6 {
    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 */
  .title-43d3 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .highlight_middle_8911 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .popup-33cb {
    margin-bottom: 1rem;
  }

  /* Author */
  .hero-29e6 {
    flex-direction: column;
  }

  .accent_d1fa {
    flex-direction: column;
  }

  /* Quotes */
  .tabs-7c6a {
    flex-direction: column;
  }

  /* Pros/Cons */
  .active-last-4061 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .last-038a {
    flex-direction: column;
  }

  .last-038a .component_wood_19e6 {
    width: 100%;
  }

  /* Version comparison */
  .column-top-9bb9 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .section_bottom_f5b1 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .row_first_036f {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .detail_paper_1085 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .old-fbe6,
  .dirty_3ff0,
  .texture-lower-e458,
  .modal-a232,
  .mask_white_1c4c,
  .shade-basic-0002 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .old-fbe6 table,
  .dirty_3ff0 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .stone-b2da {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .tertiary-8b0e {
    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;
  }

  .disabled-c2a2 {
    font-size: 1.25rem !important;
  }

  .mask-lower-6171 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .link-c7f1 {
    position: fixed;
  }

  .primary_02ae {
    padding: 0.625rem 0;
  }

  .form-stale-7b57 img {
    height: 26px;
  }

  .summary-pressed-0309 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .stone_f63a {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .medium_aed9 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .medium_aed9 svg {
    width: 18px;
    height: 18px;
  }

  .medium_aed9 .paragraph_16e0 {
    font-size: 0.7rem;
  }

  .medium_aed9 .header_68ff {
    font-size: 0.65rem;
  }

  .table-last-82c5,
  .down_7f65 {
    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, .tertiary-8b0e, .component_6308, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .popup_c24a {
    padding: 1rem;
  }

  .feature_f33a {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .label-1162 {
    padding: 0.875rem;
  }

  .column_gold_92c9 {
    font-size: 1.25rem;
  }

  .alert-39aa .component_wood_19e6 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .mask-lower-6171 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .component_wood_19e6 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .tooltip_5308 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .highlight_middle_8911 {
    padding: 1rem;
  }

  .popup-33cb span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .paper-b6dc,
  .bronze-cfac,
  .background-1d88,
  .slow_d273 {
    padding: 1rem;
  }
}

@media print {
  .link-c7f1,
  .accent-cd47,
  .tall_b72f,
  .component_wood_19e6,
  .next_0285 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .tertiary-8b0e {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.button-full-7e08 {
  margin-bottom: 3rem;
  text-align: center;
}

.disabled-c2a2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.badge-basic-8ee6 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.block_6708,
.widget-bottom-cbb4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.tabs-lite-454c {
  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;
}

.tabs-lite-454c:hover {
  transform: translateY(-5px);
}

.tabs-lite-454c strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.tabs-lite-454c span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.narrow-7dcd {
  margin: 3rem 0;
}

.aside-a25c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.picture-left-d2f1 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.picture-left-d2f1:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.label-db51 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hard-0e8c {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.backdrop_pink_e52e {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.picture-simple-dc23 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.form-next-5c2e {
  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;
}

.form-next-5c2e:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.form-next-5c2e.list-b288 {
  border-left: 4px solid var(--primary-color);
}

.pagination_thick_fe56 {
  flex-shrink: 0;
}

.pagination_thick_fe56 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.out-5d92 {
  flex: 1;
}

.out-5d92 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.paper-98ef {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.chip_8611,
.video_4523,
.card-5747 {
  margin-bottom: 1.5rem;
}

.chip_8611 h4,
.video_4523 h4,
.card-5747 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chip_8611 ul,
.video_4523 ul,
.card-5747 ul {
  list-style: none;
  padding: 0;
}

.chip_8611 li,
.video_4523 li,
.card-5747 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.chip_8611 li:before,
.video_4523 li:before,
.card-5747 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.badge-3a9f {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.badge-3a9f 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;
}

.badge-3a9f a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.search_yellow_b965 { margin: 2rem 0; }
.header_iron_002d { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.header_iron_002d h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.center_9503 p { margin-bottom: 1rem; line-height: 1.7; }
.center_9503 strong { color: var(--text-primary); }
.center_9503 ul { list-style: none; padding-left: 0; }
.center_9503 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.center_9503 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.outer_e829 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.modal_807a { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.modal_807a:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.slider-61fd { font-size: 3rem; margin-bottom: 1rem; }
.modal_807a h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.modal_807a p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.light_d998 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.light_d998 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.container_small_7a25 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.picture-solid-74e4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.icon_491d { text-align: center; }
.center_f280 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.widget-warm-6829 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.pagination_2417 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.disabled-0d36 { margin: 2rem 0; }
.button-next-5fec { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.button-next-5fec h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.button-next-5fec p, .button-next-5fec ul { line-height: 1.7; }
.button-next-5fec ul { list-style: none; padding-left: 0; }
.button-next-5fec ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.button-next-5fec ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.pro-e8ec { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.input_steel_55ac { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.focus_3607 { text-align: center; }
.lower_ca1d { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.breadcrumb-right-3862 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.easy-ea7c { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.block-b52a { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.text-wide-7ff4 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.text-wide-7ff4:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.text-wide-7ff4 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.text-wide-7ff4 p, .text-wide-7ff4 ul { line-height: 1.7; }
.text-wide-7ff4 ul { list-style: none; padding-left: 0; }
.text-wide-7ff4 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.text-wide-7ff4 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 63c9 */
.phantom-card-p6 {
  padding: 0.1rem;
  font-size: 14px;
  line-height: 1.2;
}
