/* ============================================
   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 */
.gas-538a p,
.east_6a82,
.paragraph-d1d1,
.fast-0f4e,
.pattern-silver-174e,
.list-ff9b,
.dropdown-tall-0282,
.notification_719d {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.accent-d5fa {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.accent-d5fa > *,
.section_c2e1,
.gas-538a,
.complex-a7d2 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .accent-d5fa {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .accent-d5fa {
    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 === */
.caption_basic_386e {
  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 */
.caption_basic_386e.row_250b {
  box-shadow: var(--shadow-md);
}

.large-f40b {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.last-b5b2 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.table-1835 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.fixed_f2ff {
  display: none;
}

/* Hide mobile actions on desktop */
.tertiary_upper_15ef {
  display: none;
}

.action-ed80 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.action-ed80 a:hover,
.action-ed80 a.fn-active-c9f6 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.prev_6b06 {
  margin-left: 1rem;
}

.tall_721f {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.panel_new_7e96,
.sort_over_aa05 {
  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;
}

.panel_new_7e96 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.panel_new_7e96: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;
}

.sort_over_aa05 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.sort_over_aa05: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;
}

.panel_new_7e96 svg,
.sort_over_aa05 svg {
  flex-shrink: 0;
}

.tiny_2909 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.old-1a75 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.old-1a75::before,
.old-1a75::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.old-1a75::before {
  top: -7px;
}

.old-1a75::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.hover-cold-3554 {
  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 === */
.accent-0ade {
  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);
}

.next_b164 {
  margin: 0 0 2rem;
  text-align: center;
}

.frame-9c7a {
  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;
}

.frame-9c7a:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.search-solid-01a6 {
  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);
}

.search-solid-01a6 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.large-38f7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.picture_up_34e0 {
  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;
}

.picture_up_34e0:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.bottom_d68f {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.heading-bfbd {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.outer-19b1 {
  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);
}

.outer-19b1 .form_9a7d {
  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;
}

.outer-19b1 .form_9a7d svg {
  flex-shrink: 0;
}

.outer-19b1 .texture_0d7c {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.outer-19b1 .texture_0d7c: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);
}

.outer-19b1 .panel-cdd3 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.outer-19b1 .panel-cdd3: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) {
  .accent-0ade {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .frame-9c7a {
    max-width: 100%;
  }

  .large-38f7 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .picture_up_34e0 {
    padding: 1rem;
  }

  .bottom_d68f {
    font-size: 1.5rem;
  }

  .heading-bfbd {
    font-size: 0.75rem;
  }

  .search-solid-01a6 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .outer-19b1 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .outer-19b1 .form_9a7d {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .large-38f7 {
    grid-template-columns: 1fr;
  }
}

.status_large_6ddc {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.mini_44ba {
  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 === */
.detail-short-af28 {
  margin-bottom: 2.5rem;
}

.card-c2af {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.status_large_6ddc {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.east-8bfa {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.paper_cc64 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.input-e17b {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.content_7d77 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.footer_advanced_335d {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.tag-2c0b {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.summary-7fd8 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.summary-7fd8 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.stale-49ca {
  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);
}

.steel_5467 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.progress-red-aff0 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.paper_2705 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.hard-34d4 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.iron_7e3a {
  display: grid;
  gap: 1rem;
}

.pink_e3e6 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.mini-c165 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.shadow-basic-c791 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.detail_rough_f541 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.dropdown_bronze_105b {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.gallery_3f4a {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.gallery_3f4a p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.east_6a82 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.shadow_steel_7726 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.form_a0b9 {
  display: grid;
  gap: 2rem;
}

.column_outer_e287 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.paper_cc64 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.east-8bfa {
  flex: 1;
}

.content_7d77 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.content_7d77 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.wide-061b {
  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;
}

.footer_advanced_335d {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.complex-f24b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.complex-f24b span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.tabs-0869 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.tabs-0869 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.summary_liquid_2222 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.summary_liquid_2222 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.summary_liquid_2222 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.summary_liquid_2222 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.article_action_17eb {
  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 === */
.clean_d7d4 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.simple-81d6 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.huge_1e31 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.basic-e449 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.basic-e449 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.basic-e449 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.basic-e449 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;
}

.basic-e449 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.basic-e449 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.gas-538a {
  padding: 3rem 0 5rem;
}

.complex-a7d2 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.complex-a7d2.header-slow-c119 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.paragraph-d1d1 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.row-top-a4e2 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.active_b519 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.active_b519 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.icon-ecd9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.over-7b38 {
  text-align: center;
}

.badge_c445 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.filter-full-9716 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.slow-572d {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.list-ff9b {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.fast-0f4e {
  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;
}

.fast-0f4e * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.fast-0f4e:hover {
  box-shadow: var(--shadow-lg);
}

.fast-0f4e.liquid_83fe {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.fast-0f4e h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.fast-0f4e ul {
  margin: 1rem 0;
}

.fast-0f4e li {
  margin-bottom: 0.75rem;
}

.medium_f6dd {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.widget-orange-1615 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.widget-orange-1615 a {
  font-weight: 600;
}

/* === Data Tables === */
.outer-151d {
  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;
}

.outer-151d table {
  width: 100%;
  min-width: 600px;
}

.outer-151d thead {
  background-color: var(--primary-color);
  color: white;
}

.outer-151d th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.outer-151d td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.outer-151d tbody tr:hover {
  background-color: var(--bg-secondary);
}

.outer-151d tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.accent-rough-a129 {
  list-style: none;
  margin: 1.5rem 0;
}

.accent-rough-a129 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.accent-rough-a129 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.message_3971::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-c9f6::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 === */
.wrapper-a23e {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.article_old_7831 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.article_old_7831 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.article_old_7831 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.article_old_7831 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.wrapper-a23e blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.dropdown-tall-0282 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.dropdown-tall-0282::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.caption_iron_81aa {
  position: relative;
  margin-bottom: 3rem;
}

.gallery-east-4799 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.gallery-east-4799 .popup-59c4 {
  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;
}

.image_2db7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.image_2db7 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.image_2db7 ul {
  margin: 1rem 0;
}

.image_2db7 li {
  margin-bottom: 0.75rem;
}

.pro-6a97 {
  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 === */
.card-advanced-dea4 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.card-advanced-dea4 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.overlay_focused_9bb5 {
  list-style: none;
  margin: 1.5rem 0;
}

.overlay_focused_9bb5 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.overlay_focused_9bb5 a {
  font-weight: 600;
}

.slider-560a {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.notification_719d {
  margin: 2.5rem 0;
}

.lite_6839 {
  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;
}

.lite_6839:hover {
  box-shadow: var(--shadow-lg);
}

.lite_6839.dim_fb54 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.surface-3b1e {
  flex-shrink: 0;
}

.surface-3b1e 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);
}

.north-0d8f h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.accent-inner-d0b4,
.paper_59d1,
.glass-8a12 {
  width: 100%;
  margin: 1.5rem 0;
}

.article_ef45 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.article_ef45 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.pagination-under-dc56 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.pagination-under-dc56 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.sidebar_0453 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.sidebar_0453 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.block_active_4812 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.accent_cf9c {
  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;
}

.accent_cf9c:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.accent_cf9c.thick-11a6 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.accent_cf9c .bright-8441 {
  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;
}

.accent_cf9c h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.picture_north_79a1 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.dark-48a1 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.dark-48a1 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.preview-hovered-a949 {
  display: block;
  font-family: 'Consolas', monospace;
  font-size: 0.75rem;
  color: var(--accent-color);
  word-break: break-all;
  padding: 0.75rem;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

/* === Buttons === */
.form_9a7d {
  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;
}

.texture_0d7c {
  background-color: var(--primary-color);
  color: white;
}

.texture_0d7c:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.panel-cdd3 {
  background-color: var(--text-secondary);
  color: white;
}

.panel-cdd3:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.element-fast-4891 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.element-fast-4891:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.thumbnail_e67b {
  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;
}

.thumbnail_e67b:hover {
  background-color: var(--primary-dark);
}

.stone-dca1 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.chip_orange_8529 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.gold-cf20 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.lite-2415 {
  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 === */
.pattern-north-e1b2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.shade-pro-e1d3 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.shade-pro-e1d3 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.progress-current-8ce0 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.orange_a1b0 {
  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;
}

.list_white_154f {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.carousel_85b4 {
  list-style: none;
  counter-reset: rank-counter;
}

.carousel_85b4 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.carousel_85b4 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;
}

.element_small_26f5 {
  list-style: none;
}

.element_small_26f5 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.column_9d38 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.breadcrumb_old_698d {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb_old_698d .layout_abee {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.breadcrumb_old_698d .hidden_57ed {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.link_black_2250 {
  margin-top: 3rem;
}

.copper-8a2e {
  width: 100%;
}

.photo_purple_fd1e {
  background-color: #fef3c7;
}

.lower-7439 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.liquid-cfa7 {
  margin: 3rem 0;
}

.rough_e640 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.focus_c1a2 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.focus_c1a2:hover {
  box-shadow: var(--shadow-lg);
}

.focus_c1a2.static-7f8a {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.component-10fd {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.overlay_smooth_1fe0 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.overlay_smooth_1fe0 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.column_white_f885 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.focus_c1a2 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.primary_53c8 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.shadow-eaeb {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.in-45a5 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.text_right_6ce3 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.row-fluid-b83c {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.hovered-8ce6 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.hard-1559 {
  max-width: 900px;
  margin: 0 auto;
}

.gallery_cold_c086 {
  margin: 2rem 0;
}

.grid-pressed-5b3b {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.grid-pressed-5b3b summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.grid-pressed-5b3b summary::-webkit-details-marker {
  display: none;
}

.grid-pressed-5b3b summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.focused_0a5e {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.grid-pressed-5b3b[open] .focused_0a5e {
  transform: rotate(45deg);
}

.dark-fa4d {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.dark-fa4d p:last-child {
  margin-bottom: 0;
}

.wrapper-67a6 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.pressed_b708 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.shade_649a {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.shade_649a p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.shade_649a .form_9a7d {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.wood_10a9 {
  max-width: 900px;
  margin: 0 auto;
}

.active-down-daf6 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hard_3149 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.hard_3149.fn-success-c9f6 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.full-1a26 {
  font-size: 3rem;
  line-height: 1;
}

.slow-7849 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.form-iron-1d68 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.block_complex_d58e,
.carousel-0736 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.block_complex_d58e h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.carousel-0736 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.container_warm_8e9e,
.action_21c8 {
  margin: 1.5rem 0;
}

.container_warm_8e9e li,
.action_21c8 li {
  margin-bottom: 1rem;
}

.header_stale_5845 {
  margin: 3rem 0;
}

.short_029b {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.short_029b h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.short_029b ol {
  margin: 1rem 0;
}

.short_029b li {
  margin-bottom: 0.75rem;
}

.focused-705e {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.icon-over-18ee {
  margin: 2rem 0;
}

.dirty_e51d {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.stale-048e {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.panel_d104 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.soft-0cc0 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.notification_green_3e83 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.photo_b9e2 {
  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;
}

.photo_b9e2 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.input-e17b {
  flex: 1;
}

.input-e17b h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.list_92c1 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.accent-pro-0778 p {
  margin-bottom: 1rem;
}

.detail-huge-edee {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.border-dark-64ce {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.caption_3cef {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.caption_3cef a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.background-left-1c62 h3 {
  margin-bottom: 1.5rem;
}

.search-b9c2 {
  display: grid;
  gap: 2rem;
}

.slider-bottom-9970 {
  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;
}

.slider-bottom-9970 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.slider-bottom-9970 h4 {
  margin: 0 0 0.25rem;
}

.slider-bottom-9970 p {
  margin: 0;
  font-size: 0.9375rem;
}

.badge-d0a0 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.status-south-495e {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.status-south-495e h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.status-south-495e ul {
  margin: 1.5rem 0;
}

.status-south-495e li {
  margin-bottom: 0.75rem;
}

.down-20cb {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.silver_19f8 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.form_bronze_ed8f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.title-upper-3e8a h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.title-upper-3e8a p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.left-beab {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.left-beab a {
  color: rgba(255, 255, 255, 0.8);
}

.aside_f12c {
  list-style: none;
}

.aside_f12c li {
  margin-bottom: 0.75rem;
}

.aside_f12c a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.aside_f12c a:hover {
  color: white;
}

.detail_focused_0470 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.hover-under-aa10 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.button-323a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.image-67c2 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.stone-ea2d {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .accent-d5fa {
    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;
  }

  .highlight-0ac6 {
    font-size: 1.5rem !important;
  }

  .card-c2af {
    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 */
  .fast-0f4e,
  .pattern-silver-174e,
  .image_2db7,
  .north-0d8f,
  .component-10fd,
  .focus_c1a2,
  .dark-fa4d,
  .search-solid-01a6,
  .east_6a82,
  .paragraph-d1d1 {
    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 */
  .status_large_6ddc {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .east-8bfa {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .paper_cc64 {
    flex-shrink: 0;
  }

  .input-e17b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .content_7d77,
  .footer_advanced_335d {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .footer_advanced_335d {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .table-1835 {
    display: none;
  }

  /* Show mobile actions */
  .tertiary_upper_15ef {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .paragraph_down_5f9e {
    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;
  }

  .paragraph_down_5f9e svg {
    flex-shrink: 0;
  }

  .paragraph_down_5f9e .footer-focused-9a84 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .paragraph_down_5f9e .preview_164e {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .mask_5d60 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .label_b49b {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .paragraph_down_5f9e:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .fixed_f2ff {
    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;
  }

  .fixed_f2ff.fn-active-c9f6 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .fixed_f2ff li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .fixed_f2ff li:last-child {
    border-bottom: none;
  }

  .fixed_f2ff a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .action-ed80 {
    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;
  }

  .action-ed80 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .action-ed80 li:last-child {
    border-bottom: none;
  }

  .action-ed80 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .prev_6b06 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .tall_721f {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .panel_new_7e96,
  .sort_over_aa05 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .panel_new_7e96 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .sort_over_aa05 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .action-ed80.fn-active-c9f6 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .tiny_2909 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .caption_basic_386e {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .large-f40b {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .hover-cold-3554 {
    margin-top: 0;
  }

  /* Hero section */
  .hover-cold-3554 {
    padding: 2rem 0 1.5rem;
  }

  .card-c2af {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .east_6a82 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .accent-0ade {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .frame-9c7a {
    max-width: 100%;
    border-radius: 8px;
  }

  .large-38f7 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .picture_up_34e0 {
    padding: 1rem;
  }

  .bottom_d68f {
    font-size: 1.5rem;
  }

  .heading-bfbd {
    font-size: 0.75rem;
  }

  .search-solid-01a6 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .outer-19b1 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .outer-19b1 .form_9a7d {
    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 */
  .huge_1e31 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .lite_6839 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .surface-3b1e {
    margin-bottom: 1rem;
  }

  /* Author */
  .column_outer_e287 {
    flex-direction: column;
  }

  .photo_b9e2 {
    flex-direction: column;
  }

  /* Quotes */
  .component-10fd {
    flex-direction: column;
  }

  /* Pros/Cons */
  .form-iron-1d68 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .soft-0cc0 {
    flex-direction: column;
  }

  .soft-0cc0 .form_9a7d {
    width: 100%;
  }

  /* Version comparison */
  .block_active_4812 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .pattern-north-e1b2 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .form_bronze_ed8f {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .button-323a {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .outer-151d,
  .paper_59d1,
  .tertiary-down-5972,
  .copper-8a2e,
  .accent-inner-d0b4,
  .glass-8a12 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .outer-151d table,
  .paper_59d1 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-hovered-a949 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .accent-d5fa {
    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;
  }

  .highlight-0ac6 {
    font-size: 1.25rem !important;
  }

  .card-c2af {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .caption_basic_386e {
    position: fixed;
  }

  .large-f40b {
    padding: 0.625rem 0;
  }

  .last-b5b2 img {
    height: 26px;
  }

  .action-ed80 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .fixed_f2ff {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .paragraph_down_5f9e {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .paragraph_down_5f9e svg {
    width: 18px;
    height: 18px;
  }

  .paragraph_down_5f9e .footer-focused-9a84 {
    font-size: 0.7rem;
  }

  .paragraph_down_5f9e .preview_164e {
    font-size: 0.65rem;
  }

  .panel_new_7e96,
  .sort_over_aa05 {
    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, .accent-d5fa, .section_c2e1, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .accent-0ade {
    padding: 1rem;
  }

  .large-38f7 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .picture_up_34e0 {
    padding: 0.875rem;
  }

  .bottom_d68f {
    font-size: 1.25rem;
  }

  .outer-19b1 .form_9a7d {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .card-c2af {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .form_9a7d {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .stone-dca1 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .lite_6839 {
    padding: 1rem;
  }

  .surface-3b1e span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .fast-0f4e,
  .pagination_671e,
  .module-large-3c5a,
  .header-3d0b {
    padding: 1rem;
  }
}

@media print {
  .caption_basic_386e,
  .clean_d7d4,
  .tiny_2909,
  .form_9a7d,
  .silver_19f8 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .accent-d5fa {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.slider-blue-31ef {
  margin-bottom: 3rem;
  text-align: center;
}

.highlight-0ac6 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.notice_cold_b9ef {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.upper_d00d,
.up-266c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.accordion_6b65 {
  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;
}

.accordion_6b65:hover {
  transform: translateY(-5px);
}

.accordion_6b65 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.accordion_6b65 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.bronze-6019 {
  margin: 3rem 0;
}

.border_clean_42ab {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.item_da5e {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.item_da5e:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.alert-0a47 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.stone_7e06 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.item_8d7c {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.top_e960 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.purple-7768 {
  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;
}

.purple-7768:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.purple-7768.input-d32a {
  border-left: 4px solid var(--primary-color);
}

.picture_current_9d23 {
  flex-shrink: 0;
}

.picture_current_9d23 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.aside-new-3cf1 {
  flex: 1;
}

.aside-new-3cf1 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.picture-fast-35a4 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-8205,
.accordion-c600,
.element_a56d {
  margin-bottom: 1.5rem;
}

.hero-8205 h4,
.accordion-c600 h4,
.element_a56d h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-8205 ul,
.accordion-c600 ul,
.element_a56d ul {
  list-style: none;
  padding: 0;
}

.hero-8205 li,
.accordion-c600 li,
.element_a56d li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.hero-8205 li:before,
.accordion-c600 li:before,
.element_a56d li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.modal_dim_d162 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.modal_dim_d162 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;
}

.modal_dim_d162 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.feature-ca68 { margin: 2rem 0; }
.border_large_ad89 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.border_large_ad89 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.mask-soft-6c36 p { margin-bottom: 1rem; line-height: 1.7; }
.mask-soft-6c36 strong { color: var(--text-primary); }
.mask-soft-6c36 ul { list-style: none; padding-left: 0; }
.mask-soft-6c36 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.mask-soft-6c36 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.content_2912 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.table-e45a { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.table-e45a:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.gas-d80e { font-size: 3rem; margin-bottom: 1rem; }
.table-e45a h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.table-e45a p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.narrow_2688 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.narrow_2688 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.shadow_3a5c { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.aside_2f5a { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.chip-full-6c3d { text-align: center; }
.motion_ba72 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.focus-blue-2427 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.hidden_smooth_b5fb { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.tabs-tall-ddaa { margin: 2rem 0; }
.avatar-west-fbf1 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.avatar-west-fbf1 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.avatar-west-fbf1 p, .avatar-west-fbf1 ul { line-height: 1.7; }
.avatar-west-fbf1 ul { list-style: none; padding-left: 0; }
.avatar-west-fbf1 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.avatar-west-fbf1 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.widget-basic-3803 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.caption-4370 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.gallery_7d18 { text-align: center; }
.summary-4a29 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.heading_c6fc { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.content-d378 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.cold-6c40 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.header-4e24 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.header-4e24:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.header-4e24 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.header-4e24 p, .header-4e24 ul { line-height: 1.7; }
.header-4e24 ul { list-style: none; padding-left: 0; }
.header-4e24 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.header-4e24 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 8c6d */
.widget-item-d2 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.1;
}
