/* ============================================
   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 */
.thumbnail_wide_f5b9 p,
.slider-under-8731,
.article-stale-918d,
.first_e88c,
.text-blue-277d,
.preview_3e87,
.block_1a14,
.thumbnail_31ce {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.up_ad6e {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.up_ad6e > *,
.background-ba40,
.thumbnail_wide_f5b9,
.middle_a906 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .up_ad6e {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .up_ad6e {
    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 === */
.feature-032f {
  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 */
.feature-032f.focus_copper_73a8 {
  box-shadow: var(--shadow-md);
}

.mask_mini_1e09 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.wrapper_3780 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.sidebar-under-01c8 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.steel-58ef {
  display: none;
}

/* Hide mobile actions on desktop */
.content_top_83a6 {
  display: none;
}

.shadow_west_80c3 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.shadow_west_80c3 a:hover,
.shadow_west_80c3 a.fn-active-6425 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.link_bright_8709 {
  margin-left: 1rem;
}

.column_wide_0442 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.thumbnail-orange-4504,
.huge-9223 {
  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;
}

.thumbnail-orange-4504 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.thumbnail-orange-4504: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;
}

.huge-9223 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.huge-9223: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;
}

.thumbnail-orange-4504 svg,
.huge-9223 svg {
  flex-shrink: 0;
}

.warm_4eeb {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.label_fa6b {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.label_fa6b::before,
.label_fa6b::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.label_fa6b::before {
  top: -7px;
}

.label_fa6b::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.nav_white_ef8a {
  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 === */
.highlight-056c {
  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);
}

.gallery-4394 {
  margin: 0 0 2rem;
  text-align: center;
}

.clean_9a46 {
  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;
}

.clean_9a46:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.yellow-db0e {
  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);
}

.yellow-db0e strong {
  color: var(--primary-color);
  font-weight: 700;
}

.fresh_0129 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.table-thick-3e6a {
  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-thick-3e6a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.hero_c096 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.item_91e5 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.medium_3f77 {
  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);
}

.medium_3f77 .avatar-up-754f {
  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;
}

.medium_3f77 .avatar-up-754f svg {
  flex-shrink: 0;
}

.medium_3f77 .tag_9d2e {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.medium_3f77 .tag_9d2e: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);
}

.medium_3f77 .active-thick-9920 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.medium_3f77 .active-thick-9920: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) {
  .highlight-056c {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .clean_9a46 {
    max-width: 100%;
  }

  .fresh_0129 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .table-thick-3e6a {
    padding: 1rem;
  }

  .hero_c096 {
    font-size: 1.5rem;
  }

  .item_91e5 {
    font-size: 0.75rem;
  }

  .yellow-db0e {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .medium_3f77 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .medium_3f77 .avatar-up-754f {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .fresh_0129 {
    grid-template-columns: 1fr;
  }
}

.last-4e65 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.steel-e668 {
  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 === */
.surface_070b {
  margin-bottom: 2.5rem;
}

.card-iron-2302 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.last-4e65 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.progress_893c {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mask_ccb1 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.container-c7cb {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.aside-mini-f90b {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.link-fixed-7671 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.background-warm-d08d {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.notice-paper-1618 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.notice-paper-1618 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.title-21e8 {
  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);
}

.sort-a17b {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.link_first_a67e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.next_e9f7 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.table_fe80 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.sidebar_d56e {
  display: grid;
  gap: 1rem;
}

.dim_8bce {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.bronze-a807 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.purple-458e {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.heading_over_8adf {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.tertiary-e84e {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.content-e91d {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.content-e91d p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.slider-under-8731 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.slider_34b4 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.selected-4b2a {
  display: grid;
  gap: 2rem;
}

.image-4885 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.mask_ccb1 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.progress_893c {
  flex: 1;
}

.aside-mini-f90b {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.aside-mini-f90b a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.label_fc50 {
  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;
}

.link-fixed-7671 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.search_8096 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.search_8096 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.item_c2a0 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.item_c2a0 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.hidden-active-76ec {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.hidden-active-76ec strong {
  display: block;
  margin-bottom: 0.75rem;
}

.hidden-active-76ec ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hidden-active-76ec li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.alert-21b5 {
  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 === */
.photo_fluid_d2aa {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.item_cf99 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.container-iron-c4fa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.notice-current-9cab h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.notice-current-9cab ol {
  list-style: none;
  counter-reset: toc-counter;
}

.notice-current-9cab ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.notice-current-9cab 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;
}

.notice-current-9cab ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.notice-current-9cab ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.thumbnail_wide_f5b9 {
  padding: 3rem 0 5rem;
}

.middle_a906 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.middle_a906.surface-7668 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.article-stale-918d {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.tall_cb44 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.bronze-cfb4 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.bronze-cfb4 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.frame-white-3025 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.badge-tiny-e220 {
  text-align: center;
}

.red-cf3e {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.popup-fc25 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.panel_smooth_fc17 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.preview_3e87 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.first_e88c {
  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;
}

.first_e88c * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.first_e88c:hover {
  box-shadow: var(--shadow-lg);
}

.first_e88c.tag_short_3e70 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.first_e88c h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.first_e88c ul {
  margin: 1rem 0;
}

.first_e88c li {
  margin-bottom: 0.75rem;
}

.media_stale_f2e1 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.advanced_866c {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.advanced_866c a {
  font-weight: 600;
}

/* === Data Tables === */
.active_2a3b {
  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_2a3b table {
  width: 100%;
  min-width: 600px;
}

.active_2a3b thead {
  background-color: var(--primary-color);
  color: white;
}

.active_2a3b th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.active_2a3b td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.active_2a3b tbody tr:hover {
  background-color: var(--bg-secondary);
}

.active_2a3b tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.article_2341 {
  list-style: none;
  margin: 1.5rem 0;
}

.article_2341 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.article_2341 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.selected_8092::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-6425::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 === */
.panel_next_b1df {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.section_under_09bd {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.section_under_09bd img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.section_under_09bd strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.section_under_09bd span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.panel_next_b1df blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.block_1a14 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.block_1a14::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.frame-west-5eb0 {
  position: relative;
  margin-bottom: 3rem;
}

.pagination_inner_c0ef {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.pagination_inner_c0ef .hidden-in-8087 {
  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;
}

.widget-82e6 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.widget-82e6 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.widget-82e6 ul {
  margin: 1rem 0;
}

.widget-82e6 li {
  margin-bottom: 0.75rem;
}

.input-tall-d6ca {
  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 === */
.surface_down_81ec {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.surface_down_81ec h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.modal_1c80 {
  list-style: none;
  margin: 1.5rem 0;
}

.modal_1c80 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.modal_1c80 a {
  font-weight: 600;
}

.dynamic_4520 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.thumbnail_31ce {
  margin: 2.5rem 0;
}

.action_7194 {
  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;
}

.action_7194:hover {
  box-shadow: var(--shadow-lg);
}

.action_7194.dim_d893 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.yellow_fb3a {
  flex-shrink: 0;
}

.yellow_fb3a 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);
}

.menu_hard_056f h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.heading-soft-3864,
.frame-over-33f0,
.footer_south_1e21 {
  width: 100%;
  margin: 1.5rem 0;
}

.focus-action-fdea {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.focus-action-fdea strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.layout-prev-1665 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.layout-prev-1665 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.tertiary_stone_a6b7 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.tertiary_stone_a6b7 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.left_e933 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.fresh_4df7 {
  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;
}

.fresh_4df7:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.fresh_4df7.gas-4626 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.fresh_4df7 .short_f2f4 {
  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;
}

.fresh_4df7 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.label-cool-cefa {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.info_short_012e {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.info_short_012e label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.stone-7370 {
  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 === */
.avatar-up-754f {
  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;
}

.tag_9d2e {
  background-color: var(--primary-color);
  color: white;
}

.tag_9d2e:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.active-thick-9920 {
  background-color: var(--text-secondary);
  color: white;
}

.active-thick-9920:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.outline_a779 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.outline_a779:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.huge_15b1 {
  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;
}

.huge_15b1:hover {
  background-color: var(--primary-dark);
}

.link-active-9b52 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.avatar-f23b {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.border-bright-c794 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.grid_steel_24b5 {
  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 === */
.outer_3ff7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.wrapper_2e5e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.wrapper_2e5e h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.first_90ba {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.shadow_plasma_f2de {
  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;
}

.article_f0f6 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.widget-top-1ec6 {
  list-style: none;
  counter-reset: rank-counter;
}

.widget-top-1ec6 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.widget-top-1ec6 li::before {
  content: counter(rank-counter);
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
}

.gallery_pink_edb3 {
  list-style: none;
}

.gallery_pink_edb3 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.modal-fixed-ffb4 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.primary_cold_9ed9 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.primary_cold_9ed9 .surface-complex-e519 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.primary_cold_9ed9 .notification_east_658a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.button-stale-c7e3 {
  margin-top: 3rem;
}

.dim-509a {
  width: 100%;
}

.red-a213 {
  background-color: #fef3c7;
}

.pagination_5959 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.solid-ad8c {
  margin: 3rem 0;
}

.carousel-22d3 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.popup-thick-5a1d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.popup-thick-5a1d:hover {
  box-shadow: var(--shadow-lg);
}

.popup-thick-5a1d.disabled-a8de {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.hovered-27bb {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.message_7223 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.message_7223 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.section_left_c1a4 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.popup-thick-5a1d blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.text-white-d6c8 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.stone-4066 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.wrapper_f3b6 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.video_orange_4442 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.fast_1e15 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.tall_efce {
  margin-top: 1rem;
}

/* === FAQ Section === */
.solid-f88c {
  max-width: 900px;
  margin: 0 auto;
}

.border_3c7f {
  margin: 2rem 0;
}

.search-bbcc {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.search-bbcc summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.search-bbcc summary::-webkit-details-marker {
  display: none;
}

.search-bbcc summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.inner-3b6b {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.search-bbcc[open] .inner-3b6b {
  transform: rotate(45deg);
}

.nav-soft-958a {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.nav-soft-958a p:last-child {
  margin-bottom: 0;
}

.title-large-f874 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.east_b9d1 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.hovered-0d8a {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.hovered-0d8a p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.hovered-0d8a .avatar-up-754f {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.shadow_clean_b8e7 {
  max-width: 900px;
  margin: 0 auto;
}

.background_dim_7864 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.full_6401 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.full_6401.fn-success-6425 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.button_dirty_6159 {
  font-size: 3rem;
  line-height: 1;
}

.west_5eea h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.photo_bf4e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stone-4d53,
.light-52ab {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.stone-4d53 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.light-52ab h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.narrow_44a6,
.main-e3f5 {
  margin: 1.5rem 0;
}

.narrow_44a6 li,
.main-e3f5 li {
  margin-bottom: 1rem;
}

.picture_5a66 {
  margin: 3rem 0;
}

.frame_3812 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.frame_3812 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.frame_3812 ol {
  margin: 1rem 0;
}

.frame_3812 li {
  margin-bottom: 0.75rem;
}

.pagination-fffb {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.layout_cab3 {
  margin: 2rem 0;
}

.photo-outer-3f89 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.shade-7c30 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.table_glass_54c8 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.preview_0bf9 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.top_6316 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.brown_f6e9 {
  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;
}

.brown_f6e9 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.container-c7cb {
  flex: 1;
}

.container-c7cb h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.fixed-6051 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.stale-0c50 p {
  margin-bottom: 1rem;
}

.preview-full-ab1c {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.tertiary-next-f88c {
  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-8522 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.mask-8522 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.border-4614 h3 {
  margin-bottom: 1.5rem;
}

.table_156e {
  display: grid;
  gap: 2rem;
}

.tertiary-ca4c {
  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;
}

.tertiary-ca4c img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.tertiary-ca4c h4 {
  margin: 0 0 0.25rem;
}

.tertiary-ca4c p {
  margin: 0;
  font-size: 0.9375rem;
}

.out-9a49 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.border-428f {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.border-428f h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.border-428f ul {
  margin: 1.5rem 0;
}

.border-428f li {
  margin-bottom: 0.75rem;
}

.dim_3140 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.modal_hard_9e43 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.thick_9e2e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.dropdown_8bde h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.dropdown_8bde p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.dynamic-651e {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.dynamic-651e a {
  color: rgba(255, 255, 255, 0.8);
}

.modal_prev_cd86 {
  list-style: none;
}

.modal_prev_cd86 li {
  margin-bottom: 0.75rem;
}

.modal_prev_cd86 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.modal_prev_cd86 a:hover {
  color: white;
}

.right-5adb {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.hover_smooth_1645 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.gallery-785a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.menu-ccda {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.summary_6905 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .up_ad6e {
    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;
  }

  .button-8327 {
    font-size: 1.5rem !important;
  }

  .card-iron-2302 {
    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 */
  .first_e88c,
  .text-blue-277d,
  .widget-82e6,
  .menu_hard_056f,
  .hovered-27bb,
  .popup-thick-5a1d,
  .nav-soft-958a,
  .yellow-db0e,
  .slider-under-8731,
  .article-stale-918d {
    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 */
  .last-4e65 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .progress_893c {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .mask_ccb1 {
    flex-shrink: 0;
  }

  .container-c7cb {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .aside-mini-f90b,
  .link-fixed-7671 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .link-fixed-7671 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .sidebar-under-01c8 {
    display: none;
  }

  /* Show mobile actions */
  .content_top_83a6 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .full_e1af {
    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;
  }

  .full_e1af svg {
    flex-shrink: 0;
  }

  .full_e1af .east_9aab {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .full_e1af .notice_0fe8 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .chip_brown_e42d {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .outline_full_1dc2 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .full_e1af:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .steel-58ef {
    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;
  }

  .steel-58ef.fn-active-6425 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .steel-58ef li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .steel-58ef li:last-child {
    border-bottom: none;
  }

  .steel-58ef a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .shadow_west_80c3 {
    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;
  }

  .shadow_west_80c3 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .shadow_west_80c3 li:last-child {
    border-bottom: none;
  }

  .shadow_west_80c3 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .link_bright_8709 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .column_wide_0442 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .thumbnail-orange-4504,
  .huge-9223 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .thumbnail-orange-4504 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .huge-9223 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .shadow_west_80c3.fn-active-6425 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .warm_4eeb {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .feature-032f {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .mask_mini_1e09 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .nav_white_ef8a {
    margin-top: 0;
  }

  /* Hero section */
  .nav_white_ef8a {
    padding: 2rem 0 1.5rem;
  }

  .card-iron-2302 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .slider-under-8731 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .highlight-056c {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .clean_9a46 {
    max-width: 100%;
    border-radius: 8px;
  }

  .fresh_0129 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .table-thick-3e6a {
    padding: 1rem;
  }

  .hero_c096 {
    font-size: 1.5rem;
  }

  .item_91e5 {
    font-size: 0.75rem;
  }

  .yellow-db0e {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .medium_3f77 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .medium_3f77 .avatar-up-754f {
    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 */
  .container-iron-c4fa {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .action_7194 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .yellow_fb3a {
    margin-bottom: 1rem;
  }

  /* Author */
  .image-4885 {
    flex-direction: column;
  }

  .brown_f6e9 {
    flex-direction: column;
  }

  /* Quotes */
  .hovered-27bb {
    flex-direction: column;
  }

  /* Pros/Cons */
  .photo_bf4e {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .preview_0bf9 {
    flex-direction: column;
  }

  .preview_0bf9 .avatar-up-754f {
    width: 100%;
  }

  /* Version comparison */
  .left_e933 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .outer_3ff7 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .thick_9e2e {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery-785a {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .active_2a3b,
  .frame-over-33f0,
  .notice_0acb,
  .dim-509a,
  .heading-soft-3864,
  .footer_south_1e21 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .active_2a3b table,
  .frame-over-33f0 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .stone-7370 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .up_ad6e {
    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;
  }

  .button-8327 {
    font-size: 1.25rem !important;
  }

  .card-iron-2302 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .feature-032f {
    position: fixed;
  }

  .mask_mini_1e09 {
    padding: 0.625rem 0;
  }

  .wrapper_3780 img {
    height: 26px;
  }

  .shadow_west_80c3 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .steel-58ef {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .full_e1af {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .full_e1af svg {
    width: 18px;
    height: 18px;
  }

  .full_e1af .east_9aab {
    font-size: 0.7rem;
  }

  .full_e1af .notice_0fe8 {
    font-size: 0.65rem;
  }

  .thumbnail-orange-4504,
  .huge-9223 {
    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, .up_ad6e, .background-ba40, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .highlight-056c {
    padding: 1rem;
  }

  .fresh_0129 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .table-thick-3e6a {
    padding: 0.875rem;
  }

  .hero_c096 {
    font-size: 1.25rem;
  }

  .medium_3f77 .avatar-up-754f {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .card-iron-2302 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .avatar-up-754f {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .link-active-9b52 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .action_7194 {
    padding: 1rem;
  }

  .yellow_fb3a span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .first_e88c,
  .huge-8ea1,
  .logo_a4e1,
  .border-over-f58b {
    padding: 1rem;
  }
}

@media print {
  .feature-032f,
  .photo_fluid_d2aa,
  .warm_4eeb,
  .avatar-up-754f,
  .modal_hard_9e43 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .up_ad6e {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.over-16b8 {
  margin-bottom: 3rem;
  text-align: center;
}

.button-8327 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.badge_eff7 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.module_9318,
.popup_c74a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-green-38e1 {
  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;
}

.info-green-38e1:hover {
  transform: translateY(-5px);
}

.info-green-38e1 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.info-green-38e1 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.paragraph-84a7 {
  margin: 3rem 0;
}

.backdrop-small-5383 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.main-59ae {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.main-59ae:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.description-hard-3d07 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.article-3734 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.advanced_d2e8 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.brown-4ed6 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.huge_0a60 {
  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;
}

.huge_0a60:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.huge_0a60.down_8d16 {
  border-left: 4px solid var(--primary-color);
}

.light-179d {
  flex-shrink: 0;
}

.light-179d svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.nav-south-c077 {
  flex: 1;
}

.nav-south-c077 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.dropdown_2a5c {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.fast_6657,
.carousel-liquid-765a,
.huge_27bd {
  margin-bottom: 1.5rem;
}

.fast_6657 h4,
.carousel-liquid-765a h4,
.huge_27bd h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fast_6657 ul,
.carousel-liquid-765a ul,
.huge_27bd ul {
  list-style: none;
  padding: 0;
}

.fast_6657 li,
.carousel-liquid-765a li,
.huge_27bd li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.fast_6657 li:before,
.carousel-liquid-765a li:before,
.huge_27bd li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.layout_2222 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.layout_2222 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;
}

.layout_2222 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.pagination-f57b { margin: 2rem 0; }
.new_3e9a { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.new_3e9a h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.avatar-d6e6 p { margin-bottom: 1rem; line-height: 1.7; }
.avatar-d6e6 strong { color: var(--text-primary); }
.avatar-d6e6 ul { list-style: none; padding-left: 0; }
.avatar-d6e6 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.avatar-d6e6 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.large-987f { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.table-new-15bf { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.table-new-15bf:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.south_fd7d { font-size: 3rem; margin-bottom: 1rem; }
.table-new-15bf h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.table-new-15bf p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.thumbnail-a968 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.thumbnail-a968 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.preview-complex-0b3b { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.wrapper-cff8 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.label-678c { text-align: center; }
.media_3774 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.menu-brown-a182 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.panel_dynamic_2e71 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.detail_lite_7ff2 { margin: 2rem 0; }
.yellow_f24c { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.yellow_f24c h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.yellow_f24c p, .yellow_f24c ul { line-height: 1.7; }
.yellow_f24c ul { list-style: none; padding-left: 0; }
.yellow_f24c ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.yellow_f24c ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.border-lower-aead { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.icon-wide-c65b { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.south-d69b { text-align: center; }
.pagination_3c72 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.logo-32f0 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.selected-1f48 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.element_9d6d { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.dynamic-e634 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.dynamic-e634:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.dynamic-e634 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.dynamic-e634 p, .dynamic-e634 ul { line-height: 1.7; }
.dynamic-e634 ul { list-style: none; padding-left: 0; }
.dynamic-e634 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.dynamic-e634 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 5091 */
.shadow-element-h9 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.2;
}
