/* ============================================
   Modern SEO-Optimized Style for Research Article
   ============================================ */

/* === CSS Reset & Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette - Professional Research Theme */
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --secondary-color: #059669;
  --accent-color: #dc2626;
  --text-primary: #1f2937;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-tertiary: #f3f4f6;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  
  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Merriweather', Georgia, serif;
  
  /* Spacing */
  --container-width: 1200px;
  --section-padding: 5rem;
  --card-padding: 2rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Prevent horizontal overflow - Force word breaking */
img, video, iframe {
  max-width: 100%;
  height: auto;
}

pre, code {
  max-width: 100%;
  overflow-x: auto;
  word-wrap: break-word;
}

/* Force all text elements to break long words */
p, h1, h2, h3, h4, h5, h6, li, td, th, span, div, a, strong, em {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

/* Specific fix for long Indonesian compound words */
.progress-narrow-133b p,
.tooltip_green_31ba,
.copper_754f,
.main-pro-42bf,
.paragraph_dfb8,
.row-orange-2c16,
.breadcrumb_cf4e,
.notice_out_7b66 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.light-fb09 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.light-fb09 > *,
.light_96b0,
.progress-narrow-133b,
.black-f65c {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .light-fb09 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .light-fb09 {
    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 === */
.tag_9cb6 {
  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 */
.tag_9cb6.fresh-8107 {
  box-shadow: var(--shadow-md);
}

.secondary_af49 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.active-65e6 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.lite-e12b {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.hover-7fbb {
  display: none;
}

/* Hide mobile actions on desktop */
.main-3099 {
  display: none;
}

.description_c923 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.description_c923 a:hover,
.description_c923 a.fn-active-b4f4 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.gold-e98c {
  margin-left: 1rem;
}

.title-light-0227 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.chip_silver_e021,
.breadcrumb_1aea {
  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;
}

.chip_silver_e021 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.chip_silver_e021: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;
}

.breadcrumb_1aea {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.breadcrumb_1aea: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;
}

.chip_silver_e021 svg,
.breadcrumb_1aea svg {
  flex-shrink: 0;
}

.full_3e90 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.status_huge_316a {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.status_huge_316a::before,
.status_huge_316a::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.status_huge_316a::before {
  top: -7px;
}

.status_huge_316a::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.photo_8e63 {
  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 === */
.secondary_action_bc92 {
  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);
}

.icon-east-6faf {
  margin: 0 0 2rem;
  text-align: center;
}

.border-944e {
  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;
}

.border-944e:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.list-outer-0dae {
  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);
}

.list-outer-0dae strong {
  color: var(--primary-color);
  font-weight: 700;
}

.avatar_760d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.gold_d97d {
  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;
}

.gold_d97d:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pagination-next-c3c3 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.module-d522 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.cold_ce53 {
  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);
}

.cold_ce53 .east-4b08 {
  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;
}

.cold_ce53 .east-4b08 svg {
  flex-shrink: 0;
}

.cold_ce53 .heading-77c7 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cold_ce53 .heading-77c7: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);
}

.cold_ce53 .link_full_b5a4 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.cold_ce53 .link_full_b5a4: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) {
  .secondary_action_bc92 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .border-944e {
    max-width: 100%;
  }

  .avatar_760d {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .gold_d97d {
    padding: 1rem;
  }

  .pagination-next-c3c3 {
    font-size: 1.5rem;
  }

  .module-d522 {
    font-size: 0.75rem;
  }

  .list-outer-0dae {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .cold_ce53 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .cold_ce53 .east-4b08 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .avatar_760d {
    grid-template-columns: 1fr;
  }
}

.modal_gold_7897 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.yellow_95d7 {
  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 === */
.widget-79ba {
  margin-bottom: 2.5rem;
}

.search-e97b {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.modal_gold_7897 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.lower_71d0 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.button_complex_1124 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.grid_1c03 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.steel_95d3 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.article_active_0e32 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.footer-d553 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.surface-25af {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.surface-25af svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.background_7721 {
  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);
}

.out_4292 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.module-rough-38d9 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.media-over-e79f {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.pressed_c00c {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.link_solid_00cc {
  display: grid;
  gap: 1rem;
}

.focused_1d5a {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.column-260c {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.hot_fa94 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.easy_8dc7 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.feature_be49 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.row-fast-67cc {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.row-fast-67cc p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.tooltip_green_31ba {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.surface-318d {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.lower_29d6 {
  display: grid;
  gap: 2rem;
}

.gradient-smooth-befb {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.button_complex_1124 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.lower_71d0 {
  flex: 1;
}

.steel_95d3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.steel_95d3 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.input_clean_b2c3 {
  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;
}

.article_active_0e32 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.popup_577a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.popup_577a span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.overlay_solid_7095 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.overlay_solid_7095 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.info_steel_dd13 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.info_steel_dd13 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.info_steel_dd13 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info_steel_dd13 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.hero_a35a {
  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 === */
.shadow-selected-d216 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.action_765e {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.easy_50cc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.detail_3123 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.detail_3123 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.detail_3123 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.detail_3123 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;
}

.detail_3123 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.detail_3123 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.progress-narrow-133b {
  padding: 3rem 0 5rem;
}

.black-f65c {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.black-f65c.photo_eb0f {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.copper_754f {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.accordion_873c {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.gradient_tiny_fb66 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.gradient_tiny_fb66 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.text-4967 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.copper_21c3 {
  text-align: center;
}

.title_dark_8909 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.element_c378 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.sort-glass-93c3 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.row-orange-2c16 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.main-pro-42bf {
  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;
}

.main-pro-42bf * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.main-pro-42bf:hover {
  box-shadow: var(--shadow-lg);
}

.main-pro-42bf.lower-e449 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.main-pro-42bf h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.main-pro-42bf ul {
  margin: 1rem 0;
}

.main-pro-42bf li {
  margin-bottom: 0.75rem;
}

.filter-stale-2d07 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.photo_bb9d {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.photo_bb9d a {
  font-weight: 600;
}

/* === Data Tables === */
.list-new-c876 {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background-color: var(--bg-primary);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.list-new-c876 table {
  width: 100%;
  min-width: 600px;
}

.list-new-c876 thead {
  background-color: var(--primary-color);
  color: white;
}

.list-new-c876 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.list-new-c876 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.list-new-c876 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.list-new-c876 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.title_stale_a2ae {
  list-style: none;
  margin: 1.5rem 0;
}

.title_stale_a2ae li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.title_stale_a2ae li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.section_dirty_4993::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-b4f4::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 === */
.module_50a0 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.gas-253c {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.gas-253c img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.gas-253c strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.gas-253c span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.module_50a0 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.breadcrumb_cf4e {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.breadcrumb_cf4e::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.message_inner_2f17 {
  position: relative;
  margin-bottom: 3rem;
}

.form_d727 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.form_d727 .content-brown-1af7 {
  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;
}

.tag-16e6 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.tag-16e6 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.tag-16e6 ul {
  margin: 1rem 0;
}

.tag-16e6 li {
  margin-bottom: 0.75rem;
}

.action-671f {
  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 === */
.solid_859b {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.solid_859b h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.easy_1062 {
  list-style: none;
  margin: 1.5rem 0;
}

.easy_1062 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.easy_1062 a {
  font-weight: 600;
}

.bottom-3152 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.notice_out_7b66 {
  margin: 2.5rem 0;
}

.list_e6a9 {
  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;
}

.list_e6a9:hover {
  box-shadow: var(--shadow-lg);
}

.list_e6a9.description-smooth-7766 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.slider-short-d210 {
  flex-shrink: 0;
}

.slider-short-d210 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);
}

.breadcrumb_8e46 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.pagination_5e60,
.motion-3e35,
.plasma_d043 {
  width: 100%;
  margin: 1.5rem 0;
}

.element_focused_45a5 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.element_focused_45a5 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.primary_short_ddb3 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.primary_short_ddb3 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.pattern-c9a7 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.pattern-c9a7 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.steel_65e1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.photo-current-c7ac {
  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;
}

.photo-current-c7ac:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.photo-current-c7ac.list-c898 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.photo-current-c7ac .detail-9769 {
  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;
}

.photo-current-c7ac h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.filter-9eb1 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.action-1910 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.action-1910 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.preview-cde9 {
  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 === */
.east-4b08 {
  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;
}

.heading-77c7 {
  background-color: var(--primary-color);
  color: white;
}

.heading-77c7:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.link_full_b5a4 {
  background-color: var(--text-secondary);
  color: white;
}

.link_full_b5a4:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.surface_inner_bc59 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.surface_inner_bc59:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.pagination-top-deac {
  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;
}

.pagination-top-deac:hover {
  background-color: var(--primary-dark);
}

.in_22e4 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.card-rough-f8af {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.tall-0a7b {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.short-eb88 {
  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 === */
.paragraph_lite_46f5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.column_prev_dfe7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.column_prev_dfe7 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.upper_a9d1 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.search_warm_2aab {
  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;
}

.dirty_c554 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.thumbnail-4cea {
  list-style: none;
  counter-reset: rank-counter;
}

.thumbnail-4cea li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.thumbnail-4cea 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;
}

.popup-cold-a84c {
  list-style: none;
}

.popup-cold-a84c li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.west-300a {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.nav-f999 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.nav-f999 .nav-top-3d64 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.nav-f999 .middle_52cb {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.left_c206 {
  margin-top: 3rem;
}

.description-red-c62e {
  width: 100%;
}

.under_a4c4 {
  background-color: #fef3c7;
}

.surface-c5f0 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.pro_1365 {
  margin: 3rem 0;
}

.wide_8b7f {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.up-ce37 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.up-ce37:hover {
  box-shadow: var(--shadow-lg);
}

.up-ce37.outline-prev-9eff {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.pressed_ac81 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.sort_under_bc9a strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.sort_under_bc9a span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.grid_0b4c {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.up-ce37 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.list-selected-315e {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.form_copper_f9c1 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.focused_bf00 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.mask-plasma-9bca {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.thumbnail_769b {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.huge-3bd2 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.filter-0c9d {
  max-width: 900px;
  margin: 0 auto;
}

.thumbnail_upper_53bb {
  margin: 2rem 0;
}

.plasma-b39d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.plasma-b39d summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.plasma-b39d summary::-webkit-details-marker {
  display: none;
}

.plasma-b39d summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.shade-0c46 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.plasma-b39d[open] .shade-0c46 {
  transform: rotate(45deg);
}

.smooth-76e9 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.smooth-76e9 p:last-child {
  margin-bottom: 0;
}

.paragraph_tall_3f4f {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.red_9be7 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.mask-9e6e {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.mask-9e6e p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.mask-9e6e .east-4b08 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.grid-bdd1 {
  max-width: 900px;
  margin: 0 auto;
}

.brown-7236 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hard-cc85 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.hard-cc85.fn-success-b4f4 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.media_9ea0 {
  font-size: 3rem;
  line-height: 1;
}

.panel_22f5 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.button_soft_c7b8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.gas_d613,
.summary_inner_cb46 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.gas_d613 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.summary_inner_cb46 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.paper-298f,
.simple-daa0 {
  margin: 1.5rem 0;
}

.paper-298f li,
.simple-daa0 li {
  margin-bottom: 1rem;
}

.surface-be58 {
  margin: 3rem 0;
}

.detail-73af {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.detail-73af h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.detail-73af ol {
  margin: 1rem 0;
}

.detail-73af li {
  margin-bottom: 0.75rem;
}

.action-d96d {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.paragraph-4e8a {
  margin: 2rem 0;
}

.heading_east_ff56 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.chip_91a5 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.container_988a {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.wood_6d93 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.paragraph_last_fb90 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.hover_bright_47d5 {
  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;
}

.hover_bright_47d5 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.grid_1c03 {
  flex: 1;
}

.grid_1c03 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.pattern_fast_0eef {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.shadow-under-d1aa p {
  margin-bottom: 1rem;
}

.video_af2a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.block-large-270d {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.short-5784 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.short-5784 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.hover-0487 h3 {
  margin-bottom: 1.5rem;
}

.disabled-rough-2917 {
  display: grid;
  gap: 2rem;
}

.item-bdb8 {
  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;
}

.item-bdb8 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.item-bdb8 h4 {
  margin: 0 0 0.25rem;
}

.item-bdb8 p {
  margin: 0;
  font-size: 0.9375rem;
}

.sidebar-9ff7 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.panel_easy_a23e {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.panel_easy_a23e h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.panel_easy_a23e ul {
  margin: 1.5rem 0;
}

.panel_easy_a23e li {
  margin-bottom: 0.75rem;
}

.stale-1758 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.primary_23da {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.accordion_901a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.small-3e16 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.small-3e16 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.grid_cool_dffc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.grid_cool_dffc a {
  color: rgba(255, 255, 255, 0.8);
}

.up-f7a6 {
  list-style: none;
}

.up-f7a6 li {
  margin-bottom: 0.75rem;
}

.up-f7a6 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.up-f7a6 a:hover {
  color: white;
}

.old_a700 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.message-middle-0ff4 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.full-3159 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.mask_e6f6 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.light_327e {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .light-fb09 {
    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;
  }

  .summary-b9fc {
    font-size: 1.5rem !important;
  }

  .search-e97b {
    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 */
  .main-pro-42bf,
  .paragraph_dfb8,
  .tag-16e6,
  .breadcrumb_8e46,
  .pressed_ac81,
  .up-ce37,
  .smooth-76e9,
  .list-outer-0dae,
  .tooltip_green_31ba,
  .copper_754f {
    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 */
  .modal_gold_7897 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .lower_71d0 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .button_complex_1124 {
    flex-shrink: 0;
  }

  .grid_1c03 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .steel_95d3,
  .article_active_0e32 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .article_active_0e32 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .lite-e12b {
    display: none;
  }

  /* Show mobile actions */
  .main-3099 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .card-middle-aafb {
    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;
  }

  .card-middle-aafb svg {
    flex-shrink: 0;
  }

  .card-middle-aafb .alert-hot-a29c {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .card-middle-aafb .card-6fbd {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .badge-f301 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .alert-thick-72a8 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .card-middle-aafb:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .hover-7fbb {
    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;
  }

  .hover-7fbb.fn-active-b4f4 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hover-7fbb li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .hover-7fbb li:last-child {
    border-bottom: none;
  }

  .hover-7fbb a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .description_c923 {
    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;
  }

  .description_c923 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .description_c923 li:last-child {
    border-bottom: none;
  }

  .description_c923 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .gold-e98c {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .title-light-0227 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .chip_silver_e021,
  .breadcrumb_1aea {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .chip_silver_e021 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .breadcrumb_1aea {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .description_c923.fn-active-b4f4 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .full_3e90 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .tag_9cb6 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .secondary_af49 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .photo_8e63 {
    margin-top: 0;
  }

  /* Hero section */
  .photo_8e63 {
    padding: 2rem 0 1.5rem;
  }

  .search-e97b {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .tooltip_green_31ba {
    font-size: 1rem;
  }

  /* Hero brand image */
  .secondary_action_bc92 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .border-944e {
    max-width: 100%;
    border-radius: 8px;
  }

  .avatar_760d {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .gold_d97d {
    padding: 1rem;
  }

  .pagination-next-c3c3 {
    font-size: 1.5rem;
  }

  .module-d522 {
    font-size: 0.75rem;
  }

  .list-outer-0dae {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .cold_ce53 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .cold_ce53 .east-4b08 {
    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 */
  .easy_50cc {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .list_e6a9 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .slider-short-d210 {
    margin-bottom: 1rem;
  }

  /* Author */
  .gradient-smooth-befb {
    flex-direction: column;
  }

  .hover_bright_47d5 {
    flex-direction: column;
  }

  /* Quotes */
  .pressed_ac81 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .button_soft_c7b8 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .wood_6d93 {
    flex-direction: column;
  }

  .wood_6d93 .east-4b08 {
    width: 100%;
  }

  /* Version comparison */
  .steel_65e1 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .paragraph_lite_46f5 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .accordion_901a {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .full-3159 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .list-new-c876,
  .motion-3e35,
  .row_current_f37a,
  .description-red-c62e,
  .pagination_5e60,
  .plasma_d043 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .list-new-c876 table,
  .motion-3e35 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .preview-cde9 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .light-fb09 {
    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;
  }

  .summary-b9fc {
    font-size: 1.25rem !important;
  }

  .search-e97b {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .tag_9cb6 {
    position: fixed;
  }

  .secondary_af49 {
    padding: 0.625rem 0;
  }

  .active-65e6 img {
    height: 26px;
  }

  .description_c923 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .hover-7fbb {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .card-middle-aafb {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .card-middle-aafb svg {
    width: 18px;
    height: 18px;
  }

  .card-middle-aafb .alert-hot-a29c {
    font-size: 0.7rem;
  }

  .card-middle-aafb .card-6fbd {
    font-size: 0.65rem;
  }

  .chip_silver_e021,
  .breadcrumb_1aea {
    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, .light-fb09, .light_96b0, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .secondary_action_bc92 {
    padding: 1rem;
  }

  .avatar_760d {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .gold_d97d {
    padding: 0.875rem;
  }

  .pagination-next-c3c3 {
    font-size: 1.25rem;
  }

  .cold_ce53 .east-4b08 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .search-e97b {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .east-4b08 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .in_22e4 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .list_e6a9 {
    padding: 1rem;
  }

  .slider-short-d210 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .main-pro-42bf,
  .text_hot_f19b,
  .hovered-6e08,
  .item_24d7 {
    padding: 1rem;
  }
}

@media print {
  .tag_9cb6,
  .shadow-selected-d216,
  .full_3e90,
  .east-4b08,
  .primary_23da {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .light-fb09 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.red_3722 {
  margin-bottom: 3rem;
  text-align: center;
}

.summary-b9fc {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.fixed_3b2d {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.border_current_344f,
.column_stone_6d82 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.dirty_0d4d {
  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;
}

.dirty_0d4d:hover {
  transform: translateY(-5px);
}

.dirty_0d4d strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.dirty_0d4d span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.hover-884c {
  margin: 3rem 0;
}

.lite-1a2c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.breadcrumb_over_2746 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.breadcrumb_over_2746:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.shadow_9053 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.simple_1055 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.bronze_ce5e {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.in_f57e {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.description-546e {
  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;
}

.description-546e:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.description-546e.row_easy_a010 {
  border-left: 4px solid var(--primary-color);
}

.media_west_fd9f {
  flex-shrink: 0;
}

.media_west_fd9f svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.row-e494 {
  flex: 1;
}

.row-e494 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.surface-cde9 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.badge-ee7b,
.heading-hovered-1382,
.middle-fc57 {
  margin-bottom: 1.5rem;
}

.badge-ee7b h4,
.heading-hovered-1382 h4,
.middle-fc57 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge-ee7b ul,
.heading-hovered-1382 ul,
.middle-fc57 ul {
  list-style: none;
  padding: 0;
}

.badge-ee7b li,
.heading-hovered-1382 li,
.middle-fc57 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.badge-ee7b li:before,
.heading-hovered-1382 li:before,
.middle-fc57 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.alert-f177 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.alert-f177 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;
}

.alert-f177 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.slow-f275 { margin: 2rem 0; }
.text-motion-b8be { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.text-motion-b8be h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.panel_black_51c1 p { margin-bottom: 1rem; line-height: 1.7; }
.panel_black_51c1 strong { color: var(--text-primary); }
.panel_black_51c1 ul { list-style: none; padding-left: 0; }
.panel_black_51c1 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.panel_black_51c1 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.preview-advanced-5d7c { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.notification_pressed_5ca1 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.notification_pressed_5ca1:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.filter-white-3b94 { font-size: 3rem; margin-bottom: 1rem; }
.notification_pressed_5ca1 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.notification_pressed_5ca1 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.box-purple-c5d0 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.box-purple-c5d0 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.hovered-8ba2 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.dim-b655 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.gold-1fbe { text-align: center; }
.item_clean_2f5d { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.sidebar-left-b16e { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.hard_ba8e { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.video-b690 { margin: 2rem 0; }
.popup-focused-9b80 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.popup-focused-9b80 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.popup-focused-9b80 p, .popup-focused-9b80 ul { line-height: 1.7; }
.popup-focused-9b80 ul { list-style: none; padding-left: 0; }
.popup-focused-9b80 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.popup-focused-9b80 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.right-c73f { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.notice-small-92cd { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.media-bright-07b5 { text-align: center; }
.new-7ffb { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.static_b7ee { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.light_0bce { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.hover_56e4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.upper_ce49 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.upper_ce49:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.upper_ce49 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.upper_ce49 p, .upper_ce49 ul { line-height: 1.7; }
.upper_ce49 ul { list-style: none; padding-left: 0; }
.upper_ce49 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.upper_ce49 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: ce70 */
.widget-item-j0 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.3;
}
