/* ============================================
   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 */
.description_first_e4c0 p,
.highlight-inner-9aa8,
.main-3d38,
.row-b871,
.tertiary-full-9b43,
.main_old_bbaf,
.gradient_wood_0efc,
.list-bronze-2ad8 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.outer_c9be {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.outer_c9be > *,
.shade_edbd,
.description_first_e4c0,
.hovered_6262 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .outer_c9be {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .outer_c9be {
    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 === */
.hover-top-c538 {
  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 */
.hover-top-c538.link-pink-44f0 {
  box-shadow: var(--shadow-md);
}

.simple-e38b {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.image_a6f2 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.container-small-e290 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.slow-c35c {
  display: none;
}

/* Hide mobile actions on desktop */
.summary_large_9d6f {
  display: none;
}

.form_92f6 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.form_92f6 a:hover,
.form_92f6 a.fn-active-429f {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.progress-dafd {
  margin-left: 1rem;
}

.shadow_bc6d {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.dark_4d54,
.panel-iron-0211 {
  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;
}

.dark_4d54 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.dark_4d54: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;
}

.panel-iron-0211 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.panel-iron-0211: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;
}

.dark_4d54 svg,
.panel-iron-0211 svg {
  flex-shrink: 0;
}

.logo_stone_a801 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.north-35fd {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.north-35fd::before,
.north-35fd::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.north-35fd::before {
  top: -7px;
}

.north-35fd::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.fresh_7a67 {
  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 === */
.item-cbc7 {
  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);
}

.accent-7a2e {
  margin: 0 0 2rem;
  text-align: center;
}

.title_9be4 {
  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;
}

.title_9be4:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.description_huge_1452 {
  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);
}

.description_huge_1452 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.old-1754 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.border_f4de {
  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;
}

.border_f4de:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.shade-east-7483 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.thumbnail_7928 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.soft-0498 {
  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);
}

.soft-0498 .motion-bb32 {
  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;
}

.soft-0498 .motion-bb32 svg {
  flex-shrink: 0;
}

.soft-0498 .paragraph_complex_4eae {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.soft-0498 .paragraph_complex_4eae: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);
}

.soft-0498 .fixed_2dda {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.soft-0498 .fixed_2dda: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) {
  .item-cbc7 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .title_9be4 {
    max-width: 100%;
  }

  .old-1754 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .border_f4de {
    padding: 1rem;
  }

  .shade-east-7483 {
    font-size: 1.5rem;
  }

  .thumbnail_7928 {
    font-size: 0.75rem;
  }

  .description_huge_1452 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .soft-0498 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .soft-0498 .motion-bb32 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .old-1754 {
    grid-template-columns: 1fr;
  }
}

.active-center-f25e {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.table_blue_942f {
  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 === */
.item_cc23 {
  margin-bottom: 2.5rem;
}

.slider-5684 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.active-center-f25e {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.row_basic_89ca {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.button-af8f {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.paper_95ad {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.module-0b73 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.module_69cc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.carousel-cea7 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.component-solid-fe93 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.component-solid-fe93 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.selected-c0a8 {
  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);
}

.pattern-ac56 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.list-f6c0 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.advanced-bfa4 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.hidden-ff1f {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.old-606f {
  display: grid;
  gap: 1rem;
}

.right_a739 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.accordion_4bea {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.border_8a1f {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.widget-7a67 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.shade-static-e832 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.white-19db {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.white-19db p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.highlight-inner-9aa8 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.gradient_blue_df56 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.tall_67fb {
  display: grid;
  gap: 2rem;
}

.simple_8a82 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.button-af8f {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.row_basic_89ca {
  flex: 1;
}

.module-0b73 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.module-0b73 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.fast-74dd {
  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;
}

.module_69cc {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.text-soft-3ca5 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.text-soft-3ca5 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.aside_ec04 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.aside_ec04 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.static-5c4c {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.static-5c4c strong {
  display: block;
  margin-bottom: 0.75rem;
}

.static-5c4c ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.static-5c4c li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.focused_1710 {
  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 === */
.outline_565c {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.east-8378 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.background-ebac {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.video-cold-e3e6 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.video-cold-e3e6 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.video-cold-e3e6 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.video-cold-e3e6 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;
}

.video-cold-e3e6 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.video-cold-e3e6 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.description_first_e4c0 {
  padding: 3rem 0 5rem;
}

.hovered_6262 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.hovered_6262.content_1dcd {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.main-3d38 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.pro_4caf {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.table_hard_1b92 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.table_hard_1b92 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.inner_d353 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.avatar-ff1c {
  text-align: center;
}

.iron-466b {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.detail-white-d582 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.main-925e {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.main_old_bbaf {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.row-b871 {
  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;
}

.row-b871 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.row-b871:hover {
  box-shadow: var(--shadow-lg);
}

.row-b871.element_cool_ed89 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.row-b871 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.row-b871 ul {
  margin: 1rem 0;
}

.row-b871 li {
  margin-bottom: 0.75rem;
}

.huge_f4cb {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.orange-5725 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.orange-5725 a {
  font-weight: 600;
}

/* === Data Tables === */
.bottom-1851 {
  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;
}

.bottom-1851 table {
  width: 100%;
  min-width: 600px;
}

.bottom-1851 thead {
  background-color: var(--primary-color);
  color: white;
}

.bottom-1851 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.bottom-1851 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.bottom-1851 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.bottom-1851 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.texture_afea {
  list-style: none;
  margin: 1.5rem 0;
}

.texture_afea li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.texture_afea li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.fluid-3993::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-429f::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 === */
.cool_6031 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.hero-0a05 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-0a05 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.hero-0a05 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.hero-0a05 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.cool_6031 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.gradient_wood_0efc {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.gradient_wood_0efc::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.next_e5c8 {
  position: relative;
  margin-bottom: 3rem;
}

.icon-1bbc {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.icon-1bbc .modal_prev_85af {
  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;
}

.element-ce33 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.element-ce33 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.element-ce33 ul {
  margin: 1rem 0;
}

.element-ce33 li {
  margin-bottom: 0.75rem;
}

.badge_f00d {
  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 === */
.shade-4326 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.shade-4326 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.medium_cc90 {
  list-style: none;
  margin: 1.5rem 0;
}

.medium_cc90 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.medium_cc90 a {
  font-weight: 600;
}

.hero_fresh_0fa4 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.list-bronze-2ad8 {
  margin: 2.5rem 0;
}

.grid_blue_588c {
  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;
}

.grid_blue_588c:hover {
  box-shadow: var(--shadow-lg);
}

.grid_blue_588c.basic_6148 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.carousel-north-9d60 {
  flex-shrink: 0;
}

.carousel-north-9d60 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);
}

.message-ccb6 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.description_8009,
.stale-4c8c,
.notice-2354 {
  width: 100%;
  margin: 1.5rem 0;
}

.accordion-4736 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.accordion-4736 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.column-2f1f {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.column-2f1f strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.widget-7a3f {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.widget-7a3f strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.label-3c05 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.liquid_b51c {
  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;
}

.liquid_b51c:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.liquid_b51c.media-2164 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.liquid_b51c .out-3db8 {
  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;
}

.liquid_b51c h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.grid-612c {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.secondary_62b5 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.secondary_62b5 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.gallery-green-77e5 {
  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 === */
.motion-bb32 {
  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;
}

.paragraph_complex_4eae {
  background-color: var(--primary-color);
  color: white;
}

.paragraph_complex_4eae:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.fixed_2dda {
  background-color: var(--text-secondary);
  color: white;
}

.fixed_2dda:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.slider-4c08 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.slider-4c08:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.west-a530 {
  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;
}

.west-a530:hover {
  background-color: var(--primary-dark);
}

.title-huge-019a {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.clean_860a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.disabled-outer-09b7 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.prev-5e05 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #fef3c7;
  color: #92400e;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* === Demographics & Data Visualization === */
.fast-77ef {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.chip_cd17 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.chip_cd17 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.header-complex-bfff {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.table-19a3 {
  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;
}

.main-331b {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.fast_1cf8 {
  list-style: none;
  counter-reset: rank-counter;
}

.fast_1cf8 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.fast_1cf8 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;
}

.left-3f08 {
  list-style: none;
}

.left-3f08 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.label_110c {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.east_a0a2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.east_a0a2 .small-715b {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.east_a0a2 .item-dynamic-dbc0 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.logo_huge_c8fb {
  margin-top: 3rem;
}

.glass-ae98 {
  width: 100%;
}

.sort_motion_1f28 {
  background-color: #fef3c7;
}

.yellow_5e8f {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.secondary-e248 {
  margin: 3rem 0;
}

.mini_5518 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.chip-right-a047 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.chip-right-a047:hover {
  box-shadow: var(--shadow-lg);
}

.chip-right-a047.slider_hot_b2ff {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.list-dim-a873 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.image_7d58 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.image_7d58 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.clean_192c {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.chip-right-a047 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.full-84ca {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pattern-pink-f315 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.sort_rough_dd4b {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.yellow-89ff {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.panel-west-049e {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.alert-23e3 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.label-bf3b {
  max-width: 900px;
  margin: 0 auto;
}

.table-4538 {
  margin: 2rem 0;
}

.fresh-fc61 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.fresh-fc61 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.fresh-fc61 summary::-webkit-details-marker {
  display: none;
}

.fresh-fc61 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.copper_779f {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.fresh-fc61[open] .copper_779f {
  transform: rotate(45deg);
}

.lite-a9e0 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.lite-a9e0 p:last-child {
  margin-bottom: 0;
}

.shade_0ced {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.shadow-3539 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.gradient-slow-a255 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.gradient-slow-a255 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.gradient-slow-a255 .motion-bb32 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.slow_6a53 {
  max-width: 900px;
  margin: 0 auto;
}

.pink_5643 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.nav_9821 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.nav_9821.fn-success-429f {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.heading-89bf {
  font-size: 3rem;
  line-height: 1;
}

.article_static_775f h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.element-first-5ec1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.pink-ff1b,
.texture_4894 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.pink-ff1b h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.texture_4894 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.aside-65f0,
.section-8276 {
  margin: 1.5rem 0;
}

.aside-65f0 li,
.section-8276 li {
  margin-bottom: 1rem;
}

.full-9940 {
  margin: 3rem 0;
}

.layout_outer_86c7 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.layout_outer_86c7 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.layout_outer_86c7 ol {
  margin: 1rem 0;
}

.layout_outer_86c7 li {
  margin-bottom: 0.75rem;
}

.form_2058 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.outline-red-994a {
  margin: 2rem 0;
}

.tabs_fast_1eb5 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.popup_up_48bc {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.alert_purple_6b2f {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.frame-bright-defc {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.up_938a {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.component_bronze_1cb7 {
  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;
}

.component_bronze_1cb7 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.paper_95ad {
  flex: 1;
}

.paper_95ad h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.secondary-74a4 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.content-static-8d52 p {
  margin-bottom: 1rem;
}

.sidebar_dim_34a1 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.layout_c51b {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.narrow-03a0 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.narrow-03a0 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.card-red-32bd h3 {
  margin-bottom: 1.5rem;
}

.stale-e4ca {
  display: grid;
  gap: 2rem;
}

.tiny_cc15 {
  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;
}

.tiny_cc15 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.tiny_cc15 h4 {
  margin: 0 0 0.25rem;
}

.tiny_cc15 p {
  margin: 0;
  font-size: 0.9375rem;
}

.overlay-e48e {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.table_warm_e707 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.table_warm_e707 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.table_warm_e707 ul {
  margin: 1.5rem 0;
}

.table_warm_e707 li {
  margin-bottom: 0.75rem;
}

.gradient_easy_4d3c {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.static-8278 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.soft-f4ee {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.solid-4e32 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.solid-4e32 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.hero_3e17 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.hero_3e17 a {
  color: rgba(255, 255, 255, 0.8);
}

.clean_ce85 {
  list-style: none;
}

.clean_ce85 li {
  margin-bottom: 0.75rem;
}

.clean_ce85 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.clean_ce85 a:hover {
  color: white;
}

.hero_slow_58d5 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.article-44b8 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.dark-48c5 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.widget-middle-759a {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.shadow_plasma_e79a {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .outer_c9be {
    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;
  }

  .text_down_150f {
    font-size: 1.5rem !important;
  }

  .slider-5684 {
    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 */
  .row-b871,
  .tertiary-full-9b43,
  .element-ce33,
  .message-ccb6,
  .list-dim-a873,
  .chip-right-a047,
  .lite-a9e0,
  .description_huge_1452,
  .highlight-inner-9aa8,
  .main-3d38 {
    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 */
  .active-center-f25e {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .row_basic_89ca {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .button-af8f {
    flex-shrink: 0;
  }

  .paper_95ad {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .module-0b73,
  .module_69cc {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .module_69cc {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .container-small-e290 {
    display: none;
  }

  /* Show mobile actions */
  .summary_large_9d6f {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .caption-572e {
    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;
  }

  .caption-572e svg {
    flex-shrink: 0;
  }

  .caption-572e .lower-4ed6 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .caption-572e .hard-c059 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .list_smooth_354c {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .prev-76b2 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .caption-572e:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .slow-c35c {
    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;
  }

  .slow-c35c.fn-active-429f {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .slow-c35c li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .slow-c35c li:last-child {
    border-bottom: none;
  }

  .slow-c35c a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .form_92f6 {
    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;
  }

  .form_92f6 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .form_92f6 li:last-child {
    border-bottom: none;
  }

  .form_92f6 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .progress-dafd {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .shadow_bc6d {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .dark_4d54,
  .panel-iron-0211 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .dark_4d54 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .panel-iron-0211 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .form_92f6.fn-active-429f {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .logo_stone_a801 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .hover-top-c538 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .simple-e38b {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .fresh_7a67 {
    margin-top: 0;
  }

  /* Hero section */
  .fresh_7a67 {
    padding: 2rem 0 1.5rem;
  }

  .slider-5684 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .highlight-inner-9aa8 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .item-cbc7 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .title_9be4 {
    max-width: 100%;
    border-radius: 8px;
  }

  .old-1754 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .border_f4de {
    padding: 1rem;
  }

  .shade-east-7483 {
    font-size: 1.5rem;
  }

  .thumbnail_7928 {
    font-size: 0.75rem;
  }

  .description_huge_1452 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .soft-0498 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .soft-0498 .motion-bb32 {
    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 */
  .background-ebac {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .grid_blue_588c {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .carousel-north-9d60 {
    margin-bottom: 1rem;
  }

  /* Author */
  .simple_8a82 {
    flex-direction: column;
  }

  .component_bronze_1cb7 {
    flex-direction: column;
  }

  /* Quotes */
  .list-dim-a873 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .element-first-5ec1 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .frame-bright-defc {
    flex-direction: column;
  }

  .frame-bright-defc .motion-bb32 {
    width: 100%;
  }

  /* Version comparison */
  .label-3c05 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .fast-77ef {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .soft-f4ee {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .dark-48c5 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .bottom-1851,
  .stale-4c8c,
  .south-42db,
  .glass-ae98,
  .description_8009,
  .notice-2354 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .bottom-1851 table,
  .stale-4c8c table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .gallery-green-77e5 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .outer_c9be {
    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;
  }

  .text_down_150f {
    font-size: 1.25rem !important;
  }

  .slider-5684 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .hover-top-c538 {
    position: fixed;
  }

  .simple-e38b {
    padding: 0.625rem 0;
  }

  .image_a6f2 img {
    height: 26px;
  }

  .form_92f6 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .slow-c35c {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .caption-572e {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .caption-572e svg {
    width: 18px;
    height: 18px;
  }

  .caption-572e .lower-4ed6 {
    font-size: 0.7rem;
  }

  .caption-572e .hard-c059 {
    font-size: 0.65rem;
  }

  .dark_4d54,
  .panel-iron-0211 {
    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, .outer_c9be, .shade_edbd, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .item-cbc7 {
    padding: 1rem;
  }

  .old-1754 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .border_f4de {
    padding: 0.875rem;
  }

  .shade-east-7483 {
    font-size: 1.25rem;
  }

  .soft-0498 .motion-bb32 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .slider-5684 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .motion-bb32 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .title-huge-019a {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .grid_blue_588c {
    padding: 1rem;
  }

  .carousel-north-9d60 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .row-b871,
  .row_d609,
  .item-tiny-9cb7,
  .info-7bb2 {
    padding: 1rem;
  }
}

@media print {
  .hover-top-c538,
  .outline_565c,
  .logo_stone_a801,
  .motion-bb32,
  .static-8278 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .outer_c9be {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.hard_3722 {
  margin-bottom: 3rem;
  text-align: center;
}

.text_down_150f {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.pattern-aaa5 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.image-4031,
.left_2058 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.wrapper_505f {
  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;
}

.wrapper_505f:hover {
  transform: translateY(-5px);
}

.wrapper_505f strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.wrapper_505f span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.caption_clean_626b {
  margin: 3rem 0;
}

.text-focused-f1a2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.detail_stone_963b {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.detail_stone_963b:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.banner_751f {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.column_fast_7049 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.shade_f694 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.photo-7d5c {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.stale_65d8 {
  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;
}

.stale_65d8:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.stale_65d8.hover_first_f9df {
  border-left: 4px solid var(--primary-color);
}

.status-left-2a20 {
  flex-shrink: 0;
}

.status-left-2a20 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.disabled_fa13 {
  flex: 1;
}

.disabled_fa13 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.search-3736 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.dark_bc42,
.backdrop-b182,
.feature_71ea {
  margin-bottom: 1.5rem;
}

.dark_bc42 h4,
.backdrop-b182 h4,
.feature_71ea h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dark_bc42 ul,
.backdrop-b182 ul,
.feature_71ea ul {
  list-style: none;
  padding: 0;
}

.dark_bc42 li,
.backdrop-b182 li,
.feature_71ea li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.dark_bc42 li:before,
.backdrop-b182 li:before,
.feature_71ea li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.form-cold-2c15 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.form-cold-2c15 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;
}

.form-cold-2c15 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.label-7299 { margin: 2rem 0; }
.plasma_2d21 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.plasma_2d21 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.overlay_7a3c p { margin-bottom: 1rem; line-height: 1.7; }
.overlay_7a3c strong { color: var(--text-primary); }
.overlay_7a3c ul { list-style: none; padding-left: 0; }
.overlay_7a3c ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.overlay_7a3c ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.modal-hard-05d7 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.filter-2d93 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.filter-2d93:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.info_c268 { font-size: 3rem; margin-bottom: 1rem; }
.filter-2d93 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.filter-2d93 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.input_upper_49a3 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.input_upper_49a3 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.warm-b296 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.content-over-1b1f { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.tabs-selected-2074 { text-align: center; }
.stone_3e05 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.block-1e7a { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.modal_hovered_ad90 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.column_a2a5 { margin: 2rem 0; }
.accent_huge_6a9a { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.accent_huge_6a9a h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.accent_huge_6a9a p, .accent_huge_6a9a ul { line-height: 1.7; }
.accent_huge_6a9a ul { list-style: none; padding-left: 0; }
.accent_huge_6a9a ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.accent_huge_6a9a ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.search-4dd5 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.input-steel-436b { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.mask_ea9f { text-align: center; }
.popup-red-fad0 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.tertiary-ff70 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.stale_7b7f { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.yellow-b699 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.fresh_9952 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.fresh_9952:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.fresh_9952 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.fresh_9952 p, .fresh_9952 ul { line-height: 1.7; }
.fresh_9952 ul { list-style: none; padding-left: 0; }
.fresh_9952 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.fresh_9952 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: a699 */
.phantom-card-b3 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}
