/* ============================================
   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 */
.modal_white_33f8 p,
.thumbnail_fb0b,
.soft_a14a,
.banner_pressed_aece,
.caption-gold-ae3c,
.advanced_cc7c,
.static_e915,
.selected-9bfb {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.picture_middle_ff41 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.picture_middle_ff41 > *,
.active-5093,
.modal_white_33f8,
.out_2f75 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .picture_middle_ff41 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .picture_middle_ff41 {
    padding: 0 1rem;
  }
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  letter-spacing: -0.015em;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.25rem;
}

strong {
  font-weight: 600;
  color: var(--text-primary);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

code {
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 0.875em;
  background-color: var(--bg-tertiary);
  padding: 0.2em 0.4em;
  border-radius: 3px;
  color: var(--accent-color);
}

pre {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 1px solid var(--border-color);
}

pre code {
  background: none;
  padding: 0;
  color: var(--text-primary);
}

/* === Header/Navigation === */
.tag_b7e5 {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

/* Enhance shadow when scrolled */
.tag_b7e5.gradient_6146 {
  box-shadow: var(--shadow-md);
}

.photo_e694 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.small_f035 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.row-fresh-152b {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.background_8cc5 {
  display: none;
}

/* Hide mobile actions on desktop */
.old_c7a8 {
  display: none;
}

.liquid-2eca a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.liquid-2eca a:hover,
.liquid-2eca a.fn-active-8046 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.backdrop-f868 {
  margin-left: 1rem;
}

.footer-rough-ed99 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.progress_bottom_7b3e,
.table-under-c8ac {
  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;
}

.progress_bottom_7b3e {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.progress_bottom_7b3e: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;
}

.table-under-c8ac {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.table-under-c8ac: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;
}

.progress_bottom_7b3e svg,
.table-under-c8ac svg {
  flex-shrink: 0;
}

.list-52cb {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.column-plasma-e4c5 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.column-plasma-e4c5::before,
.column-plasma-e4c5::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.column-plasma-e4c5::before {
  top: -7px;
}

.column-plasma-e4c5::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.title-52ba {
  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 === */
.button_rough_9a2f {
  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);
}

.outline_6ca4 {
  margin: 0 0 2rem;
  text-align: center;
}

.block_thick_c363 {
  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;
}

.block_thick_c363:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.tabs-9322 {
  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);
}

.tabs-9322 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.plasma_fe17 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.tag_3a63 {
  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;
}

.tag_3a63:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.tiny-8e55 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.highlight_956a {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.popup-clean-1f68 {
  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);
}

.popup-clean-1f68 .banner_cold_07df {
  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;
}

.popup-clean-1f68 .banner_cold_07df svg {
  flex-shrink: 0;
}

.popup-clean-1f68 .heading-94f8 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.popup-clean-1f68 .heading-94f8: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);
}

.popup-clean-1f68 .south_0afb {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.popup-clean-1f68 .south_0afb: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) {
  .button_rough_9a2f {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .block_thick_c363 {
    max-width: 100%;
  }

  .plasma_fe17 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .tag_3a63 {
    padding: 1rem;
  }

  .tiny-8e55 {
    font-size: 1.5rem;
  }

  .highlight_956a {
    font-size: 0.75rem;
  }

  .tabs-9322 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .popup-clean-1f68 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .popup-clean-1f68 .banner_cold_07df {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .plasma_fe17 {
    grid-template-columns: 1fr;
  }
}

.middle-13e7 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tag_static_67ed {
  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 === */
.bottom-4821 {
  margin-bottom: 2.5rem;
}

.label_outer_0348 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.middle-13e7 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.article_first_2fb8 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.slider-fea1 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.module-dbe8 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.prev_7835 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.hero_2d78 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.component_plasma_3010 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.gallery_5142 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.gallery_5142 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.search-hot-8e9d {
  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);
}

.module-cdf3 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.easy_6a27 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.primary_2ec8 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.upper_5d36 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.hard-f1d2 {
  display: grid;
  gap: 1rem;
}

.clean_ab8f {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.hover_7258 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.chip_2087 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.focus-f1eb {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.feature-bronze-5c29 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.section_a50c {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.section_a50c p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.thumbnail_fb0b {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.hero-b5f9 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.gold_fd9b {
  display: grid;
  gap: 2rem;
}

.dark_0964 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.slider-fea1 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.article_first_2fb8 {
  flex: 1;
}

.prev_7835 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.prev_7835 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.footer_1369 {
  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;
}

.hero_2d78 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.container_2a4b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.container_2a4b span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.row_f079 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.row_f079 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.prev-f946 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.prev-f946 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.prev-f946 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.prev-f946 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.pagination-5734 {
  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 === */
.tiny-84a9 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.icon-old-5cfe {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.table-9c7e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.row-top-63a0 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.row-top-63a0 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.row-top-63a0 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.row-top-63a0 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;
}

.row-top-63a0 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.row-top-63a0 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.modal_white_33f8 {
  padding: 3rem 0 5rem;
}

.out_2f75 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.out_2f75.brown-4b7d {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.soft_a14a {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.border-6b1d {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.frame-fd35 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.frame-fd35 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.sidebar_down_5345 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.east_a9af {
  text-align: center;
}

.shade_c294 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.header-dirty-79ad {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.tertiary_blue_2462 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.advanced_cc7c {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.banner_pressed_aece {
  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;
}

.banner_pressed_aece * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.banner_pressed_aece:hover {
  box-shadow: var(--shadow-lg);
}

.banner_pressed_aece.pagination-8bda {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.banner_pressed_aece h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.banner_pressed_aece ul {
  margin: 1rem 0;
}

.banner_pressed_aece li {
  margin-bottom: 0.75rem;
}

.list_center_e452 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.action-f5e3 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.action-f5e3 a {
  font-weight: 600;
}

/* === Data Tables === */
.caption_e0fd {
  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;
}

.caption_e0fd table {
  width: 100%;
  min-width: 600px;
}

.caption_e0fd thead {
  background-color: var(--primary-color);
  color: white;
}

.caption_e0fd th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.caption_e0fd td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.caption_e0fd tbody tr:hover {
  background-color: var(--bg-secondary);
}

.caption_e0fd tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.element_af9a {
  list-style: none;
  margin: 1.5rem 0;
}

.element_af9a li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.element_af9a li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.north_c28f::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-8046::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 === */
.mask-8e64 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.accordion_left_7f42 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.accordion_left_7f42 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.accordion_left_7f42 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.accordion_left_7f42 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.mask-8e64 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.static_e915 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.static_e915::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.header_south_41d9 {
  position: relative;
  margin-bottom: 3rem;
}

.copper_27c9 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.copper_27c9 .hidden-solid-0fb3 {
  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;
}

.table_next_8e6a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.table_next_8e6a h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.table_next_8e6a ul {
  margin: 1rem 0;
}

.table_next_8e6a li {
  margin-bottom: 0.75rem;
}

.tabs-complex-f6b0 {
  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 === */
.box-8712 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.box-8712 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.hover_rough_8f81 {
  list-style: none;
  margin: 1.5rem 0;
}

.hover_rough_8f81 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.hover_rough_8f81 a {
  font-weight: 600;
}

.notice_d2d8 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.selected-9bfb {
  margin: 2.5rem 0;
}

.hot_dd29 {
  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;
}

.hot_dd29:hover {
  box-shadow: var(--shadow-lg);
}

.hot_dd29.paper_cfa4 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.thumbnail-out-be6d {
  flex-shrink: 0;
}

.thumbnail-out-be6d 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);
}

.in_b463 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.detail-current-c56f,
.block-over-6f00,
.block_upper_fe0c {
  width: 100%;
  margin: 1.5rem 0;
}

.east_f18b {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.east_f18b strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.row-707d {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.row-707d strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.yellow_644e {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.yellow_644e strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.backdrop_white_822f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.hero_focused_dd74 {
  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;
}

.hero_focused_dd74:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.hero_focused_dd74.in_41d7 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.hero_focused_dd74 .red_ec58 {
  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;
}

.hero_focused_dd74 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.nav-5cbe {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.photo_7ae2 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.photo_7ae2 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.complex-7894 {
  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 === */
.banner_cold_07df {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.heading-94f8 {
  background-color: var(--primary-color);
  color: white;
}

.heading-94f8:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.south_0afb {
  background-color: var(--text-secondary);
  color: white;
}

.south_0afb:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.purple_fbe3 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.purple_fbe3:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.secondary_bbdf {
  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;
}

.secondary_bbdf:hover {
  background-color: var(--primary-dark);
}

.image_25ba {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.layout-a237 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.content-bright-f7b9 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.plasma-bcc6 {
  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 === */
.grid_e793 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.first-c748 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.first-c748 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.row_9e36 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.summary_cf66 {
  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;
}

.pattern-25f1 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.message-88d1 {
  list-style: none;
  counter-reset: rank-counter;
}

.message-88d1 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.message-88d1 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;
}

.info_0194 {
  list-style: none;
}

.info_0194 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.logo_43f8 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.summary-8e01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.summary-8e01 .tabs-orange-9924 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.summary-8e01 .nav-0767 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.element-easy-3eb9 {
  margin-top: 3rem;
}

.title-hard-c1d3 {
  width: 100%;
}

.feature-8515 {
  background-color: #fef3c7;
}

.frame-9cda {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.section-022f {
  margin: 3rem 0;
}

.tag-1616 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.message_667d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.message_667d:hover {
  box-shadow: var(--shadow-lg);
}

.message_667d.first_fdfb {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.fast-989e {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.message_f3e2 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.message_f3e2 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hidden-23b6 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.message_667d blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.tiny-c700 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.search_fa40 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.narrow_d17f {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.info-red-ebb4 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.plasma-eadc {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.detail-c8fe {
  margin-top: 1rem;
}

/* === FAQ Section === */
.preview-93b8 {
  max-width: 900px;
  margin: 0 auto;
}

.sidebar-d084 {
  margin: 2rem 0;
}

.bronze-58d4 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.bronze-58d4 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.bronze-58d4 summary::-webkit-details-marker {
  display: none;
}

.bronze-58d4 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.input_green_01e6 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.bronze-58d4[open] .input_green_01e6 {
  transform: rotate(45deg);
}

.iron-f326 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.iron-f326 p:last-child {
  margin-bottom: 0;
}

.solid-cea4 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.item-f468 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.over-d9dd {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.over-d9dd p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.over-d9dd .banner_cold_07df {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.simple_3e61 {
  max-width: 900px;
  margin: 0 auto;
}

.overlay-8385 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.smooth-654e {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.smooth-654e.fn-success-8046 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.active-26fc {
  font-size: 3rem;
  line-height: 1;
}

.active_5bbc h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.pattern-white-5dde {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.complex-505d,
.filter-cold-cb5f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.complex-505d h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.filter-cold-cb5f h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.bright_9dfd,
.mask_outer_e851 {
  margin: 1.5rem 0;
}

.bright_9dfd li,
.mask_outer_e851 li {
  margin-bottom: 1rem;
}

.text-plasma-24bd {
  margin: 3rem 0;
}

.thumbnail_left_096f {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.thumbnail_left_096f h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.thumbnail_left_096f ol {
  margin: 1rem 0;
}

.thumbnail_left_096f li {
  margin-bottom: 0.75rem;
}

.medium-28e5 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.footer-upper-d28d {
  margin: 2rem 0;
}

.pattern_liquid_efd6 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.column-aeab {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.modal_out_c4e2 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.menu-brown-23fa {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.layout_new_afaf {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.carousel_hard_b479 {
  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;
}

.carousel_hard_b479 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.module-dbe8 {
  flex: 1;
}

.module-dbe8 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.highlight_west_82d0 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.full-e314 p {
  margin-bottom: 1rem;
}

.disabled_64d4 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.card_0631 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.tag-dark-1378 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.tag-dark-1378 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.input_6956 h3 {
  margin-bottom: 1.5rem;
}

.form-right-ea5a {
  display: grid;
  gap: 2rem;
}

.logo-b4a6 {
  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;
}

.logo-b4a6 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.logo-b4a6 h4 {
  margin: 0 0 0.25rem;
}

.logo-b4a6 p {
  margin: 0;
  font-size: 0.9375rem;
}

.element_outer_2811 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.picture-4f16 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.picture-4f16 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.picture-4f16 ul {
  margin: 1.5rem 0;
}

.picture-4f16 li {
  margin-bottom: 0.75rem;
}

.summary_fast_7fcd {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.media-current-89ad {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.list-upper-ab97 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.slow-822c h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.slow-822c p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.gallery-bottom-a49a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.gallery-bottom-a49a a {
  color: rgba(255, 255, 255, 0.8);
}

.stale_7ad8 {
  list-style: none;
}

.stale_7ad8 li {
  margin-bottom: 0.75rem;
}

.stale_7ad8 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.stale_7ad8 a:hover {
  color: white;
}

.right_9f33 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.hovered_44d1 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.mask-south-698c {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.shadow-dark-fb0e {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.slow_4164 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .picture_middle_ff41 {
    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;
  }

  .hero_tall_7e96 {
    font-size: 1.5rem !important;
  }

  .label_outer_0348 {
    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 */
  .banner_pressed_aece,
  .caption-gold-ae3c,
  .table_next_8e6a,
  .in_b463,
  .fast-989e,
  .message_667d,
  .iron-f326,
  .tabs-9322,
  .thumbnail_fb0b,
  .soft_a14a {
    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 */
  .middle-13e7 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .article_first_2fb8 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .slider-fea1 {
    flex-shrink: 0;
  }

  .module-dbe8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .prev_7835,
  .hero_2d78 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero_2d78 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .row-fresh-152b {
    display: none;
  }

  /* Show mobile actions */
  .old_c7a8 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .green_de3d {
    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;
  }

  .green_de3d svg {
    flex-shrink: 0;
  }

  .green_de3d .main-paper-86d7 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .green_de3d .text_3986 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .box_simple_270d {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .backdrop-steel-d6da {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .green_de3d:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .background_8cc5 {
    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;
  }

  .background_8cc5.fn-active-8046 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .background_8cc5 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .background_8cc5 li:last-child {
    border-bottom: none;
  }

  .background_8cc5 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .liquid-2eca {
    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;
  }

  .liquid-2eca li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .liquid-2eca li:last-child {
    border-bottom: none;
  }

  .liquid-2eca a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .backdrop-f868 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .footer-rough-ed99 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .progress_bottom_7b3e,
  .table-under-c8ac {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .progress_bottom_7b3e {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .table-under-c8ac {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .liquid-2eca.fn-active-8046 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .list-52cb {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .tag_b7e5 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .photo_e694 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .title-52ba {
    margin-top: 0;
  }

  /* Hero section */
  .title-52ba {
    padding: 2rem 0 1.5rem;
  }

  .label_outer_0348 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .thumbnail_fb0b {
    font-size: 1rem;
  }

  /* Hero brand image */
  .button_rough_9a2f {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .block_thick_c363 {
    max-width: 100%;
    border-radius: 8px;
  }

  .plasma_fe17 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .tag_3a63 {
    padding: 1rem;
  }

  .tiny-8e55 {
    font-size: 1.5rem;
  }

  .highlight_956a {
    font-size: 0.75rem;
  }

  .tabs-9322 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .popup-clean-1f68 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .popup-clean-1f68 .banner_cold_07df {
    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 */
  .table-9c7e {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .hot_dd29 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .thumbnail-out-be6d {
    margin-bottom: 1rem;
  }

  /* Author */
  .dark_0964 {
    flex-direction: column;
  }

  .carousel_hard_b479 {
    flex-direction: column;
  }

  /* Quotes */
  .fast-989e {
    flex-direction: column;
  }

  /* Pros/Cons */
  .pattern-white-5dde {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .menu-brown-23fa {
    flex-direction: column;
  }

  .menu-brown-23fa .banner_cold_07df {
    width: 100%;
  }

  /* Version comparison */
  .backdrop_white_822f {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .grid_e793 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .list-upper-ab97 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mask-south-698c {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .caption_e0fd,
  .block-over-6f00,
  .lower-a138,
  .title-hard-c1d3,
  .detail-current-c56f,
  .block_upper_fe0c {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .caption_e0fd table,
  .block-over-6f00 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .complex-7894 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .picture_middle_ff41 {
    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;
  }

  .hero_tall_7e96 {
    font-size: 1.25rem !important;
  }

  .label_outer_0348 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .tag_b7e5 {
    position: fixed;
  }

  .photo_e694 {
    padding: 0.625rem 0;
  }

  .small_f035 img {
    height: 26px;
  }

  .liquid-2eca {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .background_8cc5 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .green_de3d {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .green_de3d svg {
    width: 18px;
    height: 18px;
  }

  .green_de3d .main-paper-86d7 {
    font-size: 0.7rem;
  }

  .green_de3d .text_3986 {
    font-size: 0.65rem;
  }

  .progress_bottom_7b3e,
  .table-under-c8ac {
    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, .picture_middle_ff41, .active-5093, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .button_rough_9a2f {
    padding: 1rem;
  }

  .plasma_fe17 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .tag_3a63 {
    padding: 0.875rem;
  }

  .tiny-8e55 {
    font-size: 1.25rem;
  }

  .popup-clean-1f68 .banner_cold_07df {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .label_outer_0348 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .banner_cold_07df {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .image_25ba {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .hot_dd29 {
    padding: 1rem;
  }

  .thumbnail-out-be6d span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .banner_pressed_aece,
  .banner_iron_883b,
  .component_lite_4fc8,
  .tabs-medium-5f81 {
    padding: 1rem;
  }
}

@media print {
  .tag_b7e5,
  .tiny-84a9,
  .list-52cb,
  .banner_cold_07df,
  .media-current-89ad {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .picture_middle_ff41 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.preview_brown_eb86 {
  margin-bottom: 3rem;
  text-align: center;
}

.hero_tall_7e96 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.south_bc69 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.widget_rough_b25b,
.inner_03d7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.container_5306 {
  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;
}

.container_5306:hover {
  transform: translateY(-5px);
}

.container_5306 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.container_5306 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.under_a518 {
  margin: 3rem 0;
}

.label-warm-5791 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.detail_out_84a9 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.detail_out_84a9:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.rough-c8ed {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.component_fluid_7b09 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.stale-fb39 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.dim_dfca {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.tooltip_medium_486c {
  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;
}

.tooltip_medium_486c:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.tooltip_medium_486c.slider_south_55e5 {
  border-left: 4px solid var(--primary-color);
}

.search-bottom-45ad {
  flex-shrink: 0;
}

.search-bottom-45ad svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.small-3df7 {
  flex: 1;
}

.small-3df7 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.caption-87f8 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.layout_north_74ba,
.banner-b3ec,
.pink-33cc {
  margin-bottom: 1.5rem;
}

.layout_north_74ba h4,
.banner-b3ec h4,
.pink-33cc h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.layout_north_74ba ul,
.banner-b3ec ul,
.pink-33cc ul {
  list-style: none;
  padding: 0;
}

.layout_north_74ba li,
.banner-b3ec li,
.pink-33cc li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.layout_north_74ba li:before,
.banner-b3ec li:before,
.pink-33cc li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.shadow-focused-e812 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.shadow-focused-e812 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;
}

.shadow-focused-e812 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.primary_inner_f27c { margin: 2rem 0; }
.container_bronze_3aff { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.container_bronze_3aff h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.disabled_f4b6 p { margin-bottom: 1rem; line-height: 1.7; }
.disabled_f4b6 strong { color: var(--text-primary); }
.disabled_f4b6 ul { list-style: none; padding-left: 0; }
.disabled_f4b6 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.disabled_f4b6 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.huge-8e86 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.surface_red_2b6c { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.surface_red_2b6c:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.frame_c09b { font-size: 3rem; margin-bottom: 1rem; }
.surface_red_2b6c h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.surface_red_2b6c p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.caption-3e2a { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.caption-3e2a span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.accent_9e06 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.accent-96ed { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.lower_4c6d { text-align: center; }
.dim-e03d { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.in-e0dc { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.static_8f77 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.hero-pink-f5c0 { margin: 2rem 0; }
.box-421c { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.box-421c h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.box-421c p, .box-421c ul { line-height: 1.7; }
.box-421c ul { list-style: none; padding-left: 0; }
.box-421c ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.box-421c ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.dynamic_55ba { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.gallery-rough-cc85 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.overlay-tiny-89a5 { text-align: center; }
.info_ba01 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.element_last_7a88 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.border-4867 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.large-ca76 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.title_tall_7755 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.title_tall_7755:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.title_tall_7755 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.title_tall_7755 p, .title_tall_7755 ul { line-height: 1.7; }
.title_tall_7755 ul { list-style: none; padding-left: 0; }
.title_tall_7755 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.title_tall_7755 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: e178 */
.ghost-box-c1 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.1;
}
