/* ============================================
   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 */
.pagination-small-44a8 p,
.cold-68a7,
.status-8aed,
.pagination_rough_c3d3,
.shade-3493,
.carousel-95dd,
.west-55bb,
.card_last_135c {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.progress_d473 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.progress_d473 > *,
.summary-b56b,
.pagination-small-44a8,
.footer_cdee {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .progress_d473 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .progress_d473 {
    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 === */
.soft_a092 {
  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 */
.soft_a092.left-e5ce {
  box-shadow: var(--shadow-md);
}

.primary-paper-d22e {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.sidebar-7f98 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.preview-dirty-8c69 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.hard_83f1 {
  display: none;
}

/* Hide mobile actions on desktop */
.active_a745 {
  display: none;
}

.block_771b a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.block_771b a:hover,
.block_771b a.fn-active-79ce {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.fast-df30 {
  margin-left: 1rem;
}

.simple_fa1d {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.white_e1a5,
.box-active-9164 {
  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;
}

.white_e1a5 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.white_e1a5: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;
}

.box-active-9164 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.box-active-9164: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;
}

.white_e1a5 svg,
.box-active-9164 svg {
  flex-shrink: 0;
}

.mask-dim-b441 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu_active_4b0d {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.menu_active_4b0d::before,
.menu_active_4b0d::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.menu_active_4b0d::before {
  top: -7px;
}

.menu_active_4b0d::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.media-2fc0 {
  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 === */
.pattern_fresh_082c {
  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);
}

.mask-fresh-9c34 {
  margin: 0 0 2rem;
  text-align: center;
}

.texture_f4e8 {
  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;
}

.texture_f4e8:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.block-clean-b38e {
  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);
}

.block-clean-b38e strong {
  color: var(--primary-color);
  font-weight: 700;
}

.notice_purple_57eb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.secondary_simple_b35a {
  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;
}

.secondary_simple_b35a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.text_180a {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.caption_pink_544a {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.large-c2f9 {
  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);
}

.large-c2f9 .footer_1ce6 {
  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;
}

.large-c2f9 .footer_1ce6 svg {
  flex-shrink: 0;
}

.large-c2f9 .overlay_1a76 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.large-c2f9 .overlay_1a76: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);
}

.large-c2f9 .frame-e743 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.large-c2f9 .frame-e743: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) {
  .pattern_fresh_082c {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .texture_f4e8 {
    max-width: 100%;
  }

  .notice_purple_57eb {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .secondary_simple_b35a {
    padding: 1rem;
  }

  .text_180a {
    font-size: 1.5rem;
  }

  .caption_pink_544a {
    font-size: 0.75rem;
  }

  .block-clean-b38e {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .large-c2f9 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .large-c2f9 .footer_1ce6 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .notice_purple_57eb {
    grid-template-columns: 1fr;
  }
}

.link_17ef {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer_under_ee78 {
  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 === */
.tag_mini_646c {
  margin-bottom: 2.5rem;
}

.sidebar-dece {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.link_17ef {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.preview_2fe0 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.text_purple_809c {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.green-e620 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hovered-0dd9 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.cold-20d0 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.pink_d134 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.element-medium-2466 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.element-medium-2466 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.basic_9fc7 {
  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);
}

.carousel-small-78c5 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.status_smooth_f751 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.orange_0f91 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.active-glass-d065 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.badge_east_ceae {
  display: grid;
  gap: 1rem;
}

.paragraph_c7dc {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.card-18e6 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.large_9ec9 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.mask-east-bd2b {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.plasma_0cd8 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.highlight-south-9238 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.highlight-south-9238 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.cold-68a7 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.footer_smooth_4cca {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.preview-black-07f1 {
  display: grid;
  gap: 2rem;
}

.pagination-short-b0ce {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.text_purple_809c {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.preview_2fe0 {
  flex: 1;
}

.hovered-0dd9 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.hovered-0dd9 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.wood_9a94 {
  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;
}

.cold-20d0 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.table-advanced-1243 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.table-advanced-1243 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.bronze-b5d5 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.bronze-b5d5 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.dim-0473 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.dim-0473 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.dim-0473 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dim-0473 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.box-dirty-1215 {
  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 === */
.focus-hovered-8d40 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.message_hard_7bde {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.complex_847e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.modal-da21 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.modal-da21 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.modal-da21 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.modal-da21 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-da21 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.modal-da21 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.pagination-small-44a8 {
  padding: 3rem 0 5rem;
}

.footer_cdee {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.footer_cdee.pattern-white-2c8e {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.status-8aed {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.pressed-7f3e {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.video_ed34 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.video_ed34 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.lower_93f4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.focused_8e64 {
  text-align: center;
}

.photo-618a {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.wood-ef5e {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.shade_fresh_5e89 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.carousel-95dd {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.pagination_rough_c3d3 {
  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;
}

.pagination_rough_c3d3 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.pagination_rough_c3d3:hover {
  box-shadow: var(--shadow-lg);
}

.pagination_rough_c3d3.dirty-6387 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.pagination_rough_c3d3 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.pagination_rough_c3d3 ul {
  margin: 1rem 0;
}

.pagination_rough_c3d3 li {
  margin-bottom: 0.75rem;
}

.badge_549a {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.input_7215 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.input_7215 a {
  font-weight: 600;
}

/* === Data Tables === */
.outer_aa18 {
  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;
}

.outer_aa18 table {
  width: 100%;
  min-width: 600px;
}

.outer_aa18 thead {
  background-color: var(--primary-color);
  color: white;
}

.outer_aa18 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.outer_aa18 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.outer_aa18 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.outer_aa18 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.gold_9fbd {
  list-style: none;
  margin: 1.5rem 0;
}

.gold_9fbd li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.gold_9fbd li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.card-572a::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-79ce::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 === */
.nav-next-d096 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.gold-e672 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.gold-e672 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.gold-e672 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.gold-e672 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.nav-next-d096 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.west-55bb {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.west-55bb::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.button-d0b5 {
  position: relative;
  margin-bottom: 3rem;
}

.south-aaa5 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.south-aaa5 .sidebar_6923 {
  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;
}

.dark_ba47 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.dark_ba47 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.dark_ba47 ul {
  margin: 1rem 0;
}

.dark_ba47 li {
  margin-bottom: 0.75rem;
}

.modal-87b6 {
  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 === */
.complex_cef0 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.complex_cef0 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.stone_1242 {
  list-style: none;
  margin: 1.5rem 0;
}

.stone_1242 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.stone_1242 a {
  font-weight: 600;
}

.outline-top-ec75 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.card_last_135c {
  margin: 2.5rem 0;
}

.summary_9743 {
  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;
}

.summary_9743:hover {
  box-shadow: var(--shadow-lg);
}

.summary_9743.thumbnail_d812 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.left_1188 {
  flex-shrink: 0;
}

.left_1188 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);
}

.surface-13d5 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.sort_e465,
.button_5b46,
.modal-ece7 {
  width: 100%;
  margin: 1.5rem 0;
}

.column_simple_dffa {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.column_simple_dffa strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.label_d5ef {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.label_d5ef strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.mask-27d9 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.mask-27d9 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.stone_ab10 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.primary_copper_3254 {
  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;
}

.primary_copper_3254:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.primary_copper_3254.component_149f {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.primary_copper_3254 .hidden-08dd {
  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;
}

.primary_copper_3254 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.surface_black_389f {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.primary_b63d {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.primary_b63d label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.out_00f0 {
  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 === */
.footer_1ce6 {
  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;
}

.overlay_1a76 {
  background-color: var(--primary-color);
  color: white;
}

.overlay_1a76:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.frame-e743 {
  background-color: var(--text-secondary);
  color: white;
}

.frame-e743:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.pagination-soft-a258 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.pagination-soft-a258:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.section-bottom-a0a5 {
  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;
}

.section-bottom-a0a5:hover {
  background-color: var(--primary-dark);
}

.badge_wood_f308 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.copper-0dee {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.narrow_ada0 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.slider-south-95a6 {
  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 === */
.modal-hovered-9e4f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.south_33d7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.south_33d7 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.column_1b68 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.small_dc5c {
  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;
}

.description-4316 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.section_932d {
  list-style: none;
  counter-reset: rank-counter;
}

.section_932d li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.section_932d 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;
}

.gallery_active_27e9 {
  list-style: none;
}

.gallery_active_27e9 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.overlay-left-c742 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.nav_846a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.nav_846a .out_a0a5 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.nav_846a .image-98d2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.tag-thick-9eeb {
  margin-top: 3rem;
}

.badge_f5a5 {
  width: 100%;
}

.glass_9550 {
  background-color: #fef3c7;
}

.hidden-easy-acd8 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.simple-b104 {
  margin: 3rem 0;
}

.hard-d5df {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.row-faee {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.row-faee:hover {
  box-shadow: var(--shadow-lg);
}

.row-faee.surface-soft-203d {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.copper-0b3b {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.narrow-8d4b strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.narrow-8d4b span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.input_7171 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.row-faee blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.video-2b64 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.input_e1b6 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.notification-selected-877b {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.summary-0a32 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.highlight_black_c663 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.shade-e99d {
  margin-top: 1rem;
}

/* === FAQ Section === */
.column-left-6755 {
  max-width: 900px;
  margin: 0 auto;
}

.carousel-d0a4 {
  margin: 2rem 0;
}

.hidden_d617 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.hidden_d617 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.hidden_d617 summary::-webkit-details-marker {
  display: none;
}

.hidden_d617 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.lite_3753 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.hidden_d617[open] .lite_3753 {
  transform: rotate(45deg);
}

.description_right_8bf5 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.description_right_8bf5 p:last-child {
  margin-bottom: 0;
}

.thick-06ff {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.shadow_cool_974e {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.dropdown-5d6f {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.dropdown-5d6f p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.dropdown-5d6f .footer_1ce6 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.text-82d5 {
  max-width: 900px;
  margin: 0 auto;
}

.column-small-55ac {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.form_clean_d596 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.form_clean_d596.fn-success-79ce {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.liquid_0d4e {
  font-size: 3rem;
  line-height: 1;
}

.gas-c738 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.down_0178 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.sidebar-liquid-556d,
.section_728d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.sidebar-liquid-556d h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.section_728d h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.highlight-gold-adeb,
.search_ee36 {
  margin: 1.5rem 0;
}

.highlight-gold-adeb li,
.search_ee36 li {
  margin-bottom: 1rem;
}

.motion_6563 {
  margin: 3rem 0;
}

.status_5fae {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.status_5fae h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.status_5fae ol {
  margin: 1rem 0;
}

.status_5fae li {
  margin-bottom: 0.75rem;
}

.under-3bfe {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.mask-662a {
  margin: 2rem 0;
}

.sort-5d6c {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.large_55d6 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.input_simple_6374 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.secondary-dc7d {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.form-a5ac {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.form_inner_86b7 {
  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;
}

.form_inner_86b7 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.green-e620 {
  flex: 1;
}

.green-e620 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.top-642d {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.text-ded5 p {
  margin-bottom: 1rem;
}

.pattern-7a81 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.smooth_ccf7 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.picture-new-6f25 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.picture-new-6f25 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.hot-0dfb h3 {
  margin-bottom: 1.5rem;
}

.red-9f8e {
  display: grid;
  gap: 2rem;
}

.info_pro_d0d0 {
  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;
}

.info_pro_d0d0 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.info_pro_d0d0 h4 {
  margin: 0 0 0.25rem;
}

.info_pro_d0d0 p {
  margin: 0;
  font-size: 0.9375rem;
}

.medium_3fad {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.avatar-f980 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.avatar-f980 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.avatar-f980 ul {
  margin: 1.5rem 0;
}

.avatar-f980 li {
  margin-bottom: 0.75rem;
}

.shadow-2e10 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.narrow_462c {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.link-1d18 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.breadcrumb-3ceb h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.breadcrumb-3ceb p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.out_f80d {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.out_f80d a {
  color: rgba(255, 255, 255, 0.8);
}

.box_right_f8be {
  list-style: none;
}

.box_right_f8be li {
  margin-bottom: 0.75rem;
}

.box_right_f8be a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.box_right_f8be a:hover {
  color: white;
}

.footer_south_9336 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.pink-24b1 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.hidden-036c {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.container_552e {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.shade_c69c {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .progress_d473 {
    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;
  }

  .gallery_b4ad {
    font-size: 1.5rem !important;
  }

  .sidebar-dece {
    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 */
  .pagination_rough_c3d3,
  .shade-3493,
  .dark_ba47,
  .surface-13d5,
  .copper-0b3b,
  .row-faee,
  .description_right_8bf5,
  .block-clean-b38e,
  .cold-68a7,
  .status-8aed {
    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 */
  .link_17ef {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .preview_2fe0 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .text_purple_809c {
    flex-shrink: 0;
  }

  .green-e620 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .hovered-0dd9,
  .cold-20d0 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .cold-20d0 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .preview-dirty-8c69 {
    display: none;
  }

  /* Show mobile actions */
  .active_a745 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .pagination_0111 {
    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;
  }

  .pagination_0111 svg {
    flex-shrink: 0;
  }

  .pagination_0111 .notice_8c4c {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .pagination_0111 .caption-22a7 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .tertiary_north_bfe3 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .prev_a7c8 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .pagination_0111:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .hard_83f1 {
    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;
  }

  .hard_83f1.fn-active-79ce {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hard_83f1 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .hard_83f1 li:last-child {
    border-bottom: none;
  }

  .hard_83f1 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .block_771b {
    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;
  }

  .block_771b li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .block_771b li:last-child {
    border-bottom: none;
  }

  .block_771b a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .fast-df30 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .simple_fa1d {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .white_e1a5,
  .box-active-9164 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .white_e1a5 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .box-active-9164 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .block_771b.fn-active-79ce {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mask-dim-b441 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .soft_a092 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .primary-paper-d22e {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .media-2fc0 {
    margin-top: 0;
  }

  /* Hero section */
  .media-2fc0 {
    padding: 2rem 0 1.5rem;
  }

  .sidebar-dece {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .cold-68a7 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .pattern_fresh_082c {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .texture_f4e8 {
    max-width: 100%;
    border-radius: 8px;
  }

  .notice_purple_57eb {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .secondary_simple_b35a {
    padding: 1rem;
  }

  .text_180a {
    font-size: 1.5rem;
  }

  .caption_pink_544a {
    font-size: 0.75rem;
  }

  .block-clean-b38e {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .large-c2f9 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .large-c2f9 .footer_1ce6 {
    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 */
  .complex_847e {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .summary_9743 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .left_1188 {
    margin-bottom: 1rem;
  }

  /* Author */
  .pagination-short-b0ce {
    flex-direction: column;
  }

  .form_inner_86b7 {
    flex-direction: column;
  }

  /* Quotes */
  .copper-0b3b {
    flex-direction: column;
  }

  /* Pros/Cons */
  .down_0178 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .secondary-dc7d {
    flex-direction: column;
  }

  .secondary-dc7d .footer_1ce6 {
    width: 100%;
  }

  /* Version comparison */
  .stone_ab10 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .modal-hovered-9e4f {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .link-1d18 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hidden-036c {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .outer_aa18,
  .button_5b46,
  .dropdown-9f82,
  .badge_f5a5,
  .sort_e465,
  .modal-ece7 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .outer_aa18 table,
  .button_5b46 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .out_00f0 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .progress_d473 {
    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;
  }

  .gallery_b4ad {
    font-size: 1.25rem !important;
  }

  .sidebar-dece {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .soft_a092 {
    position: fixed;
  }

  .primary-paper-d22e {
    padding: 0.625rem 0;
  }

  .sidebar-7f98 img {
    height: 26px;
  }

  .block_771b {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .hard_83f1 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .pagination_0111 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .pagination_0111 svg {
    width: 18px;
    height: 18px;
  }

  .pagination_0111 .notice_8c4c {
    font-size: 0.7rem;
  }

  .pagination_0111 .caption-22a7 {
    font-size: 0.65rem;
  }

  .white_e1a5,
  .box-active-9164 {
    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, .progress_d473, .summary-b56b, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .pattern_fresh_082c {
    padding: 1rem;
  }

  .notice_purple_57eb {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .secondary_simple_b35a {
    padding: 0.875rem;
  }

  .text_180a {
    font-size: 1.25rem;
  }

  .large-c2f9 .footer_1ce6 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .sidebar-dece {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .footer_1ce6 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .badge_wood_f308 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .summary_9743 {
    padding: 1rem;
  }

  .left_1188 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .pagination_rough_c3d3,
  .element_in_f1a5,
  .background-east-9ef3,
  .dirty-f01b {
    padding: 1rem;
  }
}

@media print {
  .soft_a092,
  .focus-hovered-8d40,
  .mask-dim-b441,
  .footer_1ce6,
  .narrow_462c {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .progress_d473 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.list-red-46c3 {
  margin-bottom: 3rem;
  text-align: center;
}

.gallery_b4ad {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.solid_187a {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.section-ffb1,
.info_9bc1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.active_fcaf {
  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;
}

.active_fcaf:hover {
  transform: translateY(-5px);
}

.active_fcaf strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.active_fcaf span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.feature-299f {
  margin: 3rem 0;
}

.texture-hard-321a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.article_iron_a96c {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.article_iron_a96c:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.dark-9659 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.article-23ba {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.detail_6a4e {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.wrapper_ed43 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.soft_9fed {
  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;
}

.soft_9fed:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.soft_9fed.out-fc94 {
  border-left: 4px solid var(--primary-color);
}

.brown-5503 {
  flex-shrink: 0;
}

.brown-5503 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.header-8757 {
  flex: 1;
}

.header-8757 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.complex-e2f6 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.lower_094d,
.icon_warm_9dba,
.green_888a {
  margin-bottom: 1.5rem;
}

.lower_094d h4,
.icon_warm_9dba h4,
.green_888a h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lower_094d ul,
.icon_warm_9dba ul,
.green_888a ul {
  list-style: none;
  padding: 0;
}

.lower_094d li,
.icon_warm_9dba li,
.green_888a li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.lower_094d li:before,
.icon_warm_9dba li:before,
.green_888a li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.shade-dynamic-749d {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.shade-dynamic-749d 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;
}

.shade-dynamic-749d a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.highlight_a0c4 { margin: 2rem 0; }
.pattern_12dd { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.pattern_12dd h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.article_861a p { margin-bottom: 1rem; line-height: 1.7; }
.article_861a strong { color: var(--text-primary); }
.article_861a ul { list-style: none; padding-left: 0; }
.article_861a ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.article_861a ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.breadcrumb-purple-f486 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.thick_84aa { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.thick_84aa:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.grid_eefe { font-size: 3rem; margin-bottom: 1rem; }
.thick_84aa h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.thick_84aa p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.nav_7840 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.nav_7840 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.media_hot_004f { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.grid-a101 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.text_in_7dc5 { text-align: center; }
.status-right-f114 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.popup-a1df { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.slider-02b8 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.message-outer-35ea { margin: 2rem 0; }
.slider_east_a4a5 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.slider_east_a4a5 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.slider_east_a4a5 p, .slider_east_a4a5 ul { line-height: 1.7; }
.slider_east_a4a5 ul { list-style: none; padding-left: 0; }
.slider_east_a4a5 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.slider_east_a4a5 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.clean-edf8 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.smooth-ef00 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.selected_e6c1 { text-align: center; }
.silver-e109 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.pagination-df8a { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.over_ff23 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.label_aaf5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.dirty_e3e1 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.dirty_e3e1:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.dirty_e3e1 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.dirty_e3e1 p, .dirty_e3e1 ul { line-height: 1.7; }
.dirty_e3e1 ul { list-style: none; padding-left: 0; }
.dirty_e3e1 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.dirty_e3e1 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 1351 */
.phantom-card-n3 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.0;
}
