/* ============================================
   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 */
.pro_1daa p,
.static_fe10,
.secondary_cd49,
.motion-271f,
.texture_medium_67de,
.link-motion-b10e,
.brown_688d,
.notice-easy-8e50 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.secondary_cea2 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.secondary_cea2 > *,
.aside_iron_ad2a,
.pro_1daa,
.texture_purple_a11b {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .secondary_cea2 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .secondary_cea2 {
    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 === */
.background_soft_5b8d {
  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 */
.background_soft_5b8d.image-clean-2bad {
  box-shadow: var(--shadow-md);
}

.simple-770d {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.heading-7a43 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.clean_db86 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.lite-73f6 {
  display: none;
}

/* Hide mobile actions on desktop */
.active-121e {
  display: none;
}

.current-47dd a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.current-47dd a:hover,
.current-47dd a.fn-active-c7d1 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.filter-static-0c17 {
  margin-left: 1rem;
}

.component_new_2005 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.active_211d,
.paragraph_dim_14a7 {
  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;
}

.active_211d {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.active_211d: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;
}

.paragraph_dim_14a7 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.paragraph_dim_14a7: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;
}

.active_211d svg,
.paragraph_dim_14a7 svg {
  flex-shrink: 0;
}

.focused-d0df {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.lower_4548 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.lower_4548::before,
.lower_4548::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.lower_4548::before {
  top: -7px;
}

.lower_4548::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.over-9301 {
  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 === */
.fixed-6db5 {
  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);
}

.background-4947 {
  margin: 0 0 2rem;
  text-align: center;
}

.table-7a1e {
  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;
}

.table-7a1e:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.picture-e867 {
  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);
}

.picture-e867 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.picture-center-641d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.progress_2018 {
  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;
}

.progress_2018:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.panel_purple_abca {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.shade_4d31 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.header_simple_020e {
  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);
}

.header_simple_020e .easy-14bd {
  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;
}

.header_simple_020e .easy-14bd svg {
  flex-shrink: 0;
}

.header_simple_020e .status-light-8098 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.header_simple_020e .status-light-8098: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);
}

.header_simple_020e .tertiary_cbe4 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.header_simple_020e .tertiary_cbe4: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) {
  .fixed-6db5 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .table-7a1e {
    max-width: 100%;
  }

  .picture-center-641d {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .progress_2018 {
    padding: 1rem;
  }

  .panel_purple_abca {
    font-size: 1.5rem;
  }

  .shade_4d31 {
    font-size: 0.75rem;
  }

  .picture-e867 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .header_simple_020e {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .header_simple_020e .easy-14bd {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .picture-center-641d {
    grid-template-columns: 1fr;
  }
}

.wrapper-7a05 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.rough_0b7f {
  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 === */
.liquid-ec4f {
  margin-bottom: 2.5rem;
}

.white-454a {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.wrapper-7a05 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.west-b991 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.filter-hard-39bc {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.selected_bff5 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.feature-action-6533 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.media_down_5fa2 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.glass-cf6b {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.background_clean_1fa9 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.background_clean_1fa9 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.south_e97d {
  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);
}

.light-60e1 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.form_6ab4 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.status-3a68 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.narrow-1e45 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.rough-4a74 {
  display: grid;
  gap: 1rem;
}

.hot-487c {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.focus-mini-4230 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.tabs-2442 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.progress_04fb {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.top_8b6f {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.paragraph_warm_0158 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.paragraph_warm_0158 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.static_fe10 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.advanced-63aa {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.paragraph_575a {
  display: grid;
  gap: 2rem;
}

.popup-f009 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.filter-hard-39bc {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.west-b991 {
  flex: 1;
}

.feature-action-6533 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.feature-action-6533 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.article-new-1640 {
  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;
}

.media_down_5fa2 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.filter-f287 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.filter-f287 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.chip_over_dbea {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.chip_over_dbea a {
  font-size: 0.875rem;
  font-weight: 500;
}

.hard_63b8 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.hard_63b8 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.hard_63b8 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hard_63b8 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.chip-c8ad {
  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 === */
.iron_3664 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.fresh_712a {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.short_5460 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.modal-6b52 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.modal-6b52 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.modal-6b52 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.modal-6b52 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;
}

.modal-6b52 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.modal-6b52 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.pro_1daa {
  padding: 3rem 0 5rem;
}

.texture_purple_a11b {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.texture_purple_a11b.element-stale-25b1 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.secondary_cd49 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.new_c965 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.link-paper-4729 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.link-paper-4729 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.filter-out-4588 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.clean-ca09 {
  text-align: center;
}

.info-liquid-27a8 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.link-22fd {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.block-prev-56bd {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.link-motion-b10e {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.motion-271f {
  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;
}

.motion-271f * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.motion-271f:hover {
  box-shadow: var(--shadow-lg);
}

.motion-271f.button-slow-ab26 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.motion-271f h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.motion-271f ul {
  margin: 1rem 0;
}

.motion-271f li {
  margin-bottom: 0.75rem;
}

.title-68fc {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.feature_active_c7f2 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.feature_active_c7f2 a {
  font-weight: 600;
}

/* === Data Tables === */
.list-b15a {
  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;
}

.list-b15a table {
  width: 100%;
  min-width: 600px;
}

.list-b15a thead {
  background-color: var(--primary-color);
  color: white;
}

.list-b15a th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.list-b15a td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.list-b15a tbody tr:hover {
  background-color: var(--bg-secondary);
}

.list-b15a tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.list_stone_c8b2 {
  list-style: none;
  margin: 1.5rem 0;
}

.list_stone_c8b2 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.list_stone_c8b2 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.status_over_0ed3::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-c7d1::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 === */
.center_f661 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.frame-ba6a {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.frame-ba6a img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.frame-ba6a strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.frame-ba6a span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.center_f661 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.brown_688d {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.brown_688d::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.accent_45f8 {
  position: relative;
  margin-bottom: 3rem;
}

.backdrop-e2c9 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.backdrop-e2c9 .gallery-east-6ae6 {
  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;
}

.content-east-64ca {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.content-east-64ca h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.content-east-64ca ul {
  margin: 1rem 0;
}

.content-east-64ca li {
  margin-bottom: 0.75rem;
}

.background_in_b81a {
  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 === */
.yellow-3856 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.yellow-3856 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.label_e057 {
  list-style: none;
  margin: 1.5rem 0;
}

.label_e057 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.label_e057 a {
  font-weight: 600;
}

.wrapper-huge-d9bd {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.notice-easy-8e50 {
  margin: 2.5rem 0;
}

.icon_b052 {
  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;
}

.icon_b052:hover {
  box-shadow: var(--shadow-lg);
}

.icon_b052.backdrop-f6f2 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.banner-04b0 {
  flex-shrink: 0;
}

.banner-04b0 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_9be0 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.dynamic_2569,
.overlay_south_0c03,
.tag_fcd8 {
  width: 100%;
  margin: 1.5rem 0;
}

.notification_349c {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.notification_349c strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.disabled_a9fd {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.disabled_a9fd strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.hot-0675 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.hot-0675 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.frame_4261 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.image-new-dbab {
  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;
}

.image-new-dbab:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.image-new-dbab.accordion_0f17 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.image-new-dbab .tag-7408 {
  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;
}

.image-new-dbab h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.static-421f {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.east-431f {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.east-431f label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.black_3cc6 {
  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 === */
.easy-14bd {
  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;
}

.status-light-8098 {
  background-color: var(--primary-color);
  color: white;
}

.status-light-8098:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.tertiary_cbe4 {
  background-color: var(--text-secondary);
  color: white;
}

.tertiary_cbe4:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.purple-b11f {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.purple-b11f:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.hovered-3b0f {
  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;
}

.hovered-3b0f:hover {
  background-color: var(--primary-dark);
}

.caption_dim_b0ed {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.summary-complex-f79c {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.dirty_3349 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.grid-c1c1 {
  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 === */
.background-552f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.icon_hovered_4161 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.icon_hovered_4161 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.list_mini_7afc {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.dynamic_e3ca {
  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;
}

.hot-00fa {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.white-daf3 {
  list-style: none;
  counter-reset: rank-counter;
}

.white-daf3 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.white-daf3 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;
}

.west_98d5 {
  list-style: none;
}

.west_98d5 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.gold_d5ac {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.east-1dd0 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.east-1dd0 .old_95fe {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.east-1dd0 .footer-271f {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.content_hard_63f0 {
  margin-top: 3rem;
}

.alert_bright_357f {
  width: 100%;
}

.paragraph_a994 {
  background-color: #fef3c7;
}

.hot-3713 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.menu_8862 {
  margin: 3rem 0;
}

.item_55db {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.image-327f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.image-327f:hover {
  box-shadow: var(--shadow-lg);
}

.image-327f.east_b2ad {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.container_tall_2b10 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.dim_727e strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.dim_727e span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.accent_copper_a363 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.image-327f blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.fast_d7f0 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pro_38b5 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.soft-57dc {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.accent-4f40 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.link_fresh_741f {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.article_f156 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.popup_5900 {
  max-width: 900px;
  margin: 0 auto;
}

.center_fc23 {
  margin: 2rem 0;
}

.accent_37e5 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accent_37e5 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.accent_37e5 summary::-webkit-details-marker {
  display: none;
}

.accent_37e5 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.aside_active_57b7 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.accent_37e5[open] .aside_active_57b7 {
  transform: rotate(45deg);
}

.heading_prev_a583 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.heading_prev_a583 p:last-child {
  margin-bottom: 0;
}

.feature_next_c9fc {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.link_0455 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.selected-dcb4 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.selected-dcb4 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.selected-dcb4 .easy-14bd {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.black-7cba {
  max-width: 900px;
  margin: 0 auto;
}

.wide_0475 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.down_e921 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.down_e921.fn-success-c7d1 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.shade_3f14 {
  font-size: 3rem;
  line-height: 1;
}

.sidebar-d29f h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.narrow-b9d2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.message-9bc6,
.tabs-6a83 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.message-9bc6 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.tabs-6a83 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.thumbnail_7c6e,
.up-32b3 {
  margin: 1.5rem 0;
}

.thumbnail_7c6e li,
.up-32b3 li {
  margin-bottom: 1rem;
}

.grid-static-4c5a {
  margin: 3rem 0;
}

.title_6d83 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.title_6d83 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.title_6d83 ol {
  margin: 1rem 0;
}

.title_6d83 li {
  margin-bottom: 0.75rem;
}

.gallery-6e52 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.focus-bronze-23f1 {
  margin: 2rem 0;
}

.hidden_ba51 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.stale-e501 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.pagination_8fd0 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.caption_stale_587b {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.paragraph_2c66 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.active-5044 {
  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;
}

.active-5044 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.selected_bff5 {
  flex: 1;
}

.selected_bff5 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.logo_937c {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.panel_wood_aafc p {
  margin-bottom: 1rem;
}

.frame_863f {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.focus_steel_61b6 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.popup-f79c {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.popup-f79c a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.first_06d6 h3 {
  margin-bottom: 1.5rem;
}

.gradient_gold_14cc {
  display: grid;
  gap: 2rem;
}

.nav_a8ef {
  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;
}

.nav_a8ef img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.nav_a8ef h4 {
  margin: 0 0 0.25rem;
}

.nav_a8ef p {
  margin: 0;
  font-size: 0.9375rem;
}

.texture_advanced_6a74 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.module-paper-f39e {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.module-paper-f39e h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.module-paper-f39e ul {
  margin: 1.5rem 0;
}

.module-paper-f39e li {
  margin-bottom: 0.75rem;
}

.layout_e16f {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.row-029b {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.paragraph-3fc5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.active-7dd0 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.active-7dd0 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.popup_17e1 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.popup_17e1 a {
  color: rgba(255, 255, 255, 0.8);
}

.up-9cf8 {
  list-style: none;
}

.up-9cf8 li {
  margin-bottom: 0.75rem;
}

.up-9cf8 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.up-9cf8 a:hover {
  color: white;
}

.banner_c010 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.aside_dirty_e8e9 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.grid-98ed {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.tag_red_62fd {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.progress-small-64af {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .secondary_cea2 {
    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;
  }

  .hidden_92c8 {
    font-size: 1.5rem !important;
  }

  .white-454a {
    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 */
  .motion-271f,
  .texture_medium_67de,
  .content-east-64ca,
  .info_9be0,
  .container_tall_2b10,
  .image-327f,
  .heading_prev_a583,
  .picture-e867,
  .static_fe10,
  .secondary_cd49 {
    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 */
  .wrapper-7a05 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .west-b991 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .filter-hard-39bc {
    flex-shrink: 0;
  }

  .selected_bff5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .feature-action-6533,
  .media_down_5fa2 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .media_down_5fa2 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .clean_db86 {
    display: none;
  }

  /* Show mobile actions */
  .active-121e {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .iron_8cbf {
    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;
  }

  .iron_8cbf svg {
    flex-shrink: 0;
  }

  .iron_8cbf .footer_eaff {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .iron_8cbf .avatar_hard_537c {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .sidebar-yellow-dce8 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .hidden_over_fe70 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .iron_8cbf:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .lite-73f6 {
    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;
  }

  .lite-73f6.fn-active-c7d1 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .lite-73f6 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .lite-73f6 li:last-child {
    border-bottom: none;
  }

  .lite-73f6 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .current-47dd {
    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;
  }

  .current-47dd li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .current-47dd li:last-child {
    border-bottom: none;
  }

  .current-47dd a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .filter-static-0c17 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .component_new_2005 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .active_211d,
  .paragraph_dim_14a7 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .active_211d {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .paragraph_dim_14a7 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .current-47dd.fn-active-c7d1 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .focused-d0df {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .background_soft_5b8d {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .simple-770d {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .over-9301 {
    margin-top: 0;
  }

  /* Hero section */
  .over-9301 {
    padding: 2rem 0 1.5rem;
  }

  .white-454a {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .static_fe10 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .fixed-6db5 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .table-7a1e {
    max-width: 100%;
    border-radius: 8px;
  }

  .picture-center-641d {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .progress_2018 {
    padding: 1rem;
  }

  .panel_purple_abca {
    font-size: 1.5rem;
  }

  .shade_4d31 {
    font-size: 0.75rem;
  }

  .picture-e867 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .header_simple_020e {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .header_simple_020e .easy-14bd {
    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 */
  .short_5460 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .icon_b052 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .banner-04b0 {
    margin-bottom: 1rem;
  }

  /* Author */
  .popup-f009 {
    flex-direction: column;
  }

  .active-5044 {
    flex-direction: column;
  }

  /* Quotes */
  .container_tall_2b10 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .narrow-b9d2 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .caption_stale_587b {
    flex-direction: column;
  }

  .caption_stale_587b .easy-14bd {
    width: 100%;
  }

  /* Version comparison */
  .frame_4261 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .background-552f {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .paragraph-3fc5 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .grid-98ed {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .list-b15a,
  .overlay_south_0c03,
  .accent_95f8,
  .alert_bright_357f,
  .dynamic_2569,
  .tag_fcd8 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .list-b15a table,
  .overlay_south_0c03 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .black_3cc6 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .secondary_cea2 {
    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;
  }

  .hidden_92c8 {
    font-size: 1.25rem !important;
  }

  .white-454a {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .background_soft_5b8d {
    position: fixed;
  }

  .simple-770d {
    padding: 0.625rem 0;
  }

  .heading-7a43 img {
    height: 26px;
  }

  .current-47dd {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .lite-73f6 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .iron_8cbf {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .iron_8cbf svg {
    width: 18px;
    height: 18px;
  }

  .iron_8cbf .footer_eaff {
    font-size: 0.7rem;
  }

  .iron_8cbf .avatar_hard_537c {
    font-size: 0.65rem;
  }

  .active_211d,
  .paragraph_dim_14a7 {
    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, .secondary_cea2, .aside_iron_ad2a, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .fixed-6db5 {
    padding: 1rem;
  }

  .picture-center-641d {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .progress_2018 {
    padding: 0.875rem;
  }

  .panel_purple_abca {
    font-size: 1.25rem;
  }

  .header_simple_020e .easy-14bd {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .white-454a {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .easy-14bd {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .caption_dim_b0ed {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .icon_b052 {
    padding: 1rem;
  }

  .banner-04b0 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .motion-271f,
  .form-ee75,
  .complex-b788,
  .logo_2d30 {
    padding: 1rem;
  }
}

@media print {
  .background_soft_5b8d,
  .iron_3664,
  .focused-d0df,
  .easy-14bd,
  .row-029b {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .secondary_cea2 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.fast-0f13 {
  margin-bottom: 3rem;
  text-align: center;
}

.hidden_92c8 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.block-west-702c {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.action-d55e,
.shade-large-89d5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero-dbba {
  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;
}

.hero-dbba:hover {
  transform: translateY(-5px);
}

.hero-dbba strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.hero-dbba span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.west-7b3b {
  margin: 3rem 0;
}

.module_purple_18ab {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.block-full-3a4d {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.block-full-3a4d:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.fresh_c510 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-narrow-9f8b {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.modal_brown_0a48 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.south-85b3 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.card_8703 {
  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;
}

.card_8703:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.card_8703.upper-8a84 {
  border-left: 4px solid var(--primary-color);
}

.dropdown-4461 {
  flex-shrink: 0;
}

.dropdown-4461 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.primary_f5fa {
  flex: 1;
}

.primary_f5fa h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.preview_de5e {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.list_1378,
.icon_7d2c,
.outline_stale_f543 {
  margin-bottom: 1.5rem;
}

.list_1378 h4,
.icon_7d2c h4,
.outline_stale_f543 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.list_1378 ul,
.icon_7d2c ul,
.outline_stale_f543 ul {
  list-style: none;
  padding: 0;
}

.list_1378 li,
.icon_7d2c li,
.outline_stale_f543 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.list_1378 li:before,
.icon_7d2c li:before,
.outline_stale_f543 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.block-757e {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.block-757e 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;
}

.block-757e a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.shadow-f34f { margin: 2rem 0; }
.element-7b2c { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.element-7b2c h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.upper_34c4 p { margin-bottom: 1rem; line-height: 1.7; }
.upper_34c4 strong { color: var(--text-primary); }
.upper_34c4 ul { list-style: none; padding-left: 0; }
.upper_34c4 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.upper_34c4 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.left_8f7d { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.black-129a { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.black-129a:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.upper_7656 { font-size: 3rem; margin-bottom: 1rem; }
.black-129a h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.black-129a p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.hot_766a { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.hot_766a span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.module_9f61 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.row-stone-e417 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.shade-lower-5c3e { text-align: center; }
.easy_d365 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.menu-top-9caa { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.wrapper_7f0b { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.aside_cold_b871 { margin: 2rem 0; }
.thumbnail_328f { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.thumbnail_328f h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.thumbnail_328f p, .thumbnail_328f ul { line-height: 1.7; }
.thumbnail_328f ul { list-style: none; padding-left: 0; }
.thumbnail_328f ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.thumbnail_328f ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.black_b46b { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.tag_glass_5b6a { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.primary_focused_2747 { text-align: center; }
.image_huge_6d91 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.notice-lower-b34f { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.selected-88b1 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.slow_c8ba { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.sidebar_f6fa { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.sidebar_f6fa:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.sidebar_f6fa h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.sidebar_f6fa p, .sidebar_f6fa ul { line-height: 1.7; }
.sidebar_f6fa ul { list-style: none; padding-left: 0; }
.sidebar_f6fa ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.sidebar_f6fa ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: f6c3 */
.widget-item-f7 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.2;
}
