/* ============================================
   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 */
.caption-bb6c p,
.lower-b731,
.icon-active-6db8,
.message_small_8481,
.accent-9f7b,
.pattern-7341,
.description_inner_a7d4,
.huge_a8ee {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.slow-3e94 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.slow-3e94 > *,
.fast_2695,
.caption-bb6c,
.content-71f8 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .slow-3e94 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .slow-3e94 {
    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 === */
.mini-7026 {
  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 */
.mini-7026.tertiary_paper_34c8 {
  box-shadow: var(--shadow-md);
}

.main-87f3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.summary_blue_5340 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.column_plasma_1591 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.light-3066 {
  display: none;
}

/* Hide mobile actions on desktop */
.purple-958d {
  display: none;
}

.gallery-e52f a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.gallery-e52f a:hover,
.gallery-e52f a.fn-active-2545 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.layout-out-0cf1 {
  margin-left: 1rem;
}

.upper-d83f {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.disabled_8bf7,
.popup_right_8efc {
  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;
}

.disabled_8bf7 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.disabled_8bf7: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;
}

.popup_right_8efc {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.popup_right_8efc: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;
}

.disabled_8bf7 svg,
.popup_right_8efc svg {
  flex-shrink: 0;
}

.shade_d7b3 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.caption-ef7e {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.caption-ef7e::before,
.caption-ef7e::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.caption-ef7e::before {
  top: -7px;
}

.caption-ef7e::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.smooth_af58 {
  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 === */
.stale-8fe4 {
  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);
}

.large_7687 {
  margin: 0 0 2rem;
  text-align: center;
}

.list_b325 {
  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;
}

.list_b325:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.tiny_c61f {
  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);
}

.tiny_c61f strong {
  color: var(--primary-color);
  font-weight: 700;
}

.logo-ce71 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.wrapper-north-44ce {
  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;
}

.wrapper-north-44ce:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.bronze_ed2e {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.shade_dc7e {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.short-56a8 {
  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);
}

.short-56a8 .easy_e84b {
  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;
}

.short-56a8 .easy_e84b svg {
  flex-shrink: 0;
}

.short-56a8 .prev_18e9 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.short-56a8 .prev_18e9: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);
}

.short-56a8 .focused-1d58 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.short-56a8 .focused-1d58: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) {
  .stale-8fe4 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .list_b325 {
    max-width: 100%;
  }

  .logo-ce71 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .wrapper-north-44ce {
    padding: 1rem;
  }

  .bronze_ed2e {
    font-size: 1.5rem;
  }

  .shade_dc7e {
    font-size: 0.75rem;
  }

  .tiny_c61f {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .short-56a8 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .short-56a8 .easy_e84b {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .logo-ce71 {
    grid-template-columns: 1fr;
  }
}

.backdrop_6f05 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.caption_0af9 {
  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 === */
.smooth_4ab0 {
  margin-bottom: 2.5rem;
}

.outline_8a7f {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.backdrop_6f05 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.content_fresh_5ea2 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.article-lower-10c8 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.active-rough-1d7e {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.widget-4a32 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.grid_cf81 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.disabled_cda1 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.article-over-4a4a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.article-over-4a4a svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.medium_3790 {
  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);
}

.over-cc52 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.card_simple_4bcf {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tabs_02e4 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.feature_green_6e23 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.orange-e5f3 {
  display: grid;
  gap: 1rem;
}

.info-old-3214 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.item-ec18 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.texture-71a4 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.list_9ec3 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.tooltip_cded {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.basic_fb4f {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.basic_fb4f p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.lower-b731 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.form-warm-317a {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.focus-5bf7 {
  display: grid;
  gap: 2rem;
}

.tall-d39f {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.article-lower-10c8 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.content_fresh_5ea2 {
  flex: 1;
}

.widget-4a32 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.widget-4a32 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.description_short_5659 {
  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;
}

.grid_cf81 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.description-460c {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.description-460c span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.last-c9d1 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.last-c9d1 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.outline-west-e471 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.outline-west-e471 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.outline-west-e471 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.outline-west-e471 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.active_4ccb {
  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 === */
.selected_2e6c {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.center_8c81 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.gradient_6b44 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.huge_c700 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.huge_c700 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.huge_c700 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.huge_c700 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;
}

.huge_c700 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.huge_c700 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.caption-bb6c {
  padding: 3rem 0 5rem;
}

.content-71f8 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.content-71f8.blue_aae8 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.icon-active-6db8 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.notice_easy_5fa7 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.progress_current_1d3c {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.progress_current_1d3c h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.steel-c0ee {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.sidebar_afd5 {
  text-align: center;
}

.element_bottom_61d0 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.lower_1852 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.sidebar_outer_e004 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.pattern-7341 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.message_small_8481 {
  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;
}

.message_small_8481 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.message_small_8481:hover {
  box-shadow: var(--shadow-lg);
}

.message_small_8481.frame_903a {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.message_small_8481 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.message_small_8481 ul {
  margin: 1rem 0;
}

.message_small_8481 li {
  margin-bottom: 0.75rem;
}

.out-2ffe {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.label_bronze_976a {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.label_bronze_976a a {
  font-weight: 600;
}

/* === Data Tables === */
.title_narrow_f6c0 {
  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;
}

.title_narrow_f6c0 table {
  width: 100%;
  min-width: 600px;
}

.title_narrow_f6c0 thead {
  background-color: var(--primary-color);
  color: white;
}

.title_narrow_f6c0 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.title_narrow_f6c0 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.title_narrow_f6c0 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.title_narrow_f6c0 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.section_full_b6b4 {
  list-style: none;
  margin: 1.5rem 0;
}

.section_full_b6b4 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.section_full_b6b4 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.plasma_6048::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-2545::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 === */
.active-ccb6 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.label-purple-1a91 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.label-purple-1a91 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.label-purple-1a91 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.label-purple-1a91 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.active-ccb6 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.description_inner_a7d4 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.description_inner_a7d4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.pressed-8be4 {
  position: relative;
  margin-bottom: 3rem;
}

.logo_gas_ebcc {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.logo_gas_ebcc .backdrop_5e6c {
  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;
}

.mask-first-38d5 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.mask-first-38d5 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.mask-first-38d5 ul {
  margin: 1rem 0;
}

.mask-first-38d5 li {
  margin-bottom: 0.75rem;
}

.tooltip_south_2e72 {
  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 === */
.status_94ab {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.status_94ab h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.full-0da2 {
  list-style: none;
  margin: 1.5rem 0;
}

.full-0da2 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.full-0da2 a {
  font-weight: 600;
}

.panel-dim-4875 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.huge_a8ee {
  margin: 2.5rem 0;
}

.label-yellow-ed72 {
  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;
}

.label-yellow-ed72:hover {
  box-shadow: var(--shadow-lg);
}

.label-yellow-ed72.notice-up-a8d1 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.panel_648c {
  flex-shrink: 0;
}

.panel_648c 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);
}

.form-0dc1 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.shadow-401a,
.warm_2179,
.motion-170e {
  width: 100%;
  margin: 1.5rem 0;
}

.out-4d6a {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.out-4d6a strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.dynamic_ac5f {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.dynamic_ac5f strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.secondary_f9ce {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.secondary_f9ce strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.alert_8f6d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.popup-517e {
  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;
}

.popup-517e:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.popup-517e.lite_4d8f {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.popup-517e .component-a81f {
  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;
}

.popup-517e h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.section_362e {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.section_narrow_b646 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.section_narrow_b646 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.hot_50a4 {
  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 === */
.easy_e84b {
  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;
}

.prev_18e9 {
  background-color: var(--primary-color);
  color: white;
}

.prev_18e9:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.focused-1d58 {
  background-color: var(--text-secondary);
  color: white;
}

.focused-1d58:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.title_iron_e7d5 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.title_iron_e7d5:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.feature_south_a978 {
  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;
}

.feature_south_a978:hover {
  background-color: var(--primary-dark);
}

.easy_1f88 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.hard-de1a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.gallery_bright_2212 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.action_cfa1 {
  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 === */
.box_fdab {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.yellow_7ae1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.yellow_7ae1 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.header_b6fa {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.hero-action-94d0 {
  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;
}

.cold-7a26 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.short_8889 {
  list-style: none;
  counter-reset: rank-counter;
}

.short_8889 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.short_8889 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;
}

.gradient_e0dc {
  list-style: none;
}

.gradient_e0dc li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.pressed_3437 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.summary-focused-f28d {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.summary-focused-f28d .pattern_c915 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.summary-focused-f28d .tertiary_orange_ef17 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.frame_4182 {
  margin-top: 3rem;
}

.grid-4f7b {
  width: 100%;
}

.clean-cc41 {
  background-color: #fef3c7;
}

.frame_fast_83f7 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.hovered_3d7b {
  margin: 3rem 0;
}

.aside_07ce {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.modal-76bd {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.modal-76bd:hover {
  box-shadow: var(--shadow-lg);
}

.modal-76bd.hidden-f30a {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.down-39d1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.stone-77e9 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.stone-77e9 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tertiary_c7e3 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.modal-76bd blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.mask_green_e6bc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hovered-192b {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.module_stale_90ce {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.advanced-fdf7 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.inner_563d {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.slider-84e0 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.nav-9ac5 {
  max-width: 900px;
  margin: 0 auto;
}

.preview_ed4a {
  margin: 2rem 0;
}

.gallery_dim_3914 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.gallery_dim_3914 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.gallery_dim_3914 summary::-webkit-details-marker {
  display: none;
}

.gallery_dim_3914 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.sort-fluid-541d {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.gallery_dim_3914[open] .sort-fluid-541d {
  transform: rotate(45deg);
}

.tertiary-1b8a {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.tertiary-1b8a p:last-child {
  margin-bottom: 0;
}

.hover-hard-227e {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.status_dda3 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.bright_beb5 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.bright_beb5 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.bright_beb5 .easy_e84b {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.hovered-736e {
  max-width: 900px;
  margin: 0 auto;
}

.filter_orange_4ea0 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.aside_1cc4 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.aside_1cc4.fn-success-2545 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.label-736b {
  font-size: 3rem;
  line-height: 1;
}

.tag-ac65 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.progress_dim_ad73 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.avatar_3577,
.carousel_256c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.avatar_3577 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.carousel_256c h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.hover_265c,
.hot-8960 {
  margin: 1.5rem 0;
}

.hover_265c li,
.hot-8960 li {
  margin-bottom: 1rem;
}

.dark-3468 {
  margin: 3rem 0;
}

.accent_5185 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.accent_5185 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.accent_5185 ol {
  margin: 1rem 0;
}

.accent_5185 li {
  margin-bottom: 0.75rem;
}

.frame-6ac1 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.alert_motion_cb4d {
  margin: 2rem 0;
}

.icon_be64 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.input-91be {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.message_middle_d52d {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.silver_0337 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.message-blue-17de {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.large-15a0 {
  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;
}

.large-15a0 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.active-rough-1d7e {
  flex: 1;
}

.active-rough-1d7e h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.feature_warm_b38e {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.primary_fresh_ff4d p {
  margin-bottom: 1rem;
}

.logo_simple_6ccf {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.surface-b529 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.content-2167 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.content-2167 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.icon-upper-b6b6 h3 {
  margin-bottom: 1.5rem;
}

.medium_e6c8 {
  display: grid;
  gap: 2rem;
}

.secondary-large-09b9 {
  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;
}

.secondary-large-09b9 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.secondary-large-09b9 h4 {
  margin: 0 0 0.25rem;
}

.secondary-large-09b9 p {
  margin: 0;
  font-size: 0.9375rem;
}

.component_327e {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.carousel-current-b350 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.carousel-current-b350 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.carousel-current-b350 ul {
  margin: 1.5rem 0;
}

.carousel-current-b350 li {
  margin-bottom: 0.75rem;
}

.texture_active_504d {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.container-upper-32c3 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.paragraph-blue-4e88 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.section_last_c3c5 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.section_last_c3c5 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.search_fixed_2aeb {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.search_fixed_2aeb a {
  color: rgba(255, 255, 255, 0.8);
}

.plasma_62ea {
  list-style: none;
}

.plasma_62ea li {
  margin-bottom: 0.75rem;
}

.plasma_62ea a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.plasma_62ea a:hover {
  color: white;
}

.easy-0d54 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.background-1cc9 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.surface-yellow-9994 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.preview-1966 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.card_static_f29e {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .slow-3e94 {
    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;
  }

  .caption_daf9 {
    font-size: 1.5rem !important;
  }

  .outline_8a7f {
    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 */
  .message_small_8481,
  .accent-9f7b,
  .mask-first-38d5,
  .form-0dc1,
  .down-39d1,
  .modal-76bd,
  .tertiary-1b8a,
  .tiny_c61f,
  .lower-b731,
  .icon-active-6db8 {
    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 */
  .backdrop_6f05 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .content_fresh_5ea2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .article-lower-10c8 {
    flex-shrink: 0;
  }

  .active-rough-1d7e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .widget-4a32,
  .grid_cf81 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .grid_cf81 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .column_plasma_1591 {
    display: none;
  }

  /* Show mobile actions */
  .purple-958d {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .layout_e0eb {
    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;
  }

  .layout_e0eb svg {
    flex-shrink: 0;
  }

  .layout_e0eb .summary-5dfb {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .layout_e0eb .top_46cd {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .disabled-bronze-516c {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .paragraph-b5e0 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .layout_e0eb:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .light-3066 {
    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;
  }

  .light-3066.fn-active-2545 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .light-3066 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .light-3066 li:last-child {
    border-bottom: none;
  }

  .light-3066 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .gallery-e52f {
    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;
  }

  .gallery-e52f li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .gallery-e52f li:last-child {
    border-bottom: none;
  }

  .gallery-e52f a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .layout-out-0cf1 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .upper-d83f {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .disabled_8bf7,
  .popup_right_8efc {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .disabled_8bf7 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .popup_right_8efc {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .gallery-e52f.fn-active-2545 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .shade_d7b3 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .mini-7026 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .main-87f3 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .smooth_af58 {
    margin-top: 0;
  }

  /* Hero section */
  .smooth_af58 {
    padding: 2rem 0 1.5rem;
  }

  .outline_8a7f {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .lower-b731 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .stale-8fe4 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .list_b325 {
    max-width: 100%;
    border-radius: 8px;
  }

  .logo-ce71 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .wrapper-north-44ce {
    padding: 1rem;
  }

  .bronze_ed2e {
    font-size: 1.5rem;
  }

  .shade_dc7e {
    font-size: 0.75rem;
  }

  .tiny_c61f {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .short-56a8 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .short-56a8 .easy_e84b {
    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 */
  .gradient_6b44 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .label-yellow-ed72 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .panel_648c {
    margin-bottom: 1rem;
  }

  /* Author */
  .tall-d39f {
    flex-direction: column;
  }

  .large-15a0 {
    flex-direction: column;
  }

  /* Quotes */
  .down-39d1 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .progress_dim_ad73 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .silver_0337 {
    flex-direction: column;
  }

  .silver_0337 .easy_e84b {
    width: 100%;
  }

  /* Version comparison */
  .alert_8f6d {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .box_fdab {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .paragraph-blue-4e88 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .surface-yellow-9994 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .title_narrow_f6c0,
  .warm_2179,
  .center-f721,
  .grid-4f7b,
  .shadow-401a,
  .motion-170e {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .title_narrow_f6c0 table,
  .warm_2179 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .hot_50a4 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .slow-3e94 {
    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;
  }

  .caption_daf9 {
    font-size: 1.25rem !important;
  }

  .outline_8a7f {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .mini-7026 {
    position: fixed;
  }

  .main-87f3 {
    padding: 0.625rem 0;
  }

  .summary_blue_5340 img {
    height: 26px;
  }

  .gallery-e52f {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .light-3066 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .layout_e0eb {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .layout_e0eb svg {
    width: 18px;
    height: 18px;
  }

  .layout_e0eb .summary-5dfb {
    font-size: 0.7rem;
  }

  .layout_e0eb .top_46cd {
    font-size: 0.65rem;
  }

  .disabled_8bf7,
  .popup_right_8efc {
    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, .slow-3e94, .fast_2695, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .stale-8fe4 {
    padding: 1rem;
  }

  .logo-ce71 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .wrapper-north-44ce {
    padding: 0.875rem;
  }

  .bronze_ed2e {
    font-size: 1.25rem;
  }

  .short-56a8 .easy_e84b {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .outline_8a7f {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .easy_e84b {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .easy_1f88 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .label-yellow-ed72 {
    padding: 1rem;
  }

  .panel_648c span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .message_small_8481,
  .advanced_2d08,
  .glass_31aa,
  .east-dde1 {
    padding: 1rem;
  }
}

@media print {
  .mini-7026,
  .selected_2e6c,
  .shade_d7b3,
  .easy_e84b,
  .container-upper-32c3 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .slow-3e94 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.narrow_20aa {
  margin-bottom: 3rem;
  text-align: center;
}

.caption_daf9 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.under-0ac6 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.info-old-d614,
.east_e640 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.background-3a1d {
  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;
}

.background-3a1d:hover {
  transform: translateY(-5px);
}

.background-3a1d strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.background-3a1d span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.rough-d2df {
  margin: 3rem 0;
}

.progress_stale_1d2f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.wrapper-small-28be {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.wrapper-small-28be:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.mask-17a2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.link-right-ec58 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.texture_0191 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.border-copper-5c22 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.steel-fb1d {
  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;
}

.steel-fb1d:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.steel-fb1d.table_5fb7 {
  border-left: 4px solid var(--primary-color);
}

.panel_e9b3 {
  flex-shrink: 0;
}

.panel_e9b3 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.dropdown_purple_9a82 {
  flex: 1;
}

.dropdown_purple_9a82 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.center_3cfa {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.light-b8d3,
.backdrop-d8ff,
.pagination-2713 {
  margin-bottom: 1.5rem;
}

.light-b8d3 h4,
.backdrop-d8ff h4,
.pagination-2713 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.light-b8d3 ul,
.backdrop-d8ff ul,
.pagination-2713 ul {
  list-style: none;
  padding: 0;
}

.light-b8d3 li,
.backdrop-d8ff li,
.pagination-2713 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.light-b8d3 li:before,
.backdrop-d8ff li:before,
.pagination-2713 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.thumbnail_4541 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.thumbnail_4541 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;
}

.thumbnail_4541 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.hero_42b7 { margin: 2rem 0; }
.progress-stale-e007 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.progress-stale-e007 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.label_4890 p { margin-bottom: 1rem; line-height: 1.7; }
.label_4890 strong { color: var(--text-primary); }
.label_4890 ul { list-style: none; padding-left: 0; }
.label_4890 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.label_4890 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.tabs_fluid_dede { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.menu_bb27 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.menu_bb27:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.action_aaa0 { font-size: 3rem; margin-bottom: 1rem; }
.menu_bb27 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.menu_bb27 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.primary_4767 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.primary_4767 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.gradient_e68b { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.search-b555 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.carousel-71c4 { text-align: center; }
.left-356c { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.preview-6005 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.east-616e { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.column_ea1c { margin: 2rem 0; }
.block-2335 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.block-2335 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.block-2335 p, .block-2335 ul { line-height: 1.7; }
.block-2335 ul { list-style: none; padding-left: 0; }
.block-2335 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.block-2335 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.content_lite_07f4 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.iron_245a { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.white_e129 { text-align: center; }
.breadcrumb-2f9f { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.simple-312b { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.prev-dcf2 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.item_solid_be54 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.disabled-soft-ac46 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.disabled-soft-ac46:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.disabled-soft-ac46 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.disabled-soft-ac46 p, .disabled-soft-ac46 ul { line-height: 1.7; }
.disabled-soft-ac46 ul { list-style: none; padding-left: 0; }
.disabled-soft-ac46 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.disabled-soft-ac46 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 1c59 */
.ghost-box-e2 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.2;
}
