/* ============================================
   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 */
.notification-under-8ce7 p,
.cold_8bfb,
.mini_a201,
.glass-7425,
.notice-cold-5fa4,
.grid_first_cdfc,
.yellow-72f3,
.silver_b76b {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.filter-orange-4681 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.filter-orange-4681 > *,
.aside-hard-8431,
.notification-under-8ce7,
.gallery_e95d {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .filter-orange-4681 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .filter-orange-4681 {
    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 === */
.outline-38bf {
  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 */
.outline-38bf.slow_b07b {
  box-shadow: var(--shadow-md);
}

.notification-48f3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.sidebar_orange_afdd img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.button_middle_70ec {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.accent_soft_660c {
  display: none;
}

/* Hide mobile actions on desktop */
.item_hard_128b {
  display: none;
}

.banner-c1aa a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.banner-c1aa a:hover,
.banner-c1aa a.fn-active-53fe {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.smooth-a37b {
  margin-left: 1rem;
}

.border_dim_3a41 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.bronze_6595,
.primary-83b6 {
  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;
}

.bronze_6595 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.bronze_6595: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;
}

.primary-83b6 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.primary-83b6: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;
}

.bronze_6595 svg,
.primary-83b6 svg {
  flex-shrink: 0;
}

.grid_warm_1613 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.media-96c3 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.media-96c3::before,
.media-96c3::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.media-96c3::before {
  top: -7px;
}

.media-96c3::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.content-blue-9bd9 {
  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 === */
.shade_dynamic_4a9c {
  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);
}

.first-6097 {
  margin: 0 0 2rem;
  text-align: center;
}

.avatar-inner-29b3 {
  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;
}

.avatar-inner-29b3:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.surface_bcde {
  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);
}

.surface_bcde strong {
  color: var(--primary-color);
  font-weight: 700;
}

.tertiary_inner_1f33 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.dim_555e {
  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;
}

.dim_555e:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.dim_8044 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.summary-df75 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.search-medium-03e4 {
  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);
}

.search-medium-03e4 .feature_9f8b {
  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;
}

.search-medium-03e4 .feature_9f8b svg {
  flex-shrink: 0;
}

.search-medium-03e4 .hover_1819 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.search-medium-03e4 .hover_1819: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);
}

