/* ============================================
   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 */
.content_thick_b150 p,
.lite-1343,
.video_7bde,
.mask-2221,
.sort_red_e95e,
.lower_fcbd,
.avatar_9dd1,
.aside-steel-2cd1 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.steel-24ca {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.steel-24ca > *,
.hover-liquid-cc61,
.content_thick_b150,
.chip-77eb {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .steel-24ca {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .steel-24ca {
    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 === */
.shade-blue-730c {
  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 */
.shade-blue-730c.progress_light_a6e2 {
  box-shadow: var(--shadow-md);
}

.block-8278 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.pattern-north-45e4 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.pressed-daf4 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.column-down-e32d {
  display: none;
}

/* Hide mobile actions on desktop */
.notice-c73c {
  display: none;
}

.feature_white_291e a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.feature_white_291e a:hover,
.feature_white_291e a.fn-active-1621 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.hovered-a82e {
  margin-left: 1rem;
}

.short-2945 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.tag_4d75,
.grid_1ee2 {
  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;
}

.tag_4d75 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.tag_4d75: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;
}

.grid_1ee2 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.grid_1ee2: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;
}

.tag_4d75 svg,
.grid_1ee2 svg {
  flex-shrink: 0;
}

.aside-pro-ee9f {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.content-c40c {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.content-c40c::before,
.content-c40c::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.content-c40c::before {
  top: -7px;
}

.content-c40c::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.pink_af9b {
  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 === */
.rough_fd2b {
  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);
}

.iron_47e0 {
  margin: 0 0 2rem;
  text-align: center;
}

.dropdown_aa41 {
  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;
}

.dropdown_aa41:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.shadow-dirty-db84 {
  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);
}

.shadow-dirty-db84 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.cool-766f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.pressed-0639 {
  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;
}

.pressed-0639:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.description-paper-73a7 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.nav_9b17 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.hot-eebc {
  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);
}

.hot-eebc .content_fixed_3d7d {
  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;
}

.hot-eebc .content_fixed_3d7d svg {
  flex-shrink: 0;
}

.hot-eebc .filter-fb71 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.hot-eebc .filter-fb71: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);
}

.hot-eebc .tag-smooth-a81c {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.hot-eebc .tag-smooth-a81c: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) {
  .rough_fd2b {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .dropdown_aa41 {
    max-width: 100%;
  }

  .cool-766f {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .pressed-0639 {
    padding: 1rem;
  }

  .description-paper-73a7 {
    font-size: 1.5rem;
  }

  .nav_9b17 {
    font-size: 0.75rem;
  }

  .shadow-dirty-db84 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .hot-eebc {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .hot-eebc .content_fixed_3d7d {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .cool-766f {
    grid-template-columns: 1fr;
  }
}

.module_7e4a {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.solid-4375 {
  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 === */
.component_9a45 {
  margin-bottom: 2.5rem;
}

.first-0d84 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.module_7e4a {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.search-d7ce {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.gradient-smooth-fe0c {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.highlight_purple_fa68 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.grid_liquid_3bb0 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.panel-selected-daf5 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.element-middle-20e6 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.sort_6bdd {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.sort_6bdd svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.video-fast-09d0 {
  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);
}

.focused-68ab {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.button_mini_a491 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.notification-fast-ae32 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.caption-2cde {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.secondary-selected-1330 {
  display: grid;
  gap: 1rem;
}

.primary_385c {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.short-7c41 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.frame_south_ee08 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.tag_e690 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.progress-top-b5b9 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.pagination-a795 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.pagination-a795 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.lite-1343 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.overlay_b3e0 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.element_wide_a244 {
  display: grid;
  gap: 2rem;
}

.backdrop_black_e934 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.gradient-smooth-fe0c {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.search-d7ce {
  flex: 1;
}

.grid_liquid_3bb0 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.grid_liquid_3bb0 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.right-5199 {
  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;
}

.panel-selected-daf5 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.easy-e95c {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.easy-e95c span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.box-warm-8f2c {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.box-warm-8f2c a {
  font-size: 0.875rem;
  font-weight: 500;
}

.menu_b524 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.menu_b524 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.menu_b524 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu_b524 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.copper_37a3 {
  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 === */
.notification-149f {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.outer_2be9 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.layout-top-263e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.hero-51a4 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.hero-51a4 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.hero-51a4 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.hero-51a4 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;
}

.hero-51a4 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.hero-51a4 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.content_thick_b150 {
  padding: 3rem 0 5rem;
}

.chip-77eb {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.chip-77eb.badge-f187 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.video_7bde {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.bottom_bc6c {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.feature_action_4ee2 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.feature_action_4ee2 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.link-large-072d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.top-b476 {
  text-align: center;
}

.first-2753 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.grid-d56d {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.progress-5c05 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.lower_fcbd {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.mask-2221 {
  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;
}

.mask-2221 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.mask-2221:hover {
  box-shadow: var(--shadow-lg);
}

.mask-2221.gallery_dcd4 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.mask-2221 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.mask-2221 ul {
  margin: 1rem 0;
}

.mask-2221 li {
  margin-bottom: 0.75rem;
}

.alert-0918 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.status_hard_0997 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.status_hard_0997 a {
  font-weight: 600;
}

/* === Data Tables === */
.fast_730b {
  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;
}

.fast_730b table {
  width: 100%;
  min-width: 600px;
}

.fast_730b thead {
  background-color: var(--primary-color);
  color: white;
}

.fast_730b th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.fast_730b td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.fast_730b tbody tr:hover {
  background-color: var(--bg-secondary);
}

.fast_730b tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.element-0870 {
  list-style: none;
  margin: 1.5rem 0;
}

.element-0870 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.element-0870 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.content-purple-cd7a::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-1621::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 === */
.clean_83d9 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.steel_896d {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.steel_896d img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.steel_896d strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.steel_896d span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.clean_83d9 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.avatar_9dd1 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.avatar_9dd1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.nav_15b8 {
  position: relative;
  margin-bottom: 3rem;
}

.overlay-9971 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.overlay-9971 .hot_993e {
  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;
}

.down_8d30 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.down_8d30 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.down_8d30 ul {
  margin: 1rem 0;
}

.down_8d30 li {
  margin-bottom: 0.75rem;
}

.active_2174 {
  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 === */
.widget-be5a {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.widget-be5a h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.table_0175 {
  list-style: none;
  margin: 1.5rem 0;
}

.table_0175 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.table_0175 a {
  font-weight: 600;
}

.icon_warm_42f6 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.aside-steel-2cd1 {
  margin: 2.5rem 0;
}

.main_5c6e {
  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;
}

.main_5c6e:hover {
  box-shadow: var(--shadow-lg);
}

.main_5c6e.light_dbff {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.basic-1fa5 {
  flex-shrink: 0;
}

.basic-1fa5 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);
}

.active_d7a7 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.border-dim-b985,
.selected-07d5,
.focused_ae25 {
  width: 100%;
  margin: 1.5rem 0;
}

.over-8e8c {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.over-8e8c strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.fresh_3884 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.fresh_3884 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.block-294f {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.block-294f strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.active_fast_4d3c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.mini_edad {
  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;
}

.mini_edad:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.mini_edad.active_clean_a5d1 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.mini_edad .filter_b04c {
  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;
}

.mini_edad h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.tall-175f {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.input-d396 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.input-d396 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.old_db77 {
  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 === */
.content_fixed_3d7d {
  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;
}

.filter-fb71 {
  background-color: var(--primary-color);
  color: white;
}

.filter-fb71:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.tag-smooth-a81c {
  background-color: var(--text-secondary);
  color: white;
}

.tag-smooth-a81c:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.brown_d364 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.brown_d364:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.new_3027 {
  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;
}

.new_3027:hover {
  background-color: var(--primary-dark);
}

.backdrop_current_0137 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.shadow-last-42c5 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.picture_rough_2ec4 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.current_457f {
  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 === */
.paper-4fd4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.cool_c41d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.cool_c41d h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.south-3a48 {
  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_c6ed {
  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;
}

.dropdown-inner-27b6 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.gold_8bd9 {
  list-style: none;
  counter-reset: rank-counter;
}

.gold_8bd9 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.gold_8bd9 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;
}

.down-25ca {
  list-style: none;
}

.down-25ca li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.header-right-d2d2 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.active_919f {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.active_919f .tiny_c4a6 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.active_919f .message_4dd7 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.panel_active_d358 {
  margin-top: 3rem;
}

.steel-7f8e {
  width: 100%;
}

.box-narrow-c0e7 {
  background-color: #fef3c7;
}

.menu_fixed_4aec {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.mask-bc4c {
  margin: 3rem 0;
}

.action-de77 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.outline-d859 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.outline-d859:hover {
  box-shadow: var(--shadow-lg);
}

.outline-d859.caption-7e02 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.thumbnail_81a7 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.cool-7a98 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.cool-7a98 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.highlight-88bf {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.outline-d859 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.backdrop-1be3 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.iron-4d36 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.down_d9fa {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.primary_97f1 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.block-selected-d0b5 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.filter-358d {
  margin-top: 1rem;
}

/* === FAQ Section === */
.heading_bright_da04 {
  max-width: 900px;
  margin: 0 auto;
}

.message_2147 {
  margin: 2rem 0;
}

.large_0809 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.large_0809 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.large_0809 summary::-webkit-details-marker {
  display: none;
}

.large_0809 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.dropdown-current-654b {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.large_0809[open] .dropdown-current-654b {
  transform: rotate(45deg);
}

.list_up_0852 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.list_up_0852 p:last-child {
  margin-bottom: 0;
}

.bright-eed0 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.modal_hot_5610 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.sort_96d0 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.sort_96d0 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.sort_96d0 .content_fixed_3d7d {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.tall_03db {
  max-width: 900px;
  margin: 0 auto;
}

.list_steel_2c6d {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.texture-red-f996 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.texture-red-f996.fn-success-1621 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.hero_blue_6a28 {
  font-size: 3rem;
  line-height: 1;
}

.gas_070a h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.solid-0734 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.pink-391b,
.shadow-wood-36dd {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.pink-391b h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.shadow-wood-36dd h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.complex-e732,
.notification_5ee6 {
  margin: 1.5rem 0;
}

.complex-e732 li,
.notification_5ee6 li {
  margin-bottom: 1rem;
}

.static-88a4 {
  margin: 3rem 0;
}

.badge-1b5f {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.badge-1b5f h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.badge-1b5f ol {
  margin: 1rem 0;
}

.badge-1b5f li {
  margin-bottom: 0.75rem;
}

.gas_0cd2 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.active-8f2e {
  margin: 2rem 0;
}

.pro-d923 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.simple_8834 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.carousel-b7b6 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.disabled-d701 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.tabs_cold_5753 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.blue_33ca {
  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;
}

.blue_33ca img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.highlight_purple_fa68 {
  flex: 1;
}

.highlight_purple_fa68 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.info-b3c6 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.nav-534a p {
  margin-bottom: 1rem;
}

.description_dirty_001a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.menu-668b {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.grid-6e67 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.grid-6e67 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.badge_61f4 h3 {
  margin-bottom: 1.5rem;
}

.content_c470 {
  display: grid;
  gap: 2rem;
}

.fluid_ba6d {
  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;
}

.fluid_ba6d img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.fluid_ba6d h4 {
  margin: 0 0 0.25rem;
}

.fluid_ba6d p {
  margin: 0;
  font-size: 0.9375rem;
}

.breadcrumb-middle-3b58 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.accent-e84d {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.accent-e84d h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.accent-e84d ul {
  margin: 1.5rem 0;
}

.accent-e84d li {
  margin-bottom: 0.75rem;
}

.glass_171f {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.hover-simple-faa4 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.sidebar_dca6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.nav_stale_4f2a h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.nav_stale_4f2a p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.description-small-16a6 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.description-small-16a6 a {
  color: rgba(255, 255, 255, 0.8);
}

.card-1af5 {
  list-style: none;
}

.card-1af5 li {
  margin-bottom: 0.75rem;
}

.card-1af5 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.card-1af5 a:hover {
  color: white;
}

.button_4430 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.description-f2ff {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.mini-4107 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.detail_hard_b4b0 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.tooltip_fixed_b440 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .steel-24ca {
    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;
  }

  .backdrop_ff18 {
    font-size: 1.5rem !important;
  }

  .first-0d84 {
    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 */
  .mask-2221,
  .sort_red_e95e,
  .down_8d30,
  .active_d7a7,
  .thumbnail_81a7,
  .outline-d859,
  .list_up_0852,
  .shadow-dirty-db84,
  .lite-1343,
  .video_7bde {
    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 */
  .module_7e4a {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .search-d7ce {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .gradient-smooth-fe0c {
    flex-shrink: 0;
  }

  .highlight_purple_fa68 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .grid_liquid_3bb0,
  .panel-selected-daf5 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .panel-selected-daf5 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .pressed-daf4 {
    display: none;
  }

  /* Show mobile actions */
  .notice-c73c {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .main-748d {
    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;
  }

  .main-748d svg {
    flex-shrink: 0;
  }

  .main-748d .heading_full_b1e6 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .main-748d .breadcrumb-8cb4 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .pressed_b219 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .orange-71c8 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .main-748d:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .column-down-e32d {
    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;
  }

  .column-down-e32d.fn-active-1621 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .column-down-e32d li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .column-down-e32d li:last-child {
    border-bottom: none;
  }

  .column-down-e32d a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .feature_white_291e {
    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;
  }

  .feature_white_291e li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .feature_white_291e li:last-child {
    border-bottom: none;
  }

  .feature_white_291e a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .hovered-a82e {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .short-2945 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .tag_4d75,
  .grid_1ee2 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .tag_4d75 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .grid_1ee2 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .feature_white_291e.fn-active-1621 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .aside-pro-ee9f {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .shade-blue-730c {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .block-8278 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .pink_af9b {
    margin-top: 0;
  }

  /* Hero section */
  .pink_af9b {
    padding: 2rem 0 1.5rem;
  }

  .first-0d84 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .lite-1343 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .rough_fd2b {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .dropdown_aa41 {
    max-width: 100%;
    border-radius: 8px;
  }

  .cool-766f {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .pressed-0639 {
    padding: 1rem;
  }

  .description-paper-73a7 {
    font-size: 1.5rem;
  }

  .nav_9b17 {
    font-size: 0.75rem;
  }

  .shadow-dirty-db84 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .hot-eebc {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .hot-eebc .content_fixed_3d7d {
    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 */
  .layout-top-263e {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .main_5c6e {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .basic-1fa5 {
    margin-bottom: 1rem;
  }

  /* Author */
  .backdrop_black_e934 {
    flex-direction: column;
  }

  .blue_33ca {
    flex-direction: column;
  }

  /* Quotes */
  .thumbnail_81a7 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .solid-0734 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .disabled-d701 {
    flex-direction: column;
  }

  .disabled-d701 .content_fixed_3d7d {
    width: 100%;
  }

  /* Version comparison */
  .active_fast_4d3c {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .paper-4fd4 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .sidebar_dca6 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mini-4107 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .fast_730b,
  .selected-07d5,
  .basic_71a5,
  .steel-7f8e,
  .border-dim-b985,
  .focused_ae25 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .fast_730b table,
  .selected-07d5 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .old_db77 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .steel-24ca {
    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;
  }

  .backdrop_ff18 {
    font-size: 1.25rem !important;
  }

  .first-0d84 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .shade-blue-730c {
    position: fixed;
  }

  .block-8278 {
    padding: 0.625rem 0;
  }

  .pattern-north-45e4 img {
    height: 26px;
  }

  .feature_white_291e {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .column-down-e32d {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .main-748d {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .main-748d svg {
    width: 18px;
    height: 18px;
  }

  .main-748d .heading_full_b1e6 {
    font-size: 0.7rem;
  }

  .main-748d .breadcrumb-8cb4 {
    font-size: 0.65rem;
  }

  .tag_4d75,
  .grid_1ee2 {
    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, .steel-24ca, .hover-liquid-cc61, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .rough_fd2b {
    padding: 1rem;
  }

  .cool-766f {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .pressed-0639 {
    padding: 0.875rem;
  }

  .description-paper-73a7 {
    font-size: 1.25rem;
  }

  .hot-eebc .content_fixed_3d7d {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .first-0d84 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .content_fixed_3d7d {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .backdrop_current_0137 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .main_5c6e {
    padding: 1rem;
  }

  .basic-1fa5 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .mask-2221,
  .pattern-mini-4fb2,
  .pattern-348a,
  .box-a888 {
    padding: 1rem;
  }
}

@media print {
  .shade-blue-730c,
  .notification-149f,
  .aside-pro-ee9f,
  .content_fixed_3d7d,
  .hover-simple-faa4 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .steel-24ca {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.primary-ee86 {
  margin-bottom: 3rem;
  text-align: center;
}

.backdrop_ff18 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.box-east-8709 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.badge_65cc,
.picture_stale_8ee1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.pattern_lite_89a9 {
  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;
}

.pattern_lite_89a9:hover {
  transform: translateY(-5px);
}

.pattern_lite_89a9 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.pattern_lite_89a9 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.last_aaa4 {
  margin: 3rem 0;
}

.notification_fa89 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.wrapper_silver_87a2 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.wrapper_silver_87a2:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.nav-down-f1af {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.notice-f83e {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.lower-f64f {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.text_new_a5d1 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.focus_pink_855b {
  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;
}

.focus_pink_855b:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.focus_pink_855b.outline-upper-4478 {
  border-left: 4px solid var(--primary-color);
}

.hover_c119 {
  flex-shrink: 0;
}

.hover_c119 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.component_4fb3 {
  flex: 1;
}

.component_4fb3 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.row-e660 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.container_medium_7c04,
.label-1de9,
.preview_5b26 {
  margin-bottom: 1.5rem;
}

.container_medium_7c04 h4,
.label-1de9 h4,
.preview_5b26 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.container_medium_7c04 ul,
.label-1de9 ul,
.preview_5b26 ul {
  list-style: none;
  padding: 0;
}

.container_medium_7c04 li,
.label-1de9 li,
.preview_5b26 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.container_medium_7c04 li:before,
.label-1de9 li:before,
.preview_5b26 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.fresh-4e30 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.fresh-4e30 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;
}

.fresh-4e30 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.hidden-69f3 { margin: 2rem 0; }
.list-2940 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.list-2940 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.white-9bce p { margin-bottom: 1rem; line-height: 1.7; }
.white-9bce strong { color: var(--text-primary); }
.white-9bce ul { list-style: none; padding-left: 0; }
.white-9bce ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.white-9bce ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.detail_5776 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.motion-c561 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.motion-c561:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.element_rough_7e69 { font-size: 3rem; margin-bottom: 1rem; }
.motion-c561 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.motion-c561 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.liquid_3f0b { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.liquid_3f0b span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.clean_6ed0 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.carousel-red-0d34 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.banner-copper-2334 { text-align: center; }
.media_bright_007a { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.carousel_pink_b368 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.dark_7f8a { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.north-af9e { margin: 2rem 0; }
.upper_03a6 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.upper_03a6 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.upper_03a6 p, .upper_03a6 ul { line-height: 1.7; }
.upper_03a6 ul { list-style: none; padding-left: 0; }
.upper_03a6 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.upper_03a6 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.slow-63f0 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.rough-78aa { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.badge_new_dfdb { text-align: center; }
.slider-south-c2cd { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.nav_stone_0fd6 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.input-fixed-f153 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.label_963c { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.focused-3423 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.focused-3423:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.focused-3423 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.focused-3423 p, .focused-3423 ul { line-height: 1.7; }
.focused-3423 ul { list-style: none; padding-left: 0; }
.focused-3423 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.focused-3423 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: c1fc */
.ghost-box-d6 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.2;
}
