/* ============================================
   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 */
.light-a54e p,
.new_82b9,
.menu_8897,
.column_e816,
.info-398f,
.soft-2ba6,
.notice_b71f,
.liquid-eaf6 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.layout_black_d2b3 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.layout_black_d2b3 > *,
.filter_126b,
.light-a54e,
.east-f6d4 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .layout_black_d2b3 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .layout_black_d2b3 {
    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_6311 {
  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_6311.module_6d04 {
  box-shadow: var(--shadow-md);
}

.next-4d62 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.gas_316a img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.block_fb6e {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.next_004d {
  display: none;
}

/* Hide mobile actions on desktop */
.pink_8b75 {
  display: none;
}

.medium-c8d5 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.medium-c8d5 a:hover,
.medium-c8d5 a.fn-active-d96a {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.primary_narrow_af88 {
  margin-left: 1rem;
}

.image_6d06 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.first-2454,
.tiny-88a0 {
  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;
}

.first-2454 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.first-2454: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;
}

.tiny-88a0 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.tiny-88a0: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;
}

.first-2454 svg,
.tiny-88a0 svg {
  flex-shrink: 0;
}

.pressed-d025 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.block_c5a2 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.block_c5a2::before,
.block_c5a2::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.block_c5a2::before {
  top: -7px;
}

.block_c5a2::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.yellow-e8ca {
  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 === */
.motion_ea96 {
  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);
}

.shade-plasma-5a54 {
  margin: 0 0 2rem;
  text-align: center;
}

.last-4d1f {
  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;
}

.last-4d1f:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.element_a54e {
  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);
}

.element_a54e strong {
  color: var(--primary-color);
  font-weight: 700;
}

.input_c14c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.tiny_b4d3 {
  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;
}

.tiny_b4d3:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.silver-e170 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.detail_bronze_d818 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.preview_inner_339d {
  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);
}

.preview_inner_339d .hard_7c52 {
  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;
}

.preview_inner_339d .hard_7c52 svg {
  flex-shrink: 0;
}

.preview_inner_339d .progress-9349 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.preview_inner_339d .progress-9349: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);
}

