/* ============================================
   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 */
.progress-mini-dcaa p,
.title_e527,
.old-94a6,
.caption-af6e,
.gradient_efb0,
.upper-b5aa,
.left-1532,
.purple-2870 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.column_f0ba {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.column_f0ba > *,
.slow-1071,
.progress-mini-dcaa,
.hidden_b27f {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .column_f0ba {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .column_f0ba {
    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 === */
.list_5a22 {
  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 */
.list_5a22.outer-5f3f {
  box-shadow: var(--shadow-md);
}

.texture_c584 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.row_basic_09a9 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.out-9def {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.bottom_008c {
  display: none;
}

/* Hide mobile actions on desktop */
.medium_db70 {
  display: none;
}

.row-left-8474 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.row-left-8474 a:hover,
.row-left-8474 a.fn-active-9cf5 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.preview_f617 {
  margin-left: 1rem;
}

.dark-5eaa {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.gas-e1d3,
.warm-c3c9 {
  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;
}

.gas-e1d3 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.gas-e1d3: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;
}

.warm-c3c9 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.warm-c3c9: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;
}

.gas-e1d3 svg,
.warm-c3c9 svg {
  flex-shrink: 0;
}

.hidden-9cb4 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.lower_7038 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.lower_7038::before,
.lower_7038::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.lower_7038::before {
  top: -7px;
}

.lower_7038::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.sidebar-0c0f {
  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 === */
.yellow_b710 {
  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);
}

.title-8d42 {
  margin: 0 0 2rem;
  text-align: center;
}

.bronze-fc81 {
  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;
}

.bronze-fc81:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.pattern-prev-2361 {
  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);
}

.pattern-prev-2361 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.link_487d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.hero-5b9d {
  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;
}

.hero-5b9d:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.nav-paper-d5fa {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.short_0a58 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.box_mini_450c {
  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);
}

.box_mini_450c .form_1138 {
  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;
}

.box_mini_450c .form_1138 svg {
  flex-shrink: 0;
}

.box_mini_450c .up_7e1f {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.box_mini_450c .up_7e1f: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);
}

.box_mini_450c .cool-7c7c {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.box_mini_450c .cool-7c7c: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) {
  .yellow_b710 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .bronze-fc81 {
    max-width: 100%;
  }

  .link_487d {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hero-5b9d {
    padding: 1rem;
  }

  .nav-paper-d5fa {
    font-size: 1.5rem;
  }

  .short_0a58 {
    font-size: 0.75rem;
  }

  .pattern-prev-2361 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .box_mini_450c {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .box_mini_450c .form_1138 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .link_487d {
    grid-template-columns: 1fr;
  }
}

.left-0752 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.sidebar_static_f523 {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

time {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* === Article Header & Meta === */
.row-fixed-95f9 {
  margin-bottom: 2.5rem;
}

.icon_c383 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.left-0752 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.last_1db4 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mask_9104 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.card_steel_2336 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.icon-fcb7 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.upper-046c {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.panel-center-c0a0 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.feature-dim-8ad1 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.feature-dim-8ad1 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.column_3bb2 {
  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);
}

.dropdown_purple_d978 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.huge_99eb {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.card_3fb4 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.mask_red_7374 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.accent_wood_8faf {
  display: grid;
  gap: 1rem;
}

.info_paper_0757 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.fixed-f047 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.fluid_32dd {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.basic_8a35 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.link_0908 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.wood_d9a2 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.wood_d9a2 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.title_e527 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.search_8fa6 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.button-64ee {
  display: grid;
  gap: 2rem;
}

.dynamic_d75d {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.mask_9104 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.last_1db4 {
  flex: 1;
}

.icon-fcb7 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.icon-fcb7 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.rough-88cc {
  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;
}

.upper-046c {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.hard-d848 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.hard-d848 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.gallery-silver-df44 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.gallery-silver-df44 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.rough-28d7 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.rough-28d7 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.rough-28d7 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rough-28d7 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.over_a0b3 {
  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 === */
.detail-161c {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.alert-1f94 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.breadcrumb_cold_a034 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pattern_f63d h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.pattern_f63d ol {
  list-style: none;
  counter-reset: toc-counter;
}

.pattern_f63d ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.pattern_f63d 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;
}

.pattern_f63d ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.pattern_f63d ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.progress-mini-dcaa {
  padding: 3rem 0 5rem;
}

.hidden_b27f {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.hidden_b27f.complex-0efc {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.old-94a6 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.badge-rough-987d {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.menu_east_0cb7 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.menu_east_0cb7 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.motion-4f3e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.old-d2cf {
  text-align: center;
}

.soft-a62e {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.info_large_cf4c {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.gas_d565 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.upper-b5aa {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.caption-af6e {
  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;
}

.caption-af6e * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.caption-af6e:hover {
  box-shadow: var(--shadow-lg);
}

.caption-af6e.action-5056 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.caption-af6e h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.caption-af6e ul {
  margin: 1rem 0;
}

.caption-af6e li {
  margin-bottom: 0.75rem;
}

.link_thick_d816 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.cold_6890 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.cold_6890 a {
  font-weight: 600;
}

/* === Data Tables === */
.caption_15f0 {
  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;
}

.caption_15f0 table {
  width: 100%;
  min-width: 600px;
}

.caption_15f0 thead {
  background-color: var(--primary-color);
  color: white;
}

.caption_15f0 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.caption_15f0 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.caption_15f0 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.caption_15f0 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.hidden_cold_2375 {
  list-style: none;
  margin: 1.5rem 0;
}

.hidden_cold_2375 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.hidden_cold_2375 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.basic-9c36::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-9cf5::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 === */
.pink_4216 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.hero_advanced_e42a {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.hero_advanced_e42a img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.hero_advanced_e42a strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.hero_advanced_e42a span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pink_4216 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.left-1532 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.left-1532::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.rough-545c {
  position: relative;
  margin-bottom: 3rem;
}

.border_74bb {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.border_74bb .upper_fdcb {
  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;
}

.row-8800 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.row-8800 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.row-8800 ul {
  margin: 1rem 0;
}

.row-8800 li {
  margin-bottom: 0.75rem;
}

.lite-a1f0 {
  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 === */
.gradient-2845 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.gradient-2845 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.black-b90c {
  list-style: none;
  margin: 1.5rem 0;
}

.black-b90c li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.black-b90c a {
  font-weight: 600;
}

.footer_4cbf {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.purple-2870 {
  margin: 2.5rem 0;
}

.card-short-f499 {
  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;
}

.card-short-f499:hover {
  box-shadow: var(--shadow-lg);
}

.card-short-f499.item-fa88 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.copper-42ec {
  flex-shrink: 0;
}

.copper-42ec 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);
}

.focused_4284 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.new-17c3,
.grid_4b96,
.last_c2d4 {
  width: 100%;
  margin: 1.5rem 0;
}

.shadow_318a {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.shadow_318a strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.hard_54ba {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.hard_54ba strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.detail_advanced_25ff {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.detail_advanced_25ff strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.banner_brown_3c96 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.message-23b2 {
  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;
}

.message-23b2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.message-23b2.overlay-eca0 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.message-23b2 .gradient_a859 {
  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;
}

.message-23b2 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.left-47ae {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.summary-narrow-23ad {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.summary-narrow-23ad label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.west_881a {
  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 === */
.form_1138 {
  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;
}

.up_7e1f {
  background-color: var(--primary-color);
  color: white;
}

.up_7e1f:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.cool-7c7c {
  background-color: var(--text-secondary);
  color: white;
}

.cool-7c7c:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.disabled_easy_5f86 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.disabled_easy_5f86:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.accordion_4a24 {
  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;
}

.accordion_4a24:hover {
  background-color: var(--primary-dark);
}

.liquid_8e55 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.box_3f48 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.texture_c4f8 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.accent-636a {
  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 === */
.copper_705d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.rough_c18e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.rough_c18e h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.short_5160 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.info-cd60 {
  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;
}

.shade-easy-393d {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.thick_e546 {
  list-style: none;
  counter-reset: rank-counter;
}

.thick_e546 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.thick_e546 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;
}

.sort-bright-291e {
  list-style: none;
}

.sort-bright-291e li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.text-orange-0986 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.hard_ab01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hard_ab01 .top_a74f {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.hard_ab01 .search_c5d3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.feature_focused_fd50 {
  margin-top: 3rem;
}

.block-dark-41cb {
  width: 100%;
}

.badge_2d14 {
  background-color: #fef3c7;
}

.status-fb3c {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.hover_inner_789e {
  margin: 3rem 0;
}

.tertiary-4491 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.top-2ef8 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.top-2ef8:hover {
  box-shadow: var(--shadow-lg);
}

.top-2ef8.paragraph-white-998e {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.static-92f9 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.pro-efe0 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.pro-efe0 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.progress_plasma_c8b1 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.top-2ef8 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.notification_25e4 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.active-857d {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.banner_upper_109a {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.row-gold-a48e {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.glass-1cde {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.footer_prev_a6cd {
  margin-top: 1rem;
}

/* === FAQ Section === */
.primary-757b {
  max-width: 900px;
  margin: 0 auto;
}

.old_36fb {
  margin: 2rem 0;
}

.tooltip-plasma-74f9 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.tooltip-plasma-74f9 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.tooltip-plasma-74f9 summary::-webkit-details-marker {
  display: none;
}

.tooltip-plasma-74f9 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.large_2607 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.tooltip-plasma-74f9[open] .large_2607 {
  transform: rotate(45deg);
}

.overlay_0461 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.overlay_0461 p:last-child {
  margin-bottom: 0;
}

.detail-east-ae29 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.red_61b4 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.mask-upper-a81f {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.mask-upper-a81f p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.mask-upper-a81f .form_1138 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.overlay-128c {
  max-width: 900px;
  margin: 0 auto;
}

.title-tall-2814 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.box_de69 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.box_de69.fn-success-9cf5 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.card-dde8 {
  font-size: 3rem;
  line-height: 1;
}

.detail-dim-ec80 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.iron-b3c8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.silver-edc7,
.banner_0442 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.silver-edc7 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.banner_0442 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.modal-selected-4470,
.logo-steel-3a14 {
  margin: 1.5rem 0;
}

.modal-selected-4470 li,
.logo-steel-3a14 li {
  margin-bottom: 1rem;
}

.component-1e54 {
  margin: 3rem 0;
}

.basic_f5fa {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.basic_f5fa h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.basic_f5fa ol {
  margin: 1rem 0;
}

.basic_f5fa li {
  margin-bottom: 0.75rem;
}

.avatar-ce1c {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.article_6109 {
  margin: 2rem 0;
}

.purple-8e66 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.backdrop-f198 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.mask-21ed {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.cold_7e82 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.tooltip-04fa {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.content-1e45 {
  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;
}

.content-1e45 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.card_steel_2336 {
  flex: 1;
}

.card_steel_2336 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.mask_bronze_8055 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.container-lower-791b p {
  margin-bottom: 1rem;
}

.input-0fa9 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.grid_ac0c {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.preview_motion_bdb4 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.preview_motion_bdb4 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.chip-5523 h3 {
  margin-bottom: 1.5rem;
}

.aside_80d4 {
  display: grid;
  gap: 2rem;
}

.background_basic_1389 {
  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;
}

.background_basic_1389 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.background_basic_1389 h4 {
  margin: 0 0 0.25rem;
}

.background_basic_1389 p {
  margin: 0;
  font-size: 0.9375rem;
}

.prev_976e {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.alert-f775 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.alert-f775 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.alert-f775 ul {
  margin: 1.5rem 0;
}

.alert-f775 li {
  margin-bottom: 0.75rem;
}

.section-314c {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.wide-12c5 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.plasma-5da9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.border_1a90 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.border_1a90 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.advanced-b18e {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.advanced-b18e a {
  color: rgba(255, 255, 255, 0.8);
}

.hard_8cae {
  list-style: none;
}

.hard_8cae li {
  margin-bottom: 0.75rem;
}

.hard_8cae a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.hard_8cae a:hover {
  color: white;
}

.text-orange-6b2b {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.detail_3eac {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.heading-light-779e {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.icon_black_ba8a {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.tooltip_current_c653 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .column_f0ba {
    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;
  }

  .fast_842b {
    font-size: 1.5rem !important;
  }

  .icon_c383 {
    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 */
  .caption-af6e,
  .gradient_efb0,
  .row-8800,
  .focused_4284,
  .static-92f9,
  .top-2ef8,
  .overlay_0461,
  .pattern-prev-2361,
  .title_e527,
  .old-94a6 {
    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 */
  .left-0752 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .last_1db4 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .mask_9104 {
    flex-shrink: 0;
  }

  .card_steel_2336 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .icon-fcb7,
  .upper-046c {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .upper-046c {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .out-9def {
    display: none;
  }

  /* Show mobile actions */
  .medium_db70 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .title-35c5 {
    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;
  }

  .title-35c5 svg {
    flex-shrink: 0;
  }

  .title-35c5 .bottom-aaeb {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .title-35c5 .avatar-f07e {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .progress_under_15b2 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .pro-bc31 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .title-35c5:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .bottom_008c {
    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;
  }

  .bottom_008c.fn-active-9cf5 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .bottom_008c li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .bottom_008c li:last-child {
    border-bottom: none;
  }

  .bottom_008c a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .row-left-8474 {
    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;
  }

  .row-left-8474 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .row-left-8474 li:last-child {
    border-bottom: none;
  }

  .row-left-8474 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .preview_f617 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .dark-5eaa {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .gas-e1d3,
  .warm-c3c9 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .gas-e1d3 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .warm-c3c9 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .row-left-8474.fn-active-9cf5 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hidden-9cb4 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .list_5a22 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .texture_c584 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .sidebar-0c0f {
    margin-top: 0;
  }

  /* Hero section */
  .sidebar-0c0f {
    padding: 2rem 0 1.5rem;
  }

  .icon_c383 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .title_e527 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .yellow_b710 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .bronze-fc81 {
    max-width: 100%;
    border-radius: 8px;
  }

  .link_487d {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hero-5b9d {
    padding: 1rem;
  }

  .nav-paper-d5fa {
    font-size: 1.5rem;
  }

  .short_0a58 {
    font-size: 0.75rem;
  }

  .pattern-prev-2361 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .box_mini_450c {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .box_mini_450c .form_1138 {
    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 */
  .breadcrumb_cold_a034 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .card-short-f499 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .copper-42ec {
    margin-bottom: 1rem;
  }

  /* Author */
  .dynamic_d75d {
    flex-direction: column;
  }

  .content-1e45 {
    flex-direction: column;
  }

  /* Quotes */
  .static-92f9 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .iron-b3c8 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cold_7e82 {
    flex-direction: column;
  }

  .cold_7e82 .form_1138 {
    width: 100%;
  }

  /* Version comparison */
  .banner_brown_3c96 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .copper_705d {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .plasma-5da9 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .heading-light-779e {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .caption_15f0,
  .grid_4b96,
  .bronze_a2fe,
  .block-dark-41cb,
  .new-17c3,
  .last_c2d4 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .caption_15f0 table,
  .grid_4b96 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .west_881a {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .column_f0ba {
    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;
  }

  .fast_842b {
    font-size: 1.25rem !important;
  }

  .icon_c383 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .list_5a22 {
    position: fixed;
  }

  .texture_c584 {
    padding: 0.625rem 0;
  }

  .row_basic_09a9 img {
    height: 26px;
  }

  .row-left-8474 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .bottom_008c {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .title-35c5 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .title-35c5 svg {
    width: 18px;
    height: 18px;
  }

  .title-35c5 .bottom-aaeb {
    font-size: 0.7rem;
  }

  .title-35c5 .avatar-f07e {
    font-size: 0.65rem;
  }

  .gas-e1d3,
  .warm-c3c9 {
    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, .column_f0ba, .slow-1071, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .yellow_b710 {
    padding: 1rem;
  }

  .link_487d {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hero-5b9d {
    padding: 0.875rem;
  }

  .nav-paper-d5fa {
    font-size: 1.25rem;
  }

  .box_mini_450c .form_1138 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .icon_c383 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .form_1138 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .liquid_8e55 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .card-short-f499 {
    padding: 1rem;
  }

  .copper-42ec span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .caption-af6e,
  .main-e061,
  .summary_4442,
  .photo-603c {
    padding: 1rem;
  }
}

@media print {
  .list_5a22,
  .detail-161c,
  .hidden-9cb4,
  .form_1138,
  .wide-12c5 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .column_f0ba {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.tabs-fac6 {
  margin-bottom: 3rem;
  text-align: center;
}

.fast_842b {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.block-tall-21fa {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.accordion_5d7a,
.slider_orange_3f5c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.footer-ddac {
  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;
}

.footer-ddac:hover {
  transform: translateY(-5px);
}

.footer-ddac strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.footer-ddac span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.focus_yellow_8565 {
  margin: 3rem 0;
}

.description_dd57 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.upper_cbbe {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.upper_cbbe:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.disabled-copper-cc06 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.accordion-28b5 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.avatar_slow_b54a {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.cold_3ad6 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.button-0f99 {
  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;
}

.button-0f99:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.button-0f99.hard_94ce {
  border-left: 4px solid var(--primary-color);
}

.link_9dfa {
  flex-shrink: 0;
}

.link_9dfa svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.pattern_4660 {
  flex: 1;
}

.pattern_4660 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.heading_fast_7bdd {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.first_6466,
.image_599b,
.component-basic-90fc {
  margin-bottom: 1.5rem;
}

.first_6466 h4,
.image_599b h4,
.component-basic-90fc h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.first_6466 ul,
.image_599b ul,
.component-basic-90fc ul {
  list-style: none;
  padding: 0;
}

.first_6466 li,
.image_599b li,
.component-basic-90fc li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.first_6466 li:before,
.image_599b li:before,
.component-basic-90fc li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.caption_5e29 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.caption_5e29 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;
}

.caption_5e29 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.gold_ffe3 { margin: 2rem 0; }
.glass_4d95 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.glass_4d95 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.old_0fef p { margin-bottom: 1rem; line-height: 1.7; }
.old_0fef strong { color: var(--text-primary); }
.old_0fef ul { list-style: none; padding-left: 0; }
.old_0fef ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.old_0fef ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.header-light-0437 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.active-right-7722 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.active-right-7722:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.table_fluid_1ed7 { font-size: 3rem; margin-bottom: 1rem; }
.active-right-7722 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.active-right-7722 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.video-bad3 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.video-bad3 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.panel-9c3c { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.under-77e5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.prev-1f58 { text-align: center; }
.detail-81c5 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.middle_ec20 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.hard_3c9e { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.hidden_paper_c229 { margin: 2rem 0; }
.row_stone_fc8d { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.row_stone_fc8d h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.row_stone_fc8d p, .row_stone_fc8d ul { line-height: 1.7; }
.row_stone_fc8d ul { list-style: none; padding-left: 0; }
.row_stone_fc8d ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.row_stone_fc8d ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.layout-last-ecd9 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.nav-fluid-3b87 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.text-mini-abdd { text-align: center; }
.content-slow-36a3 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.tabs_simple_c3ea { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.list_853e { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.modal-glass-8abf { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.yellow-9851 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.yellow-9851:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.yellow-9851 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.yellow-9851 p, .yellow-9851 ul { line-height: 1.7; }
.yellow-9851 ul { list-style: none; padding-left: 0; }
.yellow-9851 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.yellow-9851 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 9047 */
.ghost-box-l1 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.2;
}
