/* ============================================
   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 */
.pattern-341d p,
.active-ad42,
.overlay_394c,
.sort_outer_2692,
.search_91b5,
.next_611e,
.thumbnail-b081,
.gallery_complex_c89c {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.middle_323c {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.middle_323c > *,
.hovered_b0b1,
.pattern-341d,
.sidebar-471c {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .middle_323c {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .middle_323c {
    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 === */
.bright-f9a6 {
  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 */
.bright-f9a6.stale-f571 {
  box-shadow: var(--shadow-md);
}

.text_3aef {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.cool-5ce3 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.text_down_5306 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.alert_1a0a {
  display: none;
}

/* Hide mobile actions on desktop */
.article_c7fd {
  display: none;
}

.filter-last-caa5 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.filter-last-caa5 a:hover,
.filter-last-caa5 a.fn-active-3a6c {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.message_pink_c6bc {
  margin-left: 1rem;
}

.list_17cf {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.badge-last-82b8,
.tooltip-aaf4 {
  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;
}

.badge-last-82b8 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.badge-last-82b8: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;
}

.tooltip-aaf4 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.tooltip-aaf4: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;
}

.badge-last-82b8 svg,
.tooltip-aaf4 svg {
  flex-shrink: 0;
}

.alert_stale_90a0 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.icon_a9a6 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.icon_a9a6::before,
.icon_a9a6::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.icon_a9a6::before {
  top: -7px;
}

.icon_a9a6::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.small_419c {
  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 === */
.alert-pro-1768 {
  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);
}

.text_over_92e9 {
  margin: 0 0 2rem;
  text-align: center;
}

.frame_7884 {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.frame_7884:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.module-7f20 {
  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);
}

.module-7f20 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.tag_2923 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.menu-soft-8af7 {
  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;
}

.menu-soft-8af7:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.mask_gold_5600 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.header_552b {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.link-right-badf {
  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);
}

.link-right-badf .notification-ef2d {
  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;
}

.link-right-badf .notification-ef2d svg {
  flex-shrink: 0;
}

.link-right-badf .tag_dim_79c6 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.link-right-badf .tag_dim_79c6: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);
}

.link-right-badf .dropdown_3771 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.link-right-badf .dropdown_3771: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) {
  .alert-pro-1768 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .frame_7884 {
    max-width: 100%;
  }

  .tag_2923 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .menu-soft-8af7 {
    padding: 1rem;
  }

  .mask_gold_5600 {
    font-size: 1.5rem;
  }

  .header_552b {
    font-size: 0.75rem;
  }

  .module-7f20 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .link-right-badf {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .link-right-badf .notification-ef2d {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .tag_2923 {
    grid-template-columns: 1fr;
  }
}

.breadcrumb_06f2 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.dropdown-b9be {
  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 === */
.main-8973 {
  margin-bottom: 2.5rem;
}

.backdrop_007c {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.breadcrumb_06f2 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.info-2dae {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.west-c86e {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.bottom-7a66 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.next_fa07 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.plasma-25fe {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.photo-upper-4af1 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tiny-15bf {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tiny-15bf svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.surface-short-2aa9 {
  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);
}

.container-404a {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.pink_aa56 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.glass-bc19 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.tertiary_selected_88ef {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.solid-b96a {
  display: grid;
  gap: 1rem;
}

.next_656f {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.next_ea14 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.pagination-clean-880a {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.pattern_black_f3ea {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.message-left-5bc6 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.tertiary_tall_c1a1 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.tertiary_tall_c1a1 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.active-ad42 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.fixed-7fea {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.carousel_steel_c599 {
  display: grid;
  gap: 2rem;
}

.glass-bc62 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.west-c86e {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.info-2dae {
  flex: 1;
}

.next_fa07 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.next_fa07 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.badge-2393 {
  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;
}

.plasma-25fe {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.slider_thick_1b46 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.slider_thick_1b46 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.search-pink-f97d {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.search-pink-f97d a {
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-tiny-0205 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.nav-tiny-0205 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.nav-tiny-0205 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-tiny-0205 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.dynamic-4c6d {
  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 === */
.summary_4547 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.avatar-middle-59c2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.secondary-6c00 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.video-small-64fb h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.video-small-64fb ol {
  list-style: none;
  counter-reset: toc-counter;
}

.video-small-64fb ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.video-small-64fb ol li a {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

.video-small-64fb ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.video-small-64fb ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.pattern-341d {
  padding: 3rem 0 5rem;
}

.sidebar-471c {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.sidebar-471c.tertiary_bb07 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.overlay_394c {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.south_a3d8 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.outline_first_9587 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.outline_first_9587 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.backdrop-hard-8443 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.gallery-7257 {
  text-align: center;
}

.middle_959e {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.full_bead {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.pattern-0ef2 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.next_611e {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.sort_outer_2692 {
  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;
}

.sort_outer_2692 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.sort_outer_2692:hover {
  box-shadow: var(--shadow-lg);
}

.sort_outer_2692.caption-181e {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.sort_outer_2692 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.sort_outer_2692 ul {
  margin: 1rem 0;
}

.sort_outer_2692 li {
  margin-bottom: 0.75rem;
}

.grid-pro-2f7a {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.complex_3f42 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.complex_3f42 a {
  font-weight: 600;
}

/* === Data Tables === */
.breadcrumb_6783 {
  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;
}

.breadcrumb_6783 table {
  width: 100%;
  min-width: 600px;
}

.breadcrumb_6783 thead {
  background-color: var(--primary-color);
  color: white;
}

.breadcrumb_6783 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.breadcrumb_6783 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb_6783 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.breadcrumb_6783 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.sort-up-f1cc {
  list-style: none;
  margin: 1.5rem 0;
}

.sort-up-f1cc li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.sort-up-f1cc li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.dynamic_2abe::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-3a6c::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 === */
.gold-6e2b {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.preview_55c6 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.preview_55c6 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.preview_55c6 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.preview_55c6 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.gold-6e2b blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.thumbnail-b081 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.thumbnail-b081::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.pattern-iron-5c22 {
  position: relative;
  margin-bottom: 3rem;
}

.popup_motion_7932 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.popup_motion_7932 .caption_5e47 {
  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;
}

.tooltip_f79e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.tooltip_f79e h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.tooltip_f79e ul {
  margin: 1rem 0;
}

.tooltip_f79e li {
  margin-bottom: 0.75rem;
}

.advanced-1ab1 {
  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 === */
.title_62d5 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.title_62d5 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.accordion_78b4 {
  list-style: none;
  margin: 1.5rem 0;
}

.accordion_78b4 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.accordion_78b4 a {
  font-weight: 600;
}

.nav_copper_cd65 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.gallery_complex_c89c {
  margin: 2.5rem 0;
}

.tertiary-155f {
  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;
}

.tertiary-155f:hover {
  box-shadow: var(--shadow-lg);
}

.tertiary-155f.brown-6ed7 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.widget_d226 {
  flex-shrink: 0;
}

.widget_d226 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);
}

.layout-956c h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.widget_copper_ae5d,
.icon-5cb6,
.component-basic-e1c6 {
  width: 100%;
  margin: 1.5rem 0;
}

.input-b16c {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.input-b16c strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.picture-902f {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.picture-902f strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.easy-c19d {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.easy-c19d strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.tiny-f5e9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.cool_bb61 {
  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;
}

.cool_bb61:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.cool_bb61.info_hot_935f {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.cool_bb61 .out_956e {
  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;
}

.cool_bb61 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.box_6f6f {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.message-cold-f585 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.message-cold-f585 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.disabled_b59c {
  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 === */
.notification-ef2d {
  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;
}

.tag_dim_79c6 {
  background-color: var(--primary-color);
  color: white;
}

.tag_dim_79c6:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.dropdown_3771 {
  background-color: var(--text-secondary);
  color: white;
}

.dropdown_3771:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.list-1ca4 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.list-1ca4:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.button-fresh-7e57 {
  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;
}

.button-fresh-7e57:hover {
  background-color: var(--primary-dark);
}

.layout_74d6 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.silver_60d9 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.media_2f8c {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.border_dirty_8ac5 {
  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 === */
.icon_1c31 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.dirty-36d0 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.dirty-36d0 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.wide-44e0 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.pro-a0ca {
  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;
}

.aside-action-fb40 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.hard_9496 {
  list-style: none;
  counter-reset: rank-counter;
}

.hard_9496 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.hard_9496 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;
}

.photo_4f01 {
  list-style: none;
}

.photo_4f01 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.table_tiny_501c {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.large_d028 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.large_d028 .purple-b346 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.large_d028 .video-6b72 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.accordion-b4b8 {
  margin-top: 3rem;
}

.hard_b99e {
  width: 100%;
}

.simple-9a17 {
  background-color: #fef3c7;
}

.badge_simple_2919 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.active_glass_84bb {
  margin: 3rem 0;
}

.thick_c60d {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.inner-5a2a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.inner-5a2a:hover {
  box-shadow: var(--shadow-lg);
}

.inner-5a2a.table_static_d36a {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.summary-active-768f {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.static-6d17 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.static-6d17 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-easy-5933 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.inner-5a2a blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.detail-blue-3909 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.border-large-7c3c {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.footer_clean_34b4 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.easy-4950 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.right-1da1 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.advanced_a24d {
  margin-top: 1rem;
}

/* === FAQ Section === */
.cool_aaf9 {
  max-width: 900px;
  margin: 0 auto;
}

.badge-d17b {
  margin: 2rem 0;
}

.advanced-3ba1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.advanced-3ba1 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.advanced-3ba1 summary::-webkit-details-marker {
  display: none;
}

.advanced-3ba1 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.banner-7e85 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.advanced-3ba1[open] .banner-7e85 {
  transform: rotate(45deg);
}

.mask_6acb {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.mask_6acb p:last-child {
  margin-bottom: 0;
}

.advanced-29a0 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.message_6c58 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.component_plasma_fef4 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.component_plasma_fef4 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.component_plasma_fef4 .notification-ef2d {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.header_af87 {
  max-width: 900px;
  margin: 0 auto;
}

.short_1597 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.logo_f0ac {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.logo_f0ac.fn-success-3a6c {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.silver_e213 {
  font-size: 3rem;
  line-height: 1;
}

.summary_huge_f69c h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.detail-9b41 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.accent_e0ad,
.hidden-cool-73d8 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.accent_e0ad h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.hidden-cool-73d8 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.filter_large_ac12,
.input-3e7b {
  margin: 1.5rem 0;
}

.filter_large_ac12 li,
.input-3e7b li {
  margin-bottom: 1rem;
}

.row-old-fd8f {
  margin: 3rem 0;
}

.card-d610 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.card-d610 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.card-d610 ol {
  margin: 1rem 0;
}

.card-d610 li {
  margin-bottom: 0.75rem;
}

.outer_44cf {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.bronze_f209 {
  margin: 2rem 0;
}

.picture_8d90 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.hero-a543 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.primary_small_2700 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.fluid-2f26 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.primary-tall-a056 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.content-pro-8f92 {
  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;
}

.content-pro-8f92 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.bottom-7a66 {
  flex: 1;
}

.bottom-7a66 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.stone_01f3 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.input_0d13 p {
  margin-bottom: 1rem;
}

.aside-8b84 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.aside_fc64 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.feature_narrow_2235 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.feature_narrow_2235 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.article_5382 h3 {
  margin-bottom: 1.5rem;
}

.background_warm_729c {
  display: grid;
  gap: 2rem;
}

.light-52ed {
  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;
}

.light-52ed img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.light-52ed h4 {
  margin: 0 0 0.25rem;
}

.light-52ed p {
  margin: 0;
  font-size: 0.9375rem;
}

.hidden-918c {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.sort-south-a675 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.sort-south-a675 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.sort-south-a675 ul {
  margin: 1.5rem 0;
}

.sort-south-a675 li {
  margin-bottom: 0.75rem;
}

.surface_first_83b7 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.text-bottom-7ab5 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.fixed-bc4c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.stone-bd97 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.stone-bd97 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.middle_d68d {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.middle_d68d a {
  color: rgba(255, 255, 255, 0.8);
}

.border_upper_5744 {
  list-style: none;
}

.border_upper_5744 li {
  margin-bottom: 0.75rem;
}

.border_upper_5744 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.border_upper_5744 a:hover {
  color: white;
}

.tiny-a80b {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.photo-335c {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.secondary-iron-29f0 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.white-1722 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.column_dark_c4ec {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .middle_323c {
    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;
  }

  .aside-6f7c {
    font-size: 1.5rem !important;
  }

  .backdrop_007c {
    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 */
  .sort_outer_2692,
  .search_91b5,
  .tooltip_f79e,
  .layout-956c,
  .summary-active-768f,
  .inner-5a2a,
  .mask_6acb,
  .module-7f20,
  .active-ad42,
  .overlay_394c {
    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 */
  .breadcrumb_06f2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .info-2dae {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .west-c86e {
    flex-shrink: 0;
  }

  .bottom-7a66 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .next_fa07,
  .plasma-25fe {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .plasma-25fe {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .text_down_5306 {
    display: none;
  }

  /* Show mobile actions */
  .article_c7fd {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .nav_3e08 {
    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;
  }

  .nav_3e08 svg {
    flex-shrink: 0;
  }

  .nav_3e08 .gradient-fluid-ae29 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .nav_3e08 .cool-c621 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .fixed-bbb9 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .gallery_f5ff {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .nav_3e08:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .alert_1a0a {
    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;
  }

  .alert_1a0a.fn-active-3a6c {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .alert_1a0a li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .alert_1a0a li:last-child {
    border-bottom: none;
  }

  .alert_1a0a a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .filter-last-caa5 {
    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;
  }

  .filter-last-caa5 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .filter-last-caa5 li:last-child {
    border-bottom: none;
  }

  .filter-last-caa5 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .message_pink_c6bc {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .list_17cf {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .badge-last-82b8,
  .tooltip-aaf4 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .badge-last-82b8 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .tooltip-aaf4 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .filter-last-caa5.fn-active-3a6c {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .alert_stale_90a0 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .bright-f9a6 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .text_3aef {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .small_419c {
    margin-top: 0;
  }

  /* Hero section */
  .small_419c {
    padding: 2rem 0 1.5rem;
  }

  .backdrop_007c {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .active-ad42 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .alert-pro-1768 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .frame_7884 {
    max-width: 100%;
    border-radius: 8px;
  }

  .tag_2923 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .menu-soft-8af7 {
    padding: 1rem;
  }

  .mask_gold_5600 {
    font-size: 1.5rem;
  }

  .header_552b {
    font-size: 0.75rem;
  }

  .module-7f20 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .link-right-badf {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .link-right-badf .notification-ef2d {
    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 */
  .secondary-6c00 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .tertiary-155f {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .widget_d226 {
    margin-bottom: 1rem;
  }

  /* Author */
  .glass-bc62 {
    flex-direction: column;
  }

  .content-pro-8f92 {
    flex-direction: column;
  }

  /* Quotes */
  .summary-active-768f {
    flex-direction: column;
  }

  /* Pros/Cons */
  .detail-9b41 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .fluid-2f26 {
    flex-direction: column;
  }

  .fluid-2f26 .notification-ef2d {
    width: 100%;
  }

  /* Version comparison */
  .tiny-f5e9 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .icon_1c31 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .fixed-bc4c {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .secondary-iron-29f0 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .breadcrumb_6783,
  .icon-5cb6,
  .liquid-c1c1,
  .hard_b99e,
  .widget_copper_ae5d,
  .component-basic-e1c6 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .breadcrumb_6783 table,
  .icon-5cb6 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .disabled_b59c {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .middle_323c {
    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;
  }

  .aside-6f7c {
    font-size: 1.25rem !important;
  }

  .backdrop_007c {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .bright-f9a6 {
    position: fixed;
  }

  .text_3aef {
    padding: 0.625rem 0;
  }

  .cool-5ce3 img {
    height: 26px;
  }

  .filter-last-caa5 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .alert_1a0a {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .nav_3e08 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .nav_3e08 svg {
    width: 18px;
    height: 18px;
  }

  .nav_3e08 .gradient-fluid-ae29 {
    font-size: 0.7rem;
  }

  .nav_3e08 .cool-c621 {
    font-size: 0.65rem;
  }

  .badge-last-82b8,
  .tooltip-aaf4 {
    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, .middle_323c, .hovered_b0b1, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .alert-pro-1768 {
    padding: 1rem;
  }

  .tag_2923 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .menu-soft-8af7 {
    padding: 0.875rem;
  }

  .mask_gold_5600 {
    font-size: 1.25rem;
  }

  .link-right-badf .notification-ef2d {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .backdrop_007c {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .notification-ef2d {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .layout_74d6 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .tertiary-155f {
    padding: 1rem;
  }

  .widget_d226 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .sort_outer_2692,
  .highlight-hot-7a14,
  .orange_6ab4,
  .label_3577 {
    padding: 1rem;
  }
}

@media print {
  .bright-f9a6,
  .summary_4547,
  .alert_stale_90a0,
  .notification-ef2d,
  .text-bottom-7ab5 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .middle_323c {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.column_pink_ca1c {
  margin-bottom: 3rem;
  text-align: center;
}

.aside-6f7c {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.modal-narrow-cc1d {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.next-d138,
.preview-04c9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.detail_7db3 {
  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;
}

.detail_7db3:hover {
  transform: translateY(-5px);
}

.detail_7db3 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.detail_7db3 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.paragraph_3e5f {
  margin: 3rem 0;
}

.stone_d300 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.item-lower-7d12 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.item-lower-7d12:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.purple_f8ff {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.brown-fab4 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.notification-small-1d21 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.sort-8d7c {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.element-black-cd02 {
  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;
}

.element-black-cd02:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.element-black-cd02.filter_purple_db71 {
  border-left: 4px solid var(--primary-color);
}

.heading_ce3a {
  flex-shrink: 0;
}

.heading_ce3a svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.status-1a18 {
  flex: 1;
}

.status-1a18 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.paragraph_yellow_e9af {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.image-west-c80c,
.large_736c,
.paragraph-smooth-c2ff {
  margin-bottom: 1.5rem;
}

.image-west-c80c h4,
.large_736c h4,
.paragraph-smooth-c2ff h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.image-west-c80c ul,
.large_736c ul,
.paragraph-smooth-c2ff ul {
  list-style: none;
  padding: 0;
}

.image-west-c80c li,
.large_736c li,
.paragraph-smooth-c2ff li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.image-west-c80c li:before,
.large_736c li:before,
.paragraph-smooth-c2ff li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.container-dark-e9c5 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.container-dark-e9c5 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;
}

.container-dark-e9c5 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.label_437c { margin: 2rem 0; }
.dark-3211 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.dark-3211 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.static-cb16 p { margin-bottom: 1rem; line-height: 1.7; }
.static-cb16 strong { color: var(--text-primary); }
.static-cb16 ul { list-style: none; padding-left: 0; }
.static-cb16 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.static-cb16 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.element-1541 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.badge-advanced-9b9e { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.badge-advanced-9b9e:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.mini_cf74 { font-size: 3rem; margin-bottom: 1rem; }
.badge-advanced-9b9e h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.badge-advanced-9b9e p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.article_7bd2 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.article_7bd2 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.caption_basic_037c { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.smooth-1910 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.texture_66a9 { text-align: center; }
.footer-3779 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.avatar_clean_b03b { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.active-lite-a0be { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.frame_2eeb { margin: 2rem 0; }
.gradient_up_1cb3 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.gradient_up_1cb3 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.gradient_up_1cb3 p, .gradient_up_1cb3 ul { line-height: 1.7; }
.gradient_up_1cb3 ul { list-style: none; padding-left: 0; }
.gradient_up_1cb3 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.gradient_up_1cb3 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.fast_67c7 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.easy_569e { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.easy-da18 { text-align: center; }
.cold_fb0d { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.tabs_aa24 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.small-d31e { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.simple_8782 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.hidden_ec0d { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.hidden_ec0d:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.hidden_ec0d h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.hidden_ec0d p, .hidden_ec0d ul { line-height: 1.7; }
.hidden_ec0d ul { list-style: none; padding-left: 0; }
.hidden_ec0d ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.hidden_ec0d ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: d3b6 */
.widget-item-u3 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.1;
}
