/* ============================================
   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 */
.upper_ece9 p,
.box-9d66,
.avatar-paper-c76a,
.warm-fad2,
.tertiary-ca3c,
.search_43a1,
.panel_rough_f102,
.primary_iron_d535 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.overlay-d96a {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.overlay-d96a > *,
.static_9ac4,
.upper_ece9,
.tiny_1ae1 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .overlay-d96a {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .overlay-d96a {
    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 === */
.heading_aab6 {
  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 */
.heading_aab6.silver_f88c {
  box-shadow: var(--shadow-md);
}

.fixed_a2b9 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.accordion_cac6 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.box_first_ce34 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.item-center-d3e6 {
  display: none;
}

/* Hide mobile actions on desktop */
.pattern-pink-fc01 {
  display: none;
}

.tag_solid_13bc a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.tag_solid_13bc a:hover,
.tag_solid_13bc a.fn-active-671e {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.container-35d6 {
  margin-left: 1rem;
}

.focus_9585 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.detail-steel-277f,
.hover_steel_9e1a {
  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;
}

.detail-steel-277f {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.detail-steel-277f: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;
}

.hover_steel_9e1a {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.hover_steel_9e1a: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;
}

.detail-steel-277f svg,
.hover_steel_9e1a svg {
  flex-shrink: 0;
}

.container-liquid-3b0b {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.active-a361 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.active-a361::before,
.active-a361::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.active-a361::before {
  top: -7px;
}

.active-a361::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.hard-4a07 {
  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 === */
.photo-up-dfa0 {
  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);
}

.table_narrow_7ec6 {
  margin: 0 0 2rem;
  text-align: center;
}

.form_c1ad {
  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;
}

.form_c1ad:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.narrow_e492 {
  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);
}

.narrow_e492 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.fresh_cbac {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature-right-7457 {
  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;
}

.feature-right-7457:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.row_east_d744 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.table-rough-6193 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.card-80ca {
  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);
}

.card-80ca .surface_hard_c216 {
  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;
}

.card-80ca .surface_hard_c216 svg {
  flex-shrink: 0;
}

.card-80ca .banner-eb89 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.card-80ca .banner-eb89: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);
}

.card-80ca .prev-becc {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.card-80ca .prev-becc: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) {
  .photo-up-dfa0 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .form_c1ad {
    max-width: 100%;
  }

  .fresh_cbac {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .feature-right-7457 {
    padding: 1rem;
  }

  .row_east_d744 {
    font-size: 1.5rem;
  }

  .table-rough-6193 {
    font-size: 0.75rem;
  }

  .narrow_e492 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .card-80ca {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .card-80ca .surface_hard_c216 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .fresh_cbac {
    grid-template-columns: 1fr;
  }
}

.mask_gold_d5af {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.blue-bf43 {
  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 === */
.article_full_3d42 {
  margin-bottom: 2.5rem;
}

.hero_c6c4 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.mask_gold_d5af {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.chip_orange_f41c {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dynamic-a130 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.panel-red-45b9 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.wood_c587 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.menu-4d4b {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.pro-2151 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.active_fd76 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.active_fd76 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.grid-middle-73d1 {
  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);
}

.pro-055d {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.border_3391 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tertiary-left-9bd4 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.dim_7e80 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.pattern_dd6f {
  display: grid;
  gap: 1rem;
}

.slider_d42d {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.main_left_7971 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.info_f94b {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.tabs-plasma-6312 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.hovered-93e9 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.summary-64a6 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.summary-64a6 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.box-9d66 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.wood-daf2 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.icon_hot_8a34 {
  display: grid;
  gap: 2rem;
}

.sidebar_5069 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.dynamic-a130 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.chip_orange_f41c {
  flex: 1;
}

.wood_c587 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.wood_c587 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.cool_5667 {
  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;
}

.menu-4d4b {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.carousel_dark_6df2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.carousel_dark_6df2 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.title_mini_2bdc {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.title_mini_2bdc a {
  font-size: 0.875rem;
  font-weight: 500;
}

.iron_7c21 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.iron_7c21 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.iron_7c21 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.iron_7c21 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.background_d414 {
  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 === */
.red_c77e {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.action-9fa1 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.action-5546 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.solid_ff5a h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.solid_ff5a ol {
  list-style: none;
  counter-reset: toc-counter;
}

.solid_ff5a ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.solid_ff5a 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;
}

.solid_ff5a ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.solid_ff5a ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.upper_ece9 {
  padding: 3rem 0 5rem;
}

.tiny_1ae1 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.tiny_1ae1.caption-3b9e {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.avatar-paper-c76a {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.panel_old_ac8d {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.focus_advanced_81f6 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.focus_advanced_81f6 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.hover-left-91e1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.hero_7ac5 {
  text-align: center;
}

.detail-a41c {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.center_ef5d {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.module-tiny-36cc {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.search_43a1 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.warm-fad2 {
  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;
}

.warm-fad2 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.warm-fad2:hover {
  box-shadow: var(--shadow-lg);
}

.warm-fad2.pagination-1ac6 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.warm-fad2 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.warm-fad2 ul {
  margin: 1rem 0;
}

.warm-fad2 li {
  margin-bottom: 0.75rem;
}

.detail-tall-b4e7 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.glass_0b34 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.glass_0b34 a {
  font-weight: 600;
}

/* === Data Tables === */
.under_7c86 {
  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;
}

.under_7c86 table {
  width: 100%;
  min-width: 600px;
}

.under_7c86 thead {
  background-color: var(--primary-color);
  color: white;
}

.under_7c86 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.under_7c86 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.under_7c86 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.under_7c86 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.panel-hard-8ac1 {
  list-style: none;
  margin: 1.5rem 0;
}

.panel-hard-8ac1 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.panel-hard-8ac1 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.summary-f402::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-671e::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 === */
.advanced-b911 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.text-hard-d9d9 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.text-hard-d9d9 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.text-hard-d9d9 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.text-hard-d9d9 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.advanced-b911 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.panel_rough_f102 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.panel_rough_f102::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.dynamic-d17d {
  position: relative;
  margin-bottom: 3rem;
}

.info-e6c9 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.info-e6c9 .border-lower-7a70 {
  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;
}

.caption_b332 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.caption_b332 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.caption_b332 ul {
  margin: 1rem 0;
}

.caption_b332 li {
  margin-bottom: 0.75rem;
}

.avatar-544f {
  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 === */
.tooltip_90df {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.tooltip_90df h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.button_b2b1 {
  list-style: none;
  margin: 1.5rem 0;
}

.button_b2b1 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.button_b2b1 a {
  font-weight: 600;
}

.hard_d342 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.primary_iron_d535 {
  margin: 2.5rem 0;
}

.stale_c45f {
  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;
}

.stale_c45f:hover {
  box-shadow: var(--shadow-lg);
}

.stale_c45f.pagination-outer-0550 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.tooltip-brown-8786 {
  flex-shrink: 0;
}

.tooltip-brown-8786 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);
}

.gas-fbd6 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.huge_2e25,
.alert-3962,
.highlight_25ee {
  width: 100%;
  margin: 1.5rem 0;
}

.chip-old-984b {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.chip-old-984b strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.text_advanced_89a2 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.text_advanced_89a2 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.content_5b9a {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.content_5b9a strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.complex-0a84 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.gas-385a {
  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;
}

.gas-385a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.gas-385a.brown_ca62 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.gas-385a .steel_a782 {
  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;
}

.gas-385a h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.label_a977 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.hover-624b {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.hover-624b label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.button_8f89 {
  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 === */
.surface_hard_c216 {
  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;
}

.banner-eb89 {
  background-color: var(--primary-color);
  color: white;
}

.banner-eb89:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.prev-becc {
  background-color: var(--text-secondary);
  color: white;
}

.prev-becc:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.narrow_bc3f {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.narrow_bc3f:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.white_d25e {
  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;
}

.white_d25e:hover {
  background-color: var(--primary-dark);
}

.west-639d {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.current_1de3 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.container_solid_82e2 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.last_41a9 {
  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 === */
.footer-1ffb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.east-5436 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.east-5436 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.menu_orange_dff2 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.border_bae6 {
  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;
}

.summary_6bed {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.west_4d75 {
  list-style: none;
  counter-reset: rank-counter;
}

.west_4d75 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.west_4d75 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;
}

.secondary_446f {
  list-style: none;
}

.secondary_446f li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.motion_0abb {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.container-brown-c847 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.container-brown-c847 .feature-7df7 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.container-brown-c847 .east_a9a6 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.preview_52ba {
  margin-top: 3rem;
}

.alert-7869 {
  width: 100%;
}

.block_7864 {
  background-color: #fef3c7;
}

.dark_d6e2 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.tag_tall_3d63 {
  margin: 3rem 0;
}

.info_c70d {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.preview-82be {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.preview-82be:hover {
  box-shadow: var(--shadow-lg);
}

.preview-82be.east_9f1c {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.pattern-4695 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.list_gold_35d6 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.list_gold_35d6 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tag-active-f665 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.preview-82be blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.overlay-2bb4 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.current_1da0 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.popup-bd74 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.up-0b2a {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.icon-blue-8f5f {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.center-77cf {
  margin-top: 1rem;
}

/* === FAQ Section === */
.content-2f7e {
  max-width: 900px;
  margin: 0 auto;
}

.logo-west-e6a2 {
  margin: 2rem 0;
}

.tag_lower_7fe8 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.tag_lower_7fe8 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.tag_lower_7fe8 summary::-webkit-details-marker {
  display: none;
}

.tag_lower_7fe8 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.nav-west-386c {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.tag_lower_7fe8[open] .nav-west-386c {
  transform: rotate(45deg);
}

.blue_9724 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.blue_9724 p:last-child {
  margin-bottom: 0;
}

.primary_prev_f6a2 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.filter-blue-e8ae {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.sidebar_in_095a {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.sidebar_in_095a p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.sidebar_in_095a .surface_hard_c216 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.preview-in-6559 {
  max-width: 900px;
  margin: 0 auto;
}

.form-f840 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.tooltip-lower-19bb {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.tooltip-lower-19bb.fn-success-671e {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.texture-fast-725b {
  font-size: 3rem;
  line-height: 1;
}

.hidden-f55a h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.icon_blue_2d09 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.message-54d9,
.section-2b4e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.message-54d9 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.section-2b4e h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.article-eb21,
.grid_bottom_e2df {
  margin: 1.5rem 0;
}

.article-eb21 li,
.grid_bottom_e2df li {
  margin-bottom: 1rem;
}

.pattern_37b1 {
  margin: 3rem 0;
}

.in_a5d9 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.in_a5d9 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.in_a5d9 ol {
  margin: 1rem 0;
}

.in_a5d9 li {
  margin-bottom: 0.75rem;
}

.gallery_outer_6715 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.current_9b32 {
  margin: 2rem 0;
}

.pagination_5f27 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.table-purple-cb34 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.medium-ce7d {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.center-e62f {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.upper-0a30 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.tag-over-5f38 {
  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;
}

.tag-over-5f38 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.panel-red-45b9 {
  flex: 1;
}

.panel-red-45b9 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.hard_b728 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.shade-7656 p {
  margin-bottom: 1rem;
}

.block-a042 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.button_copper_3daf {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.progress_outer_9517 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.progress_outer_9517 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.photo_mini_ccb2 h3 {
  margin-bottom: 1.5rem;
}

.large_df27 {
  display: grid;
  gap: 2rem;
}

.texture-green-d214 {
  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;
}

.texture-green-d214 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.texture-green-d214 h4 {
  margin: 0 0 0.25rem;
}

.texture-green-d214 p {
  margin: 0;
  font-size: 0.9375rem;
}

.up-3010 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.out-2041 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.out-2041 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.out-2041 ul {
  margin: 1.5rem 0;
}

.out-2041 li {
  margin-bottom: 0.75rem;
}

.breadcrumb-stale-2526 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.message-complex-623f {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.component_1d79 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.focus-304b h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.focus-304b p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.picture-5500 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.picture-5500 a {
  color: rgba(255, 255, 255, 0.8);
}

.fresh-6944 {
  list-style: none;
}

.fresh-6944 li {
  margin-bottom: 0.75rem;
}

.fresh-6944 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.fresh-6944 a:hover {
  color: white;
}

.text-last-886f {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.top_7203 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.focus_6b5a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.header_gas_a40c {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.shade-a1aa {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .overlay-d96a {
    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;
  }

  .selected-ee55 {
    font-size: 1.5rem !important;
  }

  .hero_c6c4 {
    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 */
  .warm-fad2,
  .tertiary-ca3c,
  .caption_b332,
  .gas-fbd6,
  .pattern-4695,
  .preview-82be,
  .blue_9724,
  .narrow_e492,
  .box-9d66,
  .avatar-paper-c76a {
    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 */
  .mask_gold_d5af {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .chip_orange_f41c {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .dynamic-a130 {
    flex-shrink: 0;
  }

  .panel-red-45b9 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .wood_c587,
  .menu-4d4b {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .menu-4d4b {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .box_first_ce34 {
    display: none;
  }

  /* Show mobile actions */
  .pattern-pink-fc01 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .header-pressed-df3d {
    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;
  }

  .header-pressed-df3d svg {
    flex-shrink: 0;
  }

  .header-pressed-df3d .motion_a942 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .header-pressed-df3d .text-in-6519 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .first-7e25 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .content-stone-bcf2 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .header-pressed-df3d:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .item-center-d3e6 {
    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;
  }

  .item-center-d3e6.fn-active-671e {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .item-center-d3e6 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .item-center-d3e6 li:last-child {
    border-bottom: none;
  }

  .item-center-d3e6 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .tag_solid_13bc {
    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;
  }

  .tag_solid_13bc li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .tag_solid_13bc li:last-child {
    border-bottom: none;
  }

  .tag_solid_13bc a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .container-35d6 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .focus_9585 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .detail-steel-277f,
  .hover_steel_9e1a {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .detail-steel-277f {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .hover_steel_9e1a {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .tag_solid_13bc.fn-active-671e {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .container-liquid-3b0b {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .heading_aab6 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .fixed_a2b9 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .hard-4a07 {
    margin-top: 0;
  }

  /* Hero section */
  .hard-4a07 {
    padding: 2rem 0 1.5rem;
  }

  .hero_c6c4 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .box-9d66 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .photo-up-dfa0 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .form_c1ad {
    max-width: 100%;
    border-radius: 8px;
  }

  .fresh_cbac {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .feature-right-7457 {
    padding: 1rem;
  }

  .row_east_d744 {
    font-size: 1.5rem;
  }

  .table-rough-6193 {
    font-size: 0.75rem;
  }

  .narrow_e492 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .card-80ca {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .card-80ca .surface_hard_c216 {
    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 */
  .action-5546 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .stale_c45f {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .tooltip-brown-8786 {
    margin-bottom: 1rem;
  }

  /* Author */
  .sidebar_5069 {
    flex-direction: column;
  }

  .tag-over-5f38 {
    flex-direction: column;
  }

  /* Quotes */
  .pattern-4695 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .icon_blue_2d09 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .center-e62f {
    flex-direction: column;
  }

  .center-e62f .surface_hard_c216 {
    width: 100%;
  }

  /* Version comparison */
  .complex-0a84 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .footer-1ffb {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .component_1d79 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .focus_6b5a {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .under_7c86,
  .alert-3962,
  .background-8267,
  .alert-7869,
  .huge_2e25,
  .highlight_25ee {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .under_7c86 table,
  .alert-3962 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .button_8f89 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .overlay-d96a {
    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;
  }

  .selected-ee55 {
    font-size: 1.25rem !important;
  }

  .hero_c6c4 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .heading_aab6 {
    position: fixed;
  }

  .fixed_a2b9 {
    padding: 0.625rem 0;
  }

  .accordion_cac6 img {
    height: 26px;
  }

  .tag_solid_13bc {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .item-center-d3e6 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .header-pressed-df3d {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .header-pressed-df3d svg {
    width: 18px;
    height: 18px;
  }

  .header-pressed-df3d .motion_a942 {
    font-size: 0.7rem;
  }

  .header-pressed-df3d .text-in-6519 {
    font-size: 0.65rem;
  }

  .detail-steel-277f,
  .hover_steel_9e1a {
    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, .overlay-d96a, .static_9ac4, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .photo-up-dfa0 {
    padding: 1rem;
  }

  .fresh_cbac {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .feature-right-7457 {
    padding: 0.875rem;
  }

  .row_east_d744 {
    font-size: 1.25rem;
  }

  .card-80ca .surface_hard_c216 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .hero_c6c4 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .surface_hard_c216 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .west-639d {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .stale_c45f {
    padding: 1rem;
  }

  .tooltip-brown-8786 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .warm-fad2,
  .fixed-16d5,
  .layout-269d,
  .box-bronze-9427 {
    padding: 1rem;
  }
}

@media print {
  .heading_aab6,
  .red_c77e,
  .container-liquid-3b0b,
  .surface_hard_c216,
  .message-complex-623f {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .overlay-d96a {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.west_c29f {
  margin-bottom: 3rem;
  text-align: center;
}

.selected-ee55 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.content_bfae {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.list-fresh-104b,
.hovered_5f1d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.simple-c58a {
  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;
}

.simple-c58a:hover {
  transform: translateY(-5px);
}

.simple-c58a strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.simple-c58a span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.layout-clean-3197 {
  margin: 3rem 0;
}

.gradient-c26a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.light-1bf4 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.light-1bf4:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.up_89b4 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.active-f9cf {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.popup-a2ea {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.copper_e33a {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.notice_23f6 {
  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;
}

.notice_23f6:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.notice_23f6.info-slow-96b1 {
  border-left: 4px solid var(--primary-color);
}

.focus_bronze_180c {
  flex-shrink: 0;
}

.focus_bronze_180c svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.glass_16be {
  flex: 1;
}

.glass_16be h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.soft_376c {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.black-f7b0,
.element_0985,
.pagination_11cc {
  margin-bottom: 1.5rem;
}

.black-f7b0 h4,
.element_0985 h4,
.pagination_11cc h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.black-f7b0 ul,
.element_0985 ul,
.pagination_11cc ul {
  list-style: none;
  padding: 0;
}

.black-f7b0 li,
.element_0985 li,
.pagination_11cc li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.black-f7b0 li:before,
.element_0985 li:before,
.pagination_11cc li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.outline-6958 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.outline-6958 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;
}

.outline-6958 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.hero-paper-63cd { margin: 2rem 0; }
.wrapper-full-cbc6 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.wrapper-full-cbc6 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.tabs_short_2a23 p { margin-bottom: 1rem; line-height: 1.7; }
.tabs_short_2a23 strong { color: var(--text-primary); }
.tabs_short_2a23 ul { list-style: none; padding-left: 0; }
.tabs_short_2a23 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.tabs_short_2a23 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.wrapper_static_4d07 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.clean-23f4 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.clean-23f4:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.orange_a310 { font-size: 3rem; margin-bottom: 1rem; }
.clean-23f4 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.clean-23f4 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.border_fa5f { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.border_fa5f span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.carousel-paper-9c4a { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.focused_ae01 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.caption-150c { text-align: center; }
.texture_c5f1 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.shadow_outer_0212 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.surface_1b7d { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.lite_5358 { margin: 2rem 0; }
.stone-a54d { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.stone-a54d h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.stone-a54d p, .stone-a54d ul { line-height: 1.7; }
.stone-a54d ul { list-style: none; padding-left: 0; }
.stone-a54d ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.stone-a54d ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.center_52df { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.smooth_ba14 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.caption_rough_a7ed { text-align: center; }
.new_a795 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.frame_e273 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.block-tall-ce14 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.pressed_05c5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.background_bec4 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.background_bec4:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.background_bec4 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.background_bec4 p, .background_bec4 ul { line-height: 1.7; }
.background_bec4 ul { list-style: none; padding-left: 0; }
.background_bec4 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.background_bec4 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 6776 */
.widget-item-m2 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.2;
}
