/* ============================================
   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 */
.bottom_3703 p,
.new_efaa,
.first-712f,
.image-west-df05,
.tall_e7ba,
.stale_a621,
.tooltip_outer_4623,
.nav-99dd {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.chip-3507 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.chip-3507 > *,
.disabled_cold_eca7,
.bottom_3703,
.image_dim_c5e0 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .chip-3507 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .chip-3507 {
    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 === */
.green-f636 {
  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 */
.green-f636.caption_338f {
  box-shadow: var(--shadow-md);
}

.accordion_cb79 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.secondary-new-49ac img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.progress_first_1abb {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.modal-outer-3e96 {
  display: none;
}

/* Hide mobile actions on desktop */
.row-1bb0 {
  display: none;
}

.backdrop_ca13 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.backdrop_ca13 a:hover,
.backdrop_ca13 a.fn-active-d523 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.shade-899c {
  margin-left: 1rem;
}

.under-f6cd {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.layout-soft-e98e,
.badge_last_737a {
  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;
}

.layout-soft-e98e {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.layout-soft-e98e: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;
}

.badge_last_737a {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.badge_last_737a: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;
}

.layout-soft-e98e svg,
.badge_last_737a svg {
  flex-shrink: 0;
}

.image-pressed-e8d8 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.border_d108 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.border_d108::before,
.border_d108::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.border_d108::before {
  top: -7px;
}

.border_d108::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.module-lite-936c {
  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 === */
.gallery-9ab8 {
  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);
}

.filter-eac5 {
  margin: 0 0 2rem;
  text-align: center;
}

.content-gas-4cfc {
  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;
}

.content-gas-4cfc:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.hero-69da {
  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);
}

.hero-69da strong {
  color: var(--primary-color);
  font-weight: 700;
}

.wood_8dc4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.table-complex-28cb {
  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;
}

.table-complex-28cb:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.cold_7947 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section_60e9 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.hover-complex-934f {
  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);
}

.hover-complex-934f .silver-8395 {
  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;
}

.hover-complex-934f .silver-8395 svg {
  flex-shrink: 0;
}

.hover-complex-934f .over_c3c1 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.hover-complex-934f .over_c3c1: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);
}

.hover-complex-934f .fast-215d {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.hover-complex-934f .fast-215d: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) {
  .gallery-9ab8 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .content-gas-4cfc {
    max-width: 100%;
  }

  .wood_8dc4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .table-complex-28cb {
    padding: 1rem;
  }

  .cold_7947 {
    font-size: 1.5rem;
  }

  .section_60e9 {
    font-size: 0.75rem;
  }

  .hero-69da {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .hover-complex-934f {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .hover-complex-934f .silver-8395 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .wood_8dc4 {
    grid-template-columns: 1fr;
  }
}

.banner_left_9639 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.element-277d {
  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 === */
.text_cold_dbf6 {
  margin-bottom: 2.5rem;
}

.info-dirty-e244 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.banner_left_9639 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.surface-92d0 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info-bronze-cccf {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.notice-short-ca56 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.purple_68c8 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.shade_short_897f {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.fresh-d068 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-d449 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-d449 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.wood-9491 {
  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);
}

.primary-cold-5b6f {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.dim-7f67 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tag-motion-b7b8 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.sidebar_yellow_3a5d {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.rough-de42 {
  display: grid;
  gap: 1rem;
}

.tag_330c {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.action_993c {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.aside-slow-ca45 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.section-lower-021c {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.element-in-117c {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.dark_19f8 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.dark_19f8 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.new_efaa {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.search-tiny-8a3f {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.title_north_31b6 {
  display: grid;
  gap: 2rem;
}

.column-clean-43a9 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.info-bronze-cccf {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.surface-92d0 {
  flex: 1;
}

.purple_68c8 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.purple_68c8 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.hero_purple_7c43 {
  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;
}

.shade_short_897f {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.icon-plasma-e77b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.icon-plasma-e77b span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.detail-f0cf {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.detail-f0cf a {
  font-size: 0.875rem;
  font-weight: 500;
}

.gas_1ca5 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.gas_1ca5 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.gas_1ca5 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gas_1ca5 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.module_f14c {
  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 === */
.grid_dynamic_b7b1 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.old-8275 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.thumbnail-f62a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.south_d07d h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.south_d07d ol {
  list-style: none;
  counter-reset: toc-counter;
}

.south_d07d ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.south_d07d 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;
}

.south_d07d ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.south_d07d ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.bottom_3703 {
  padding: 3rem 0 5rem;
}

.image_dim_c5e0 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.image_dim_c5e0.accordion_bdcc {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.first-712f {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.heading_pressed_1306 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.block-cc48 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.block-cc48 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.pressed-99c5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.outer-58b4 {
  text-align: center;
}

.column-7fdb {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.caption-5240 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.tooltip-fresh-57f6 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.stale_a621 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.image-west-df05 {
  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;
}

.image-west-df05 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.image-west-df05:hover {
  box-shadow: var(--shadow-lg);
}

.image-west-df05.logo-ff67 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.image-west-df05 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.image-west-df05 ul {
  margin: 1rem 0;
}

.image-west-df05 li {
  margin-bottom: 0.75rem;
}

.video_0125 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.dim_19b8 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.dim_19b8 a {
  font-weight: 600;
}

/* === Data Tables === */
.active_advanced_dc84 {
  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;
}

.active_advanced_dc84 table {
  width: 100%;
  min-width: 600px;
}

.active_advanced_dc84 thead {
  background-color: var(--primary-color);
  color: white;
}

.active_advanced_dc84 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.active_advanced_dc84 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.active_advanced_dc84 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.active_advanced_dc84 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.accent-fluid-d7c0 {
  list-style: none;
  margin: 1.5rem 0;
}

.accent-fluid-d7c0 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.accent-fluid-d7c0 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.narrow_e02b::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-d523::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 === */
.basic-df42 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.over-8bae {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.over-8bae img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.over-8bae strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.over-8bae span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.basic-df42 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.tooltip_outer_4623 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.tooltip_outer_4623::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.mask_86df {
  position: relative;
  margin-bottom: 3rem;
}

.column_tiny_4801 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.column_tiny_4801 .wood-1166 {
  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;
}

.paper-74b6 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.paper-74b6 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.paper-74b6 ul {
  margin: 1rem 0;
}

.paper-74b6 li {
  margin-bottom: 0.75rem;
}

.avatar_hot_f315 {
  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 === */
.sidebar-stone-2c5d {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.sidebar-stone-2c5d h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.thumbnail-yellow-c1b0 {
  list-style: none;
  margin: 1.5rem 0;
}

.thumbnail-yellow-c1b0 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.thumbnail-yellow-c1b0 a {
  font-weight: 600;
}

.solid_89fc {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.nav-99dd {
  margin: 2.5rem 0;
}

.green_65db {
  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;
}

.green_65db:hover {
  box-shadow: var(--shadow-lg);
}

.green_65db.detail-prev-3786 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.media-fresh-88dc {
  flex-shrink: 0;
}

.media-fresh-88dc 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);
}

.text-wood-846d h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.box-wood-26a7,
.plasma_2d12,
.banner_1b92 {
  width: 100%;
  margin: 1.5rem 0;
}

.card_ad80 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.card_ad80 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.hot_16ad {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.hot_16ad strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.north-ff21 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.north-ff21 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.grid-69fb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.article_e596 {
  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;
}

.article_e596:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.article_e596.chip-26ba {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.article_e596 .soft_5e1b {
  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;
}

.article_e596 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.shadow-copper-e44e {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.gallery_398d {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.gallery_398d label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.carousel-south-dfdf {
  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 === */
.silver-8395 {
  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;
}

.over_c3c1 {
  background-color: var(--primary-color);
  color: white;
}

.over_c3c1:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.fast-215d {
  background-color: var(--text-secondary);
  color: white;
}

.fast-215d:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.focus_basic_bee5 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.focus_basic_bee5:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.avatar-solid-97ad {
  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;
}

.avatar-solid-97ad:hover {
  background-color: var(--primary-dark);
}

.content-silver-0cd9 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.hero_first_1420 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.alert-b863 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.tall_9aad {
  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 === */
.fast-ed72 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.avatar-right-4517 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.avatar-right-4517 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.heading-clean-0e97 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.wrapper-e5b9 {
  flex: 1;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
}

.hot-460e {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.logo-e9f8 {
  list-style: none;
  counter-reset: rank-counter;
}

.logo-e9f8 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.logo-e9f8 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;
}

.column_4a6d {
  list-style: none;
}

.column_4a6d li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.progress-glass-d19d {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.highlight-short-1c08 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.highlight-short-1c08 .wrapper-tall-ef52 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.highlight-short-1c08 .notice_old_aae3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.footer_a564 {
  margin-top: 3rem;
}

.image-stale-6f05 {
  width: 100%;
}

.hidden-silver-be43 {
  background-color: #fef3c7;
}

.wide_024b {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.background-9926 {
  margin: 3rem 0;
}

.icon_55fd {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.first_6d78 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.first_6d78:hover {
  box-shadow: var(--shadow-lg);
}

.first_6d78.backdrop-ea19 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.pagination_north_14b6 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.pattern-7b28 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.pattern-7b28 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.black-fb7f {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.first_6d78 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.stale_d236 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.backdrop_hard_ec3f {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.grid_action_8b43 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.warm-4bdb {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.paragraph_6d74 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.form_6d38 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.secondary_huge_050a {
  max-width: 900px;
  margin: 0 auto;
}

.overlay-cf20 {
  margin: 2rem 0;
}

.menu-static-831c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.menu-static-831c summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.menu-static-831c summary::-webkit-details-marker {
  display: none;
}

.menu-static-831c summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.steel_5168 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.menu-static-831c[open] .steel_5168 {
  transform: rotate(45deg);
}

.hero_lower_62e0 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.hero_lower_62e0 p:last-child {
  margin-bottom: 0;
}

.clean_1a8f {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.link-4d54 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.medium_259b {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.medium_259b p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.medium_259b .silver-8395 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.link_dirty_6dbd {
  max-width: 900px;
  margin: 0 auto;
}

.dim_58c2 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.tooltip-stone-be27 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.tooltip-stone-be27.fn-success-d523 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.narrow-8bea {
  font-size: 3rem;
  line-height: 1;
}

.surface_huge_b76f h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.alert-8a40 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.carousel-1211,
.focus-30d2 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.carousel-1211 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.focus-30d2 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.right_bde1,
.aside-9ba9 {
  margin: 1.5rem 0;
}

.right_bde1 li,
.aside-9ba9 li {
  margin-bottom: 1rem;
}

.tag_5e88 {
  margin: 3rem 0;
}

.gallery-c992 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.gallery-c992 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.gallery-c992 ol {
  margin: 1rem 0;
}

.gallery-c992 li {
  margin-bottom: 0.75rem;
}

.badge_bottom_fd7d {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.easy_c3e0 {
  margin: 2rem 0;
}

.complex-0b20 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.hover_6029 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.over-2e86 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.content-gas-9267 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.content-2736 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.widget_c199 {
  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;
}

.widget_c199 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.notice-short-ca56 {
  flex: 1;
}

.notice-short-ca56 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.tag_motion_9c12 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.video-c4f1 p {
  margin-bottom: 1rem;
}

.widget-8d87 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.hard_00c8 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.mask-4a40 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.mask-4a40 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.shade_0ee5 h3 {
  margin-bottom: 1.5rem;
}

.next_3c10 {
  display: grid;
  gap: 2rem;
}

.hover-old-1ba6 {
  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;
}

.hover-old-1ba6 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.hover-old-1ba6 h4 {
  margin: 0 0 0.25rem;
}

.hover-old-1ba6 p {
  margin: 0;
  font-size: 0.9375rem;
}

.wide_6ec9 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.iron-9c66 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.iron-9c66 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.iron-9c66 ul {
  margin: 1.5rem 0;
}

.iron-9c66 li {
  margin-bottom: 0.75rem;
}

.first-c866 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.prev-86db {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.wood-51fa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.notice_soft_61b4 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.notice_soft_61b4 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.advanced_68a4 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.advanced_68a4 a {
  color: rgba(255, 255, 255, 0.8);
}

.row_88fe {
  list-style: none;
}

.row_88fe li {
  margin-bottom: 0.75rem;
}

.row_88fe a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.row_88fe a:hover {
  color: white;
}

.active-3be8 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.surface-51c2 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.gold-d662 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.bright_0ba8 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.dim_6aac {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .chip-3507 {
    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;
  }

  .breadcrumb-orange-952e {
    font-size: 1.5rem !important;
  }

  .info-dirty-e244 {
    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 */
  .image-west-df05,
  .tall_e7ba,
  .paper-74b6,
  .text-wood-846d,
  .pagination_north_14b6,
  .first_6d78,
  .hero_lower_62e0,
  .hero-69da,
  .new_efaa,
  .first-712f {
    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 */
  .banner_left_9639 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .surface-92d0 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .info-bronze-cccf {
    flex-shrink: 0;
  }

  .notice-short-ca56 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .purple_68c8,
  .shade_short_897f {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .shade_short_897f {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .progress_first_1abb {
    display: none;
  }

  /* Show mobile actions */
  .row-1bb0 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .video-red-49d4 {
    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;
  }

  .video-red-49d4 svg {
    flex-shrink: 0;
  }

  .video-red-49d4 .pattern-lite-2405 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .video-red-49d4 .component_e301 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .thumbnail_903b {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .nav-brown-8727 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .video-red-49d4:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .modal-outer-3e96 {
    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;
  }

  .modal-outer-3e96.fn-active-d523 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .modal-outer-3e96 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .modal-outer-3e96 li:last-child {
    border-bottom: none;
  }

  .modal-outer-3e96 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .backdrop_ca13 {
    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;
  }

  .backdrop_ca13 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .backdrop_ca13 li:last-child {
    border-bottom: none;
  }

  .backdrop_ca13 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .shade-899c {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .under-f6cd {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .layout-soft-e98e,
  .badge_last_737a {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .layout-soft-e98e {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .badge_last_737a {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .backdrop_ca13.fn-active-d523 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .image-pressed-e8d8 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .green-f636 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .accordion_cb79 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .module-lite-936c {
    margin-top: 0;
  }

  /* Hero section */
  .module-lite-936c {
    padding: 2rem 0 1.5rem;
  }

  .info-dirty-e244 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .new_efaa {
    font-size: 1rem;
  }

  /* Hero brand image */
  .gallery-9ab8 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .content-gas-4cfc {
    max-width: 100%;
    border-radius: 8px;
  }

  .wood_8dc4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .table-complex-28cb {
    padding: 1rem;
  }

  .cold_7947 {
    font-size: 1.5rem;
  }

  .section_60e9 {
    font-size: 0.75rem;
  }

  .hero-69da {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .hover-complex-934f {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .hover-complex-934f .silver-8395 {
    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 */
  .thumbnail-f62a {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .green_65db {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .media-fresh-88dc {
    margin-bottom: 1rem;
  }

  /* Author */
  .column-clean-43a9 {
    flex-direction: column;
  }

  .widget_c199 {
    flex-direction: column;
  }

  /* Quotes */
  .pagination_north_14b6 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .alert-8a40 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .content-gas-9267 {
    flex-direction: column;
  }

  .content-gas-9267 .silver-8395 {
    width: 100%;
  }

  /* Version comparison */
  .grid-69fb {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .fast-ed72 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .wood-51fa {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gold-d662 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .active_advanced_dc84,
  .plasma_2d12,
  .complex_9965,
  .image-stale-6f05,
  .box-wood-26a7,
  .banner_1b92 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .active_advanced_dc84 table,
  .plasma_2d12 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .carousel-south-dfdf {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .chip-3507 {
    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;
  }

  .breadcrumb-orange-952e {
    font-size: 1.25rem !important;
  }

  .info-dirty-e244 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .green-f636 {
    position: fixed;
  }

  .accordion_cb79 {
    padding: 0.625rem 0;
  }

  .secondary-new-49ac img {
    height: 26px;
  }

  .backdrop_ca13 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .modal-outer-3e96 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .video-red-49d4 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .video-red-49d4 svg {
    width: 18px;
    height: 18px;
  }

  .video-red-49d4 .pattern-lite-2405 {
    font-size: 0.7rem;
  }

  .video-red-49d4 .component_e301 {
    font-size: 0.65rem;
  }

  .layout-soft-e98e,
  .badge_last_737a {
    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, .chip-3507, .disabled_cold_eca7, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .gallery-9ab8 {
    padding: 1rem;
  }

  .wood_8dc4 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .table-complex-28cb {
    padding: 0.875rem;
  }

  .cold_7947 {
    font-size: 1.25rem;
  }

  .hover-complex-934f .silver-8395 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .info-dirty-e244 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .silver-8395 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .content-silver-0cd9 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .green_65db {
    padding: 1rem;
  }

  .media-fresh-88dc span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .image-west-df05,
  .list-gas-f100,
  .notice-pressed-d5a6,
  .thumbnail_255b {
    padding: 1rem;
  }
}

@media print {
  .green-f636,
  .grid_dynamic_b7b1,
  .image-pressed-e8d8,
  .silver-8395,
  .prev-86db {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .chip-3507 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.last_504e {
  margin-bottom: 3rem;
  text-align: center;
}

.breadcrumb-orange-952e {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.badge_94de {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.focus_f3af,
.mask-9a2d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.notice_a313 {
  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;
}

.notice_a313:hover {
  transform: translateY(-5px);
}

.notice_a313 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.notice_a313 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.section_f87a {
  margin: 3rem 0;
}

.block-51a8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.mini-b56f {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.mini-b56f:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.dropdown_white_dd75 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.out_a4a2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.progress_6de5 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.overlay_short_3942 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.yellow-0551 {
  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;
}

.yellow-0551:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.yellow-0551.mini-cbb1 {
  border-left: 4px solid var(--primary-color);
}

.disabled-60f3 {
  flex-shrink: 0;
}

.disabled-60f3 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.thumbnail_short_cf58 {
  flex: 1;
}

.thumbnail_short_cf58 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.prev_aabd {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.notice_stale_2428,
.banner-6cf6,
.preview-iron-de8b {
  margin-bottom: 1.5rem;
}

.notice_stale_2428 h4,
.banner-6cf6 h4,
.preview-iron-de8b h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.notice_stale_2428 ul,
.banner-6cf6 ul,
.preview-iron-de8b ul {
  list-style: none;
  padding: 0;
}

.notice_stale_2428 li,
.banner-6cf6 li,
.preview-iron-de8b li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.notice_stale_2428 li:before,
.banner-6cf6 li:before,
.preview-iron-de8b li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.static_3e6c {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.static_3e6c 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;
}

.static_3e6c a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.disabled_07b8 { margin: 2rem 0; }
.feature_b648 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.feature_b648 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.primary_1113 p { margin-bottom: 1rem; line-height: 1.7; }
.primary_1113 strong { color: var(--text-primary); }
.primary_1113 ul { list-style: none; padding-left: 0; }
.primary_1113 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.primary_1113 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.soft-4ea3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.button-white-e193 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.button-white-e193:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.tall_9035 { font-size: 3rem; margin-bottom: 1rem; }
.button-white-e193 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.button-white-e193 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.liquid-055b { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.liquid-055b span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.article_2e8d { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.upper_b4b2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.surface_stale_5fd2 { text-align: center; }
.simple-cce4 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.accent-5521 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.filter_silver_fdab { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.wrapper_3b06 { margin: 2rem 0; }
.carousel_17d9 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.carousel_17d9 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.carousel_17d9 p, .carousel_17d9 ul { line-height: 1.7; }
.carousel_17d9 ul { list-style: none; padding-left: 0; }
.carousel_17d9 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.carousel_17d9 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.texture-90b1 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.layout-9e80 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.wrapper-3974 { text-align: center; }
.backdrop-2f9e { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.complex-da54 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.badge-orange-e63a { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.notification-cold-ee04 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.search-paper-47b5 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.search-paper-47b5:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.search-paper-47b5 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.search-paper-47b5 p, .search-paper-47b5 ul { line-height: 1.7; }
.search-paper-47b5 ul { list-style: none; padding-left: 0; }
.search-paper-47b5 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.search-paper-47b5 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: f919 */
.promo-block-q4 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.2;
}