.search-medium-03e4 .rough_7106 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.search-medium-03e4 .rough_7106: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) {
  .shade_dynamic_4a9c {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .avatar-inner-29b3 {
    max-width: 100%;
  }

  .tertiary_inner_1f33 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .dim_555e {
    padding: 1rem;
  }

  .dim_8044 {
    font-size: 1.5rem;
  }

  .summary-df75 {
    font-size: 0.75rem;
  }

  .surface_bcde {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .search-medium-03e4 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .search-medium-03e4 .feature_9f8b {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .tertiary_inner_1f33 {
    grid-template-columns: 1fr;
  }
}

.sidebar-6e02 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.sort_4053 {
  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 === */
.avatar_upper_124d {
  margin-bottom: 2.5rem;
}

.picture_tall_1e90 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.sidebar-6e02 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.dynamic-1b52 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.white_29a9 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.north-64f9 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.title-hard-22d3 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.inner_da99 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.glass_2b15 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.mini_a039 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.mini_a039 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.aside-b6dd {
  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);
}

.grid_dark_7eb5 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.green-b2df {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.carousel-5dd1 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.popup-gold-a60b {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.frame_first_da90 {
  display: grid;
  gap: 1rem;
}

.lite_6210 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.tooltip-f013 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.under_e0c2 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.accent_hot_d223 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.footer-2a4d {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.status_1c03 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.status_1c03 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.cold_8bfb {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.preview_light_3e4d {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.breadcrumb_6b5f {
  display: grid;
  gap: 2rem;
}

.slider_3a81 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.white_29a9 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.dynamic-1b52 {
  flex: 1;
}

.title-hard-22d3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.title-hard-22d3 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.tabs_paper_69b4 {
  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;
}

.inner_da99 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.medium-c470 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.medium-c470 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.slider_lower_bc47 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.slider_lower_bc47 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.card_tiny_7b09 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.card_tiny_7b09 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.card_tiny_7b09 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card_tiny_7b09 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.in-d691 {
  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 === */
.avatar-active-4ad6 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.modal_lower_c818 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.hard-63c0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.right-343e h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.right-343e ol {
  list-style: none;
  counter-reset: toc-counter;
}

.right-343e ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.right-343e 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;
}

.right-343e ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.right-343e ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.notification-under-8ce7 {
  padding: 3rem 0 5rem;
}

.gallery_e95d {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.gallery_e95d.stale_c438 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.mini_a201 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.module_248e {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.form-bottom-3b64 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.form-bottom-3b64 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.button_old_0cb2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.active_0c45 {
  text-align: center;
}

.picture-afc4 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.detail_6d39 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.item-static-6ae2 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.grid_first_cdfc {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.glass-7425 {
  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;
}

.glass-7425 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.glass-7425:hover {
  box-shadow: var(--shadow-lg);
}

.glass-7425.logo_6429 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.glass-7425 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.glass-7425 ul {
  margin: 1rem 0;
}

.glass-7425 li {
  margin-bottom: 0.75rem;
}

.breadcrumb-brown-b479 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.dropdown-pressed-6356 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.dropdown-pressed-6356 a {
  font-weight: 600;
}

/* === Data Tables === */
.out-943e {
  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;
}

.out-943e table {
  width: 100%;
  min-width: 600px;
}

.out-943e thead {
  background-color: var(--primary-color);
  color: white;
}

.out-943e th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.out-943e td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.out-943e tbody tr:hover {
  background-color: var(--bg-secondary);
}

.out-943e tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.filter_dirty_6ed3 {
  list-style: none;
  margin: 1.5rem 0;
}

.filter_dirty_6ed3 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.filter_dirty_6ed3 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.feature_24cb::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-53fe::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 === */
.huge-d94a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.dynamic-5591 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.dynamic-5591 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.dynamic-5591 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.dynamic-5591 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.huge-d94a blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.yellow-72f3 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.yellow-72f3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.layout-1057 {
  position: relative;
  margin-bottom: 3rem;
}

.border-fixed-a216 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.border-fixed-a216 .article_inner_f619 {
  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;
}

.container-red-6d8c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.container-red-6d8c h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.container-red-6d8c ul {
  margin: 1rem 0;
}

.container-red-6d8c li {
  margin-bottom: 0.75rem;
}

.overlay-tall-5a2b {
  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 === */
.mask_d002 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.mask_d002 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.east_bb3e {
  list-style: none;
  margin: 1.5rem 0;
}

.east_bb3e li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.east_bb3e a {
  font-weight: 600;
}

.secondary-stone-5110 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.silver_b76b {
  margin: 2.5rem 0;
}

.clean-2cab {
  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;
}

.clean-2cab:hover {
  box-shadow: var(--shadow-lg);
}

.clean-2cab.cold-256a {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.motion_a0d3 {
  flex-shrink: 0;
}

.motion_a0d3 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);
}

.sidebar_8610 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.fresh-8a66,
.preview_huge_e7a6,
.gradient_e589 {
  width: 100%;
  margin: 1.5rem 0;
}

.content-a641 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.content-a641 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.nav-under-dbef {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.nav-under-dbef strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.middle-58cc {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.middle-58cc strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.info-1caf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.east-c399 {
  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;
}

.east-c399:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.east-c399.small-ffdf {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.east-c399 .background-smooth-3c5e {
  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;
}

.east-c399 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.filter-cd1b {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.caption_center_13c9 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.caption_center_13c9 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.notification-ceb2 {
  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 === */
.feature_9f8b {
  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;
}

.hover_1819 {
  background-color: var(--primary-color);
  color: white;
}

.hover_1819:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.rough_7106 {
  background-color: var(--text-secondary);
  color: white;
}

.rough_7106:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.upper-1683 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.upper-1683:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.icon_up_d9f7 {
  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;
}

.icon_up_d9f7:hover {
  background-color: var(--primary-dark);
}

.mini_3435 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.filter_94a2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.bronze-0e88 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.text_4da3 {
  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 === */
.header-hard-89a1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.list_brown_5438 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.list_brown_5438 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.input-hovered-95aa {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.popup_top_6436 {
  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;
}

.large_fe82 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.brown-26d7 {
  list-style: none;
  counter-reset: rank-counter;
}

.brown-26d7 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.brown-26d7 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;
}

.warm_9e5f {
  list-style: none;
}

.warm_9e5f li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.wrapper_9729 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.middle_bb2a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.middle_bb2a .logo-cold-2602 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.middle_bb2a .title-fresh-6322 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hidden_0e91 {
  margin-top: 3rem;
}

.copper-53ec {
  width: 100%;
}

.image-7173 {
  background-color: #fef3c7;
}

.next-eefa {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.north-bdc2 {
  margin: 3rem 0;
}

.media_up_ad33 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.container_1a81 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.container_1a81:hover {
  box-shadow: var(--shadow-lg);
}

.container_1a81.box_7c33 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.badge-a9f1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.primary-25f0 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.primary-25f0 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.liquid-d2bc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.container_1a81 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.block_7c56 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.status-5315 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.table_de61 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.over_049d {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.orange_d10b {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.tooltip_88aa {
  margin-top: 1rem;
}

/* === FAQ Section === */
.status_6672 {
  max-width: 900px;
  margin: 0 auto;
}

.tabs_b7b8 {
  margin: 2rem 0;
}

.aside-1b42 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.aside-1b42 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.aside-1b42 summary::-webkit-details-marker {
  display: none;
}

.aside-1b42 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.basic-8cbd {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.aside-1b42[open] .basic-8cbd {
  transform: rotate(45deg);
}

.hovered-1658 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.hovered-1658 p:last-child {
  margin-bottom: 0;
}

.list_selected_9ec0 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.hero_gas_6ae3 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.label_warm_60c8 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.label_warm_60c8 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.label_warm_60c8 .feature_9f8b {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.link-2af5 {
  max-width: 900px;
  margin: 0 auto;
}

.under-b4df {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.fresh_a06a {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.fresh_a06a.fn-success-53fe {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.pattern-west-fb89 {
  font-size: 3rem;
  line-height: 1;
}

.tall-e16e h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.progress-f920 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.caption_medium_6223,
.outline_gold_6278 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.caption_medium_6223 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.outline_gold_6278 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.steel-e1ad,
.picture-orange-6d1c {
  margin: 1.5rem 0;
}

.steel-e1ad li,
.picture-orange-6d1c li {
  margin-bottom: 1rem;
}

.dim_9d55 {
  margin: 3rem 0;
}

.text-hot-a1e9 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.text-hot-a1e9 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.text-hot-a1e9 ol {
  margin: 1rem 0;
}

.text-hot-a1e9 li {
  margin-bottom: 0.75rem;
}

.border_4938 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.container_dark_79be {
  margin: 2rem 0;
}

.tall_0652 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.wrapper-west-0515 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.heading_df2f {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.input_outer_ecda {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.column-cbdb {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.last-ba20 {
  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;
}

.last-ba20 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.north-64f9 {
  flex: 1;
}

.north-64f9 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.progress_45e2 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.aside_b2bd p {
  margin-bottom: 1rem;
}

.logo-d70b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.texture-over-7059 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.focused-f939 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.focused-f939 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.highlight_7002 h3 {
  margin-bottom: 1.5rem;
}

.orange_9125 {
  display: grid;
  gap: 2rem;
}

.detail-red-465b {
  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;
}

.detail-red-465b img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.detail-red-465b h4 {
  margin: 0 0 0.25rem;
}

.detail-red-465b p {
  margin: 0;
  font-size: 0.9375rem;
}

.highlight-yellow-e9fc {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.section-middle-1875 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.section-middle-1875 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.section-middle-1875 ul {
  margin: 1.5rem 0;
}

.section-middle-1875 li {
  margin-bottom: 0.75rem;
}

.popup_c9bf {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.tiny_f617 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.blue_63f7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.panel-iron-0745 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.panel-iron-0745 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.background_slow_7945 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.background_slow_7945 a {
  color: rgba(255, 255, 255, 0.8);
}

.menu_e3f0 {
  list-style: none;
}

.menu_e3f0 li {
  margin-bottom: 0.75rem;
}

.menu_e3f0 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.menu_e3f0 a:hover {
  color: white;
}

.full_9051 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.slider_4503 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.short_b739 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.basic-144b {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.red-dac5 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .filter-orange-4681 {
    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;
  }

  .green_bf7d {
    font-size: 1.5rem !important;
  }

  .picture_tall_1e90 {
    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 */
  .glass-7425,
  .notice-cold-5fa4,
  .container-red-6d8c,
  .sidebar_8610,
  .badge-a9f1,
  .container_1a81,
  .hovered-1658,
  .surface_bcde,
  .cold_8bfb,
  .mini_a201 {
    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 */
  .sidebar-6e02 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .dynamic-1b52 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .white_29a9 {
    flex-shrink: 0;
  }

  .north-64f9 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .title-hard-22d3,
  .inner_da99 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .inner_da99 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .button_middle_70ec {
    display: none;
  }

  /* Show mobile actions */
  .item_hard_128b {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .modal_94eb {
    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;
  }

  .modal_94eb svg {
    flex-shrink: 0;
  }

  .modal_94eb .overlay_hovered_3639 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .modal_94eb .huge_28c0 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .gradient_71cb {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .tooltip-1164 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .modal_94eb:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .accent_soft_660c {
    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;
  }

  .accent_soft_660c.fn-active-53fe {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .accent_soft_660c li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .accent_soft_660c li:last-child {
    border-bottom: none;
  }

  .accent_soft_660c a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .banner-c1aa {
    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;
  }

  .banner-c1aa li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .banner-c1aa li:last-child {
    border-bottom: none;
  }

  .banner-c1aa a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .smooth-a37b {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .border_dim_3a41 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .bronze_6595,
  .primary-83b6 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .bronze_6595 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .primary-83b6 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .banner-c1aa.fn-active-53fe {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .grid_warm_1613 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .outline-38bf {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .notification-48f3 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .content-blue-9bd9 {
    margin-top: 0;
  }

  /* Hero section */
  .content-blue-9bd9 {
    padding: 2rem 0 1.5rem;
  }

  .picture_tall_1e90 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .cold_8bfb {
    font-size: 1rem;
  }

  /* Hero brand image */
  .shade_dynamic_4a9c {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .avatar-inner-29b3 {
    max-width: 100%;
    border-radius: 8px;
  }

  .tertiary_inner_1f33 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .dim_555e {
    padding: 1rem;
  }

  .dim_8044 {
    font-size: 1.5rem;
  }

  .summary-df75 {
    font-size: 0.75rem;
  }

  .surface_bcde {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .search-medium-03e4 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .search-medium-03e4 .feature_9f8b {
    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 */
  .hard-63c0 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .clean-2cab {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .motion_a0d3 {
    margin-bottom: 1rem;
  }

  /* Author */
  .slider_3a81 {
    flex-direction: column;
  }

  .last-ba20 {
    flex-direction: column;
  }

  /* Quotes */
  .badge-a9f1 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .progress-f920 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .input_outer_ecda {
    flex-direction: column;
  }

  .input_outer_ecda .feature_9f8b {
    width: 100%;
  }

  /* Version comparison */
  .info-1caf {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .header-hard-89a1 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .blue_63f7 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .short_b739 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .out-943e,
  .preview_huge_e7a6,
  .texture-gold-3386,
  .copper-53ec,
  .fresh-8a66,
  .gradient_e589 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .out-943e table,
  .preview_huge_e7a6 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .notification-ceb2 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .filter-orange-4681 {
    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;
  }

  .green_bf7d {
    font-size: 1.25rem !important;
  }

  .picture_tall_1e90 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .outline-38bf {
    position: fixed;
  }

  .notification-48f3 {
    padding: 0.625rem 0;
  }

  .sidebar_orange_afdd img {
    height: 26px;
  }

  .banner-c1aa {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .accent_soft_660c {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .modal_94eb {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .modal_94eb svg {
    width: 18px;
    height: 18px;
  }

  .modal_94eb .overlay_hovered_3639 {
    font-size: 0.7rem;
  }

  .modal_94eb .huge_28c0 {
    font-size: 0.65rem;
  }

  .bronze_6595,
  .primary-83b6 {
    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, .filter-orange-4681, .aside-hard-8431, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .shade_dynamic_4a9c {
    padding: 1rem;
  }

  .tertiary_inner_1f33 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .dim_555e {
    padding: 0.875rem;
  }

  .dim_8044 {
    font-size: 1.25rem;
  }

  .search-medium-03e4 .feature_9f8b {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .picture_tall_1e90 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .feature_9f8b {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .mini_3435 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .clean-2cab {
    padding: 1rem;
  }

  .motion_a0d3 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .glass-7425,
  .button-050a,
  .accordion_8913,
  .status-e737 {
    padding: 1rem;
  }
}

@media print {
  .outline-38bf,
  .avatar-active-4ad6,
  .grid_warm_1613,
  .feature_9f8b,
  .tiny_f617 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .filter-orange-4681 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.black-b505 {
  margin-bottom: 3rem;
  text-align: center;
}

.green_bf7d {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.widget_cold_7b38 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.tabs-b973,
.banner_6fc6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.fixed_5cf9 {
  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;
}

.fixed_5cf9:hover {
  transform: translateY(-5px);
}

.fixed_5cf9 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.fixed_5cf9 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.old-9f2f {
  margin: 3rem 0;
}

.pattern_easy_601f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.glass-68e3 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.glass-68e3:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.row-ea06 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.advanced_6bc7 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.brown-1bb7 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.paragraph-cool-c019 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.orange-dcf5 {
  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;
}

.orange-dcf5:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.orange-dcf5.purple_3643 {
  border-left: 4px solid var(--primary-color);
}

.logo_warm_33c2 {
  flex-shrink: 0;
}

.logo_warm_33c2 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.texture_complex_fbf6 {
  flex: 1;
}

.texture_complex_fbf6 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pattern_dac2 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.outline-8f54,
.link_liquid_7dd9,
.wood_7389 {
  margin-bottom: 1.5rem;
}

.outline-8f54 h4,
.link_liquid_7dd9 h4,
.wood_7389 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.outline-8f54 ul,
.link_liquid_7dd9 ul,
.wood_7389 ul {
  list-style: none;
  padding: 0;
}

.outline-8f54 li,
.link_liquid_7dd9 li,
.wood_7389 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.outline-8f54 li:before,
.link_liquid_7dd9 li:before,
.wood_7389 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.border_fresh_31e5 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.border_fresh_31e5 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;
}

.border_fresh_31e5 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.card_887a { margin: 2rem 0; }
.icon-next-b267 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.icon-next-b267 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.active-3da7 p { margin-bottom: 1rem; line-height: 1.7; }
.active-3da7 strong { color: var(--text-primary); }
.active-3da7 ul { list-style: none; padding-left: 0; }
.active-3da7 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.active-3da7 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.north-7727 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.orange_bca8 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.orange_bca8:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.popup-medium-0fe2 { font-size: 3rem; margin-bottom: 1rem; }
.orange_bca8 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.orange_bca8 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.hard-faaf { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.hard-faaf span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.highlight-2f30 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.dirty_926e { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.silver_6ef4 { text-align: center; }
.notification_822c { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.gradient_dirty_c7c0 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.lite_6815 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.modal-left-8595 { margin: 2rem 0; }
.surface-silver-0305 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.surface-silver-0305 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.surface-silver-0305 p, .surface-silver-0305 ul { line-height: 1.7; }
.surface-silver-0305 ul { list-style: none; padding-left: 0; }
.surface-silver-0305 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.surface-silver-0305 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.copper-d72e { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.preview_liquid_16b2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.description-left-7509 { text-align: center; }
.column-86aa { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.small-7642 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.over_a17a { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.upper-118f { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.wrapper_rough_7d4a { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.wrapper_rough_7d4a:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.wrapper_rough_7d4a h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.wrapper_rough_7d4a p, .wrapper_rough_7d4a ul { line-height: 1.7; }
.wrapper_rough_7d4a ul { list-style: none; padding-left: 0; }
.wrapper_rough_7d4a ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.wrapper_rough_7d4a ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 9bc9 */
.widget-item-k1 {
  padding: 0.3rem;
  font-size: 12px;
  line-height: 1.2;
}