.preview_inner_339d .title_8d3a {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.preview_inner_339d .title_8d3a: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) {
  .motion_ea96 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .last-4d1f {
    max-width: 100%;
  }

  .input_c14c {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .tiny_b4d3 {
    padding: 1rem;
  }

  .silver-e170 {
    font-size: 1.5rem;
  }

  .detail_bronze_d818 {
    font-size: 0.75rem;
  }

  .element_a54e {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .preview_inner_339d {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .preview_inner_339d .hard_7c52 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .input_c14c {
    grid-template-columns: 1fr;
  }
}

.frame-a7e9 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.stale_cbeb {
  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 === */
.inner-05d7 {
  margin-bottom: 2.5rem;
}

.mini-e331 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.frame-a7e9 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.background_fixed_213f {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.background_07bd {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.action_2e0e {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.simple_11f0 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.container-431e {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.card-solid-ffcd {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tertiary_medium_8a53 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tertiary_medium_8a53 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.card_gas_68a6 {
  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);
}

.article-huge-0ef4 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.disabled_0a4a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.icon-cold-b1d0 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.wrapper-47c3 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.tabs-cc6d {
  display: grid;
  gap: 1rem;
}

.preview_b6ef {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.popup-cool-92f7 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.gradient-right-e3a5 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.narrow-ab1b {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.hero-top-7f38 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.tabs-fbc7 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.tabs-fbc7 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.new_82b9 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.rough-7745 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.picture_simple_92a4 {
  display: grid;
  gap: 2rem;
}

.mini_25f5 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.background_07bd {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.background_fixed_213f {
  flex: 1;
}

.simple_11f0 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.simple_11f0 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.filter_42eb {
  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;
}

.container-431e {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.icon-easy-efd6 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.icon-easy-efd6 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.link-d906 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.link-d906 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.panel_clean_a186 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.panel_clean_a186 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.panel_clean_a186 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.panel_clean_a186 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.avatar-aa3b {
  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 === */
.out-ab18 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.surface_24a8 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.border-7330 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.image-9d8d h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.image-9d8d ol {
  list-style: none;
  counter-reset: toc-counter;
}

.image-9d8d ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.image-9d8d 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;
}

.image-9d8d ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.image-9d8d ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.light-a54e {
  padding: 3rem 0 5rem;
}

.east-f6d4 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.east-f6d4.solid-1d05 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.menu_8897 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.picture-outer-42ee {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.image_action_c6cd {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.image_action_c6cd h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.middle-eda4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.accordion-fad1 {
  text-align: center;
}

.hovered-f00c {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.detail_green_4308 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.over-7d2c {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.soft-2ba6 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.column_e816 {
  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;
}

.column_e816 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.column_e816:hover {
  box-shadow: var(--shadow-lg);
}

.column_e816.up_58c9 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.column_e816 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.column_e816 ul {
  margin: 1rem 0;
}

.column_e816 li {
  margin-bottom: 0.75rem;
}

.fast_6a54 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.accordion_static_c340 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.accordion_static_c340 a {
  font-weight: 600;
}

/* === Data Tables === */
.preview_fast_3a74 {
  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;
}

.preview_fast_3a74 table {
  width: 100%;
  min-width: 600px;
}

.preview_fast_3a74 thead {
  background-color: var(--primary-color);
  color: white;
}

.preview_fast_3a74 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.preview_fast_3a74 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.preview_fast_3a74 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.preview_fast_3a74 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.text-steel-ba59 {
  list-style: none;
  margin: 1.5rem 0;
}

.text-steel-ba59 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.text-steel-ba59 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.red-e41b::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-d96a::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 === */
.hover-fda1 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.content_yellow_455b {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.content_yellow_455b img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.content_yellow_455b strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.content_yellow_455b span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hover-fda1 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.notice_b71f {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.notice_b71f::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.black-e960 {
  position: relative;
  margin-bottom: 3rem;
}

.filter_a2c5 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.filter_a2c5 .backdrop-b9ed {
  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;
}

.caption_iron_0a64 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.caption_iron_0a64 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.caption_iron_0a64 ul {
  margin: 1rem 0;
}

.caption_iron_0a64 li {
  margin-bottom: 0.75rem;
}

.feature-246b {
  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 === */
.dim_b9a6 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.dim_b9a6 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.dark-c0df {
  list-style: none;
  margin: 1.5rem 0;
}

.dark-c0df li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.dark-c0df a {
  font-weight: 600;
}

.paper-78b5 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.liquid-eaf6 {
  margin: 2.5rem 0;
}

.in_577b {
  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;
}

.in_577b:hover {
  box-shadow: var(--shadow-lg);
}

.in_577b.picture-ac69 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.simple-f18d {
  flex-shrink: 0;
}

.simple-f18d 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);
}

.dim-1f0c h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.content-next-b54e,
.action-cde5,
.border-4de1 {
  width: 100%;
  margin: 1.5rem 0;
}

.hovered_0cd4 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.hovered_0cd4 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.rough_29a8 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.rough_29a8 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.center_d054 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.center_d054 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.purple_e3b7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.disabled_dadd {
  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;
}

.disabled_dadd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.disabled_dadd.detail_outer_ca58 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.disabled_dadd .nav-liquid-7653 {
  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;
}

.disabled_dadd h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.stale-1c70 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.footer-inner-75ed {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.footer-inner-75ed label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.element-white-69de {
  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 === */
.hard_7c52 {
  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;
}

.progress-9349 {
  background-color: var(--primary-color);
  color: white;
}

.progress-9349:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.title_8d3a {
  background-color: var(--text-secondary);
  color: white;
}

.title_8d3a:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.out_2824 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.out_2824:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.hover_688a {
  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;
}

.hover_688a:hover {
  background-color: var(--primary-dark);
}

.narrow-333d {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.table-87c8 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.module_easy_fc1b {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pro_dd47 {
  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 === */
.filter-b31c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.container-pink-edf5 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.container-pink-edf5 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.media-d308 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.rough-fdf7 {
  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;
}

.row-north-1ed6 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.focus-1839 {
  list-style: none;
  counter-reset: rank-counter;
}

.focus-1839 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.focus-1839 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;
}

.media-selected-ae71 {
  list-style: none;
}

.media-selected-ae71 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.footer_9879 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.tiny-47a9 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.tiny-47a9 .form_rough_8cc3 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.tiny-47a9 .slider-center-582e {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.layout-b724 {
  margin-top: 3rem;
}

.container_8a97 {
  width: 100%;
}

.dim-2668 {
  background-color: #fef3c7;
}

.widget-77d5 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.gradient-654c {
  margin: 3rem 0;
}

.element_18dc {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.last_63de {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.last_63de:hover {
  box-shadow: var(--shadow-lg);
}

.last_63de.search_c2f1 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.border-3adb {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.block_glass_faad strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.block_glass_faad span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.avatar_thick_5006 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.last_63de blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.component-f606 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.article_slow_5e3c {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.button-a7ec {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.menu_cb8e {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.fast_f8aa {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.top-b2af {
  margin-top: 1rem;
}

/* === FAQ Section === */
.section-c9ce {
  max-width: 900px;
  margin: 0 auto;
}

.container-f63c {
  margin: 2rem 0;
}

.static-fa72 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.static-fa72 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.static-fa72 summary::-webkit-details-marker {
  display: none;
}

.static-fa72 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.simple_8c27 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.static-fa72[open] .simple_8c27 {
  transform: rotate(45deg);
}

.under_db3b {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.under_db3b p:last-child {
  margin-bottom: 0;
}

.item_dirty_2b7f {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.caption_hard_323c {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.prev-3e7c {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.prev-3e7c p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.prev-3e7c .hard_7c52 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.short_2c30 {
  max-width: 900px;
  margin: 0 auto;
}

.active-0a23 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.summary_7db8 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.summary_7db8.fn-success-d96a {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.block_70c6 {
  font-size: 3rem;
  line-height: 1;
}

.block-pressed-e84e h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.logo-active-6014 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.search_blue_9362,
.status-a290 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.search_blue_9362 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.status-a290 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.hidden-65dd,
.yellow_65cb {
  margin: 1.5rem 0;
}

.hidden-65dd li,
.yellow_65cb li {
  margin-bottom: 1rem;
}

.pink_959e {
  margin: 3rem 0;
}

.hero_67ce {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.hero_67ce h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.hero_67ce ol {
  margin: 1rem 0;
}

.hero_67ce li {
  margin-bottom: 0.75rem;
}

.menu-11c0 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.chip_3632 {
  margin: 2rem 0;
}

.item-complex-7919 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.header-fixed-756f {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.box_94fd {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.description-west-ea7d {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.paragraph_pro_5a47 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.detail_dirty_e139 {
  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;
}

.detail_dirty_e139 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.action_2e0e {
  flex: 1;
}

.action_2e0e h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.grid_easy_9f97 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.backdrop_motion_2ce8 p {
  margin-bottom: 1rem;
}

.secondary_out_2b7b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.narrow_7810 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.button-4d37 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.button-4d37 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.thick_e090 h3 {
  margin-bottom: 1.5rem;
}

.article-black-12e2 {
  display: grid;
  gap: 2rem;
}

.fresh_22df {
  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;
}

.fresh_22df img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.fresh_22df h4 {
  margin: 0 0 0.25rem;
}

.fresh_22df p {
  margin: 0;
  font-size: 0.9375rem;
}

.pressed_933d {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.current_20cf {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.current_20cf h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.current_20cf ul {
  margin: 1.5rem 0;
}

.current_20cf li {
  margin-bottom: 0.75rem;
}

.message_bf37 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.gradient_b315 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.background-dim-df72 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.next_6dcd h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.next_6dcd p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.box-fresh-6fb1 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.box-fresh-6fb1 a {
  color: rgba(255, 255, 255, 0.8);
}

.hidden_5424 {
  list-style: none;
}

.hidden_5424 li {
  margin-bottom: 0.75rem;
}

.hidden_5424 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.hidden_5424 a:hover {
  color: white;
}

.silver-9b4a {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.box_db92 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.primary-inner-f8ed {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.highlight_abbe {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.container_east_84a2 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .layout_black_d2b3 {
    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;
  }

  .solid-4ed1 {
    font-size: 1.5rem !important;
  }

  .mini-e331 {
    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 */
  .column_e816,
  .info-398f,
  .caption_iron_0a64,
  .dim-1f0c,
  .border-3adb,
  .last_63de,
  .under_db3b,
  .element_a54e,
  .new_82b9,
  .menu_8897 {
    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 */
  .frame-a7e9 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .background_fixed_213f {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .background_07bd {
    flex-shrink: 0;
  }

  .action_2e0e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .simple_11f0,
  .container-431e {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .container-431e {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .block_fb6e {
    display: none;
  }

  /* Show mobile actions */
  .pink_8b75 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .badge-7781 {
    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;
  }

  .badge-7781 svg {
    flex-shrink: 0;
  }

  .badge-7781 .table-narrow-d03f {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .badge-7781 .slider-fixed-d2da {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .logo-a9e8 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .black_5921 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .badge-7781:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .next_004d {
    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;
  }

  .next_004d.fn-active-d96a {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .next_004d li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .next_004d li:last-child {
    border-bottom: none;
  }

  .next_004d a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .medium-c8d5 {
    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;
  }

  .medium-c8d5 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .medium-c8d5 li:last-child {
    border-bottom: none;
  }

  .medium-c8d5 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .primary_narrow_af88 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .image_6d06 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .first-2454,
  .tiny-88a0 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .first-2454 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .tiny-88a0 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .medium-c8d5.fn-active-d96a {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .pressed-d025 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .outline_6311 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .next-4d62 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .yellow-e8ca {
    margin-top: 0;
  }

  /* Hero section */
  .yellow-e8ca {
    padding: 2rem 0 1.5rem;
  }

  .mini-e331 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .new_82b9 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .motion_ea96 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .last-4d1f {
    max-width: 100%;
    border-radius: 8px;
  }

  .input_c14c {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .tiny_b4d3 {
    padding: 1rem;
  }

  .silver-e170 {
    font-size: 1.5rem;
  }

  .detail_bronze_d818 {
    font-size: 0.75rem;
  }

  .element_a54e {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .preview_inner_339d {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .preview_inner_339d .hard_7c52 {
    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 */
  .border-7330 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .in_577b {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .simple-f18d {
    margin-bottom: 1rem;
  }

  /* Author */
  .mini_25f5 {
    flex-direction: column;
  }

  .detail_dirty_e139 {
    flex-direction: column;
  }

  /* Quotes */
  .border-3adb {
    flex-direction: column;
  }

  /* Pros/Cons */
  .logo-active-6014 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .description-west-ea7d {
    flex-direction: column;
  }

  .description-west-ea7d .hard_7c52 {
    width: 100%;
  }

  /* Version comparison */
  .purple_e3b7 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .filter-b31c {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .background-dim-df72 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .primary-inner-f8ed {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .preview_fast_3a74,
  .action-cde5,
  .fluid_05cc,
  .container_8a97,
  .content-next-b54e,
  .border-4de1 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .preview_fast_3a74 table,
  .action-cde5 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .element-white-69de {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .layout_black_d2b3 {
    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;
  }

  .solid-4ed1 {
    font-size: 1.25rem !important;
  }

  .mini-e331 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .outline_6311 {
    position: fixed;
  }

  .next-4d62 {
    padding: 0.625rem 0;
  }

  .gas_316a img {
    height: 26px;
  }

  .medium-c8d5 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .next_004d {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .badge-7781 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .badge-7781 svg {
    width: 18px;
    height: 18px;
  }

  .badge-7781 .table-narrow-d03f {
    font-size: 0.7rem;
  }

  .badge-7781 .slider-fixed-d2da {
    font-size: 0.65rem;
  }

  .first-2454,
  .tiny-88a0 {
    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, .layout_black_d2b3, .filter_126b, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .motion_ea96 {
    padding: 1rem;
  }

  .input_c14c {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .tiny_b4d3 {
    padding: 0.875rem;
  }

  .silver-e170 {
    font-size: 1.25rem;
  }

  .preview_inner_339d .hard_7c52 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .mini-e331 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .hard_7c52 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .narrow-333d {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .in_577b {
    padding: 1rem;
  }

  .simple-f18d span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .column_e816,
  .header-4ce4,
  .paper_7472,
  .dropdown_hard_9c68 {
    padding: 1rem;
  }
}

@media print {
  .outline_6311,
  .out-ab18,
  .pressed-d025,
  .hard_7c52,
  .gradient_b315 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .layout_black_d2b3 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.complex_c5df {
  margin-bottom: 3rem;
  text-align: center;
}

.solid-4ed1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.current-efe5 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.image_cba0,
.search_mini_63db {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.paper-171c {
  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;
}

.paper-171c:hover {
  transform: translateY(-5px);
}

.paper-171c strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.paper-171c span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.background-fdb9 {
  margin: 3rem 0;
}

.card-black-bad7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.in_bf39 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.in_bf39:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.component-cool-b21a {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.sort-4a7d {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.new_8647 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.main_fe50 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.focus_light_9766 {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.focus_light_9766:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.focus_light_9766.active-active-9d70 {
  border-left: 4px solid var(--primary-color);
}

.center_625c {
  flex-shrink: 0;
}

.center_625c svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.under-1f98 {
  flex: 1;
}

.under-1f98 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.highlight_active_8e35 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.old_78fe,
.active_02a6,
.complex_e475 {
  margin-bottom: 1.5rem;
}

.old_78fe h4,
.active_02a6 h4,
.complex_e475 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.old_78fe ul,
.active_02a6 ul,
.complex_e475 ul {
  list-style: none;
  padding: 0;
}

.old_78fe li,
.active_02a6 li,
.complex_e475 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.old_78fe li:before,
.active_02a6 li:before,
.complex_e475 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.input-2c6c {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.input-2c6c 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;
}

.input-2c6c a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.fluid_4bf9 { margin: 2rem 0; }
.menu-53f7 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.menu-53f7 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.section_lite_d0ac p { margin-bottom: 1rem; line-height: 1.7; }
.section_lite_d0ac strong { color: var(--text-primary); }
.section_lite_d0ac ul { list-style: none; padding-left: 0; }
.section_lite_d0ac ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.section_lite_d0ac ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.info-medium-eb60 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.grid_a254 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.grid_a254:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.nav-08b1 { font-size: 3rem; margin-bottom: 1rem; }
.grid_a254 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.grid_a254 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.icon_hard_e9bd { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.icon_hard_e9bd span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.tooltip_2fe9 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.bronze-328f { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.dim-4cc4 { text-align: center; }
.west_0778 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.label-16c3 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.surface-9827 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.carousel_south_4a4c { margin: 2rem 0; }
.layout-complex-b560 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.layout-complex-b560 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.layout-complex-b560 p, .layout-complex-b560 ul { line-height: 1.7; }
.layout-complex-b560 ul { list-style: none; padding-left: 0; }
.layout-complex-b560 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.layout-complex-b560 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.active-c9f4 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.item_f6f1 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.background_selected_35e7 { text-align: center; }
.bronze-1efe { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.link_selected_de52 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.alert-plasma-02b8 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.hovered-ef17 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.info-steel-df13 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.info-steel-df13:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.info-steel-df13 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.info-steel-df13 p, .info-steel-df13 ul { line-height: 1.7; }
.info-steel-df13 ul { list-style: none; padding-left: 0; }
.info-steel-df13 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.info-steel-df13 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 55ba */
.shadow-element-b0 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.2;
}
