/* ============================================
   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 */
.up-58e8 p,
.hard-bbaf,
.tertiary_00da,
.heading_hard_434d,
.action-0905,
.wood-689f,
.rough_ea75,
.menu-4cff {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.sort-279a {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.sort-279a > *,
.status_1ada,
.up-58e8,
.item_4478 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .sort-279a {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .sort-279a {
    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 === */
.static_9106 {
  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 */
.static_9106.label-9890 {
  box-shadow: var(--shadow-md);
}

.logo_wide_ebd8 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.last_e4b3 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.alert_liquid_0401 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.old_2654 {
  display: none;
}

/* Hide mobile actions on desktop */
.prev_915e {
  display: none;
}

.content-c2da a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.content-c2da a:hover,
.content-c2da a.fn-active-e94c {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.steel_e251 {
  margin-left: 1rem;
}

.action_eb25 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.accordion_9f16,
.left_515a {
  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;
}

.accordion_9f16 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.accordion_9f16: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;
}

.left_515a {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.left_515a: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;
}

.accordion_9f16 svg,
.left_515a svg {
  flex-shrink: 0;
}

.progress_iron_7424 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.caption-dim-33bc {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.caption-dim-33bc::before,
.caption-dim-33bc::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.caption-dim-33bc::before {
  top: -7px;
}

.caption-dim-33bc::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.green_d265 {
  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 === */
.smooth_507d {
  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);
}

.link_large_51f3 {
  margin: 0 0 2rem;
  text-align: center;
}

.slider_e01c {
  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;
}

.slider_e01c:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.smooth_6cd2 {
  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);
}

.smooth_6cd2 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.description-bc90 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.label_pink_cdcc {
  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;
}

.label_pink_cdcc:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.gold_9639 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.sort-1be6 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.thumbnail_green_836b {
  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);
}

.thumbnail_green_836b .up_4b62 {
  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;
}

.thumbnail_green_836b .up_4b62 svg {
  flex-shrink: 0;
}

.thumbnail_green_836b .gradient_ba48 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.thumbnail_green_836b .gradient_ba48: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);
}

.thumbnail_green_836b .input_4b31 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.thumbnail_green_836b .input_4b31: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) {
  .smooth_507d {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .slider_e01c {
    max-width: 100%;
  }

  .description-bc90 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .label_pink_cdcc {
    padding: 1rem;
  }

  .gold_9639 {
    font-size: 1.5rem;
  }

  .sort-1be6 {
    font-size: 0.75rem;
  }

  .smooth_6cd2 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .thumbnail_green_836b {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .thumbnail_green_836b .up_4b62 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .description-bc90 {
    grid-template-columns: 1fr;
  }
}

.aside_a6db {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.title-stale-99dc {
  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 === */
.accordion_dim_8f42 {
  margin-bottom: 2.5rem;
}

.left-c8c8 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.aside_a6db {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.out-6f1a {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.disabled-silver-2799 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.search_29a3 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.component_c5d0 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.shade-paper-68a6 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.outline-simple-b2d8 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.nav_d457 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.nav_d457 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.pro-1047 {
  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);
}

.chip-9da9 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.focus-5087 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.current_83a3 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.notification_7f37 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.large_8e1e {
  display: grid;
  gap: 1rem;
}

.article_bronze_d6dc {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.container-dcd6 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.video-clean-c596 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.upper_7a2e {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.hero-9dad {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.picture_top_97d3 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.picture_top_97d3 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.hard-bbaf {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.narrow-0adb {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.modal_473f {
  display: grid;
  gap: 2rem;
}

.picture_4516 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.disabled-silver-2799 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.out-6f1a {
  flex: 1;
}

.component_c5d0 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.component_c5d0 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.border_steel_8816 {
  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;
}

.shade-paper-68a6 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.banner_ed8e {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.banner_ed8e span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.first-2f8d {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.first-2f8d a {
  font-size: 0.875rem;
  font-weight: 500;
}

.dark-954d {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.dark-954d strong {
  display: block;
  margin-bottom: 0.75rem;
}

.dark-954d ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dark-954d li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.liquid-f670 {
  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 === */
.black-a9e7 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.module-down-3e07 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.hover_70bb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.right-fc2c h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.right-fc2c ol {
  list-style: none;
  counter-reset: toc-counter;
}

.right-fc2c ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.right-fc2c ol li a {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

.right-fc2c ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.right-fc2c ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.up-58e8 {
  padding: 3rem 0 5rem;
}

.item_4478 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.item_4478.media_dark_f874 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.tertiary_00da {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.pattern_7b38 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.tabs_cedc {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.tabs_cedc h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.fluid-2e3b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.gradient_outer_1e25 {
  text-align: center;
}

.breadcrumb_dynamic_8469 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.alert_action_693d {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.backdrop_hot_ec38 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.wood-689f {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.heading_hard_434d {
  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;
}

.heading_hard_434d * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.heading_hard_434d:hover {
  box-shadow: var(--shadow-lg);
}

.heading_hard_434d.icon-6fb6 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.heading_hard_434d h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.heading_hard_434d ul {
  margin: 1rem 0;
}

.heading_hard_434d li {
  margin-bottom: 0.75rem;
}

.active-short-731a {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.old_bcf1 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.old_bcf1 a {
  font-weight: 600;
}

/* === Data Tables === */
.purple-cc4b {
  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;
}

.purple-cc4b table {
  width: 100%;
  min-width: 600px;
}

.purple-cc4b thead {
  background-color: var(--primary-color);
  color: white;
}

.purple-cc4b th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.purple-cc4b td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.purple-cc4b tbody tr:hover {
  background-color: var(--bg-secondary);
}

.purple-cc4b tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.disabled_6134 {
  list-style: none;
  margin: 1.5rem 0;
}

.disabled_6134 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.disabled_6134 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.south-a98a::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-e94c::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 === */
.pattern_5552 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.smooth-4854 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.smooth-4854 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.smooth-4854 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.smooth-4854 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pattern_5552 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.rough_ea75 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.rough_ea75::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.container_26f0 {
  position: relative;
  margin-bottom: 3rem;
}

.article_c9b5 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.article_c9b5 .carousel-e33e {
  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;
}

.banner-slow-d2d9 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.banner-slow-d2d9 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.banner-slow-d2d9 ul {
  margin: 1rem 0;
}

.banner-slow-d2d9 li {
  margin-bottom: 0.75rem;
}

.hard-e582 {
  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 === */
.column_484a {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.column_484a h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.dirty-a130 {
  list-style: none;
  margin: 1.5rem 0;
}

.dirty-a130 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.dirty-a130 a {
  font-weight: 600;
}

.thumbnail-copper-5e89 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.menu-4cff {
  margin: 2.5rem 0;
}

.label-c1d8 {
  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-c1d8:hover {
  box-shadow: var(--shadow-lg);
}

.label-c1d8.notice_71df {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.brown_3583 {
  flex-shrink: 0;
}

.brown_3583 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);
}

.thumbnail_tiny_3b12 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.stone-ab5b,
.video-78e4,
.avatar_2c46 {
  width: 100%;
  margin: 1.5rem 0;
}

.basic_ee54 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.basic_ee54 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.mask_e5b8 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.mask_e5b8 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.east-9d58 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.east-9d58 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.label-1f23 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.dropdown_pressed_b626 {
  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;
}

.dropdown_pressed_b626:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.dropdown_pressed_b626.shadow-bronze-3dc6 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.dropdown_pressed_b626 .border-mini-0687 {
  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;
}

.dropdown_pressed_b626 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.secondary-fresh-94d6 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.prev_0173 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.prev_0173 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.lower-10d3 {
  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 === */
.up_4b62 {
  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;
}

.gradient_ba48 {
  background-color: var(--primary-color);
  color: white;
}

.gradient_ba48:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.input_4b31 {
  background-color: var(--text-secondary);
  color: white;
}

.input_4b31:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.alert_e6c6 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.alert_e6c6:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.gas_0f90 {
  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;
}

.gas_0f90:hover {
  background-color: var(--primary-dark);
}

.thumbnail-glass-9b4e {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.mini_b13a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.hot-dd5b {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.tall_aa61 {
  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 === */
.button-a6c5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.slider_041e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.slider_041e h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.accordion-b04f {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.bottom-65f7 {
  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;
}

.tag_7648 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.accordion-yellow-c378 {
  list-style: none;
  counter-reset: rank-counter;
}

.accordion-yellow-c378 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.accordion-yellow-c378 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;
}

.primary_under_7597 {
  list-style: none;
}

.primary_under_7597 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.hard-a915 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.surface_bright_7003 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.surface_bright_7003 .form-focused-2c45 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.surface_bright_7003 .in-4585 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.top-ff19 {
  margin-top: 3rem;
}

.focus_3515 {
  width: 100%;
}

.bright-2869 {
  background-color: #fef3c7;
}

.upper-9187 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.popup-inner-46cb {
  margin: 3rem 0;
}

.focused_d2b9 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.heading_eabc {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.heading_eabc:hover {
  box-shadow: var(--shadow-lg);
}

.heading_eabc.border_5ae5 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.focus_88f1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.feature_df2a strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.feature_df2a span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.glass-e316 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.heading_eabc blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.purple-ac45 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.short-15dc {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.inner-bca9 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.main-67c8 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.column-gas-6371 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.description-4251 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.status-hard-7949 {
  max-width: 900px;
  margin: 0 auto;
}

.link-full-715d {
  margin: 2rem 0;
}

.photo-6fb1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.photo-6fb1 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.photo-6fb1 summary::-webkit-details-marker {
  display: none;
}

.photo-6fb1 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.logo_109b {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.photo-6fb1[open] .logo_109b {
  transform: rotate(45deg);
}

.red-605b {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.red-605b p:last-child {
  margin-bottom: 0;
}

.pagination-fluid-ae4f {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.overlay_dim_b3f2 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.aside_active_1fd9 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.aside_active_1fd9 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.aside_active_1fd9 .up_4b62 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.tag-6939 {
  max-width: 900px;
  margin: 0 auto;
}

.label_9492 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.large_e365 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.large_e365.fn-success-e94c {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.highlight-003d {
  font-size: 3rem;
  line-height: 1;
}

.new-b9a4 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.preview-e9f3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.frame-tall-1781,
.input_a439 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.frame-tall-1781 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.input_a439 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.component-3262,
.column_tall_86e2 {
  margin: 1.5rem 0;
}

.component-3262 li,
.column_tall_86e2 li {
  margin-bottom: 1rem;
}

.prev_9c31 {
  margin: 3rem 0;
}

.paragraph-c26b {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.paragraph-c26b h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.paragraph-c26b ol {
  margin: 1rem 0;
}

.paragraph-c26b li {
  margin-bottom: 0.75rem;
}

.pressed_7213 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.center_d949 {
  margin: 2rem 0;
}

.first-4df7 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.icon_small_a8f8 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.media-c33b {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.advanced-45ba {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.tabs-833a {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.gradient_4967 {
  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;
}

.gradient_4967 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.search_29a3 {
  flex: 1;
}

.search_29a3 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.hero-complex-798f {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.text_8b84 p {
  margin-bottom: 1rem;
}

.surface-42f2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.right-3fcb {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.heading-3f1b {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.heading-3f1b a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.first_3071 h3 {
  margin-bottom: 1.5rem;
}

.backdrop-3178 {
  display: grid;
  gap: 2rem;
}

.row_fb37 {
  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;
}

.row_fb37 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.row_fb37 h4 {
  margin: 0 0 0.25rem;
}

.row_fb37 p {
  margin: 0;
  font-size: 0.9375rem;
}

.dark-115e {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.panel-under-1171 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.panel-under-1171 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.panel-under-1171 ul {
  margin: 1.5rem 0;
}

.panel-under-1171 li {
  margin-bottom: 0.75rem;
}

.info-2e27 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.nav_new_3fef {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.sidebar_first_6384 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.stone-886b h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.stone-886b p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.sidebar-2013 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.sidebar-2013 a {
  color: rgba(255, 255, 255, 0.8);
}

.logo-5298 {
  list-style: none;
}

.logo-5298 li {
  margin-bottom: 0.75rem;
}

.logo-5298 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.logo-5298 a:hover {
  color: white;
}

.west-5d25 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.bottom-d950 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.dirty_65bc {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.layout_f608 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.item-hard-dfe3 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .sort-279a {
    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;
  }

  .paper_9aeb {
    font-size: 1.5rem !important;
  }

  .left-c8c8 {
    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 */
  .heading_hard_434d,
  .action-0905,
  .banner-slow-d2d9,
  .thumbnail_tiny_3b12,
  .focus_88f1,
  .heading_eabc,
  .red-605b,
  .smooth_6cd2,
  .hard-bbaf,
  .tertiary_00da {
    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 */
  .aside_a6db {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .out-6f1a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .disabled-silver-2799 {
    flex-shrink: 0;
  }

  .search_29a3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .component_c5d0,
  .shade-paper-68a6 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .shade-paper-68a6 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .alert_liquid_0401 {
    display: none;
  }

  /* Show mobile actions */
  .prev_915e {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .tertiary_e1d6 {
    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;
  }

  .tertiary_e1d6 svg {
    flex-shrink: 0;
  }

  .tertiary_e1d6 .gallery-2336 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .tertiary_e1d6 .description-iron-de87 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .shade-first-6c05 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .component-motion-0b9e {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .tertiary_e1d6:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .old_2654 {
    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;
  }

  .old_2654.fn-active-e94c {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .old_2654 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .old_2654 li:last-child {
    border-bottom: none;
  }

  .old_2654 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .content-c2da {
    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;
  }

  .content-c2da li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .content-c2da li:last-child {
    border-bottom: none;
  }

  .content-c2da a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .steel_e251 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .action_eb25 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .accordion_9f16,
  .left_515a {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .accordion_9f16 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .left_515a {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .content-c2da.fn-active-e94c {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .progress_iron_7424 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .static_9106 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .logo_wide_ebd8 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .green_d265 {
    margin-top: 0;
  }

  /* Hero section */
  .green_d265 {
    padding: 2rem 0 1.5rem;
  }

  .left-c8c8 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .hard-bbaf {
    font-size: 1rem;
  }

  /* Hero brand image */
  .smooth_507d {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .slider_e01c {
    max-width: 100%;
    border-radius: 8px;
  }

  .description-bc90 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .label_pink_cdcc {
    padding: 1rem;
  }

  .gold_9639 {
    font-size: 1.5rem;
  }

  .sort-1be6 {
    font-size: 0.75rem;
  }

  .smooth_6cd2 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .thumbnail_green_836b {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .thumbnail_green_836b .up_4b62 {
    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 */
  .hover_70bb {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .label-c1d8 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .brown_3583 {
    margin-bottom: 1rem;
  }

  /* Author */
  .picture_4516 {
    flex-direction: column;
  }

  .gradient_4967 {
    flex-direction: column;
  }

  /* Quotes */
  .focus_88f1 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .preview-e9f3 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .advanced-45ba {
    flex-direction: column;
  }

  .advanced-45ba .up_4b62 {
    width: 100%;
  }

  /* Version comparison */
  .label-1f23 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .button-a6c5 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .sidebar_first_6384 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .dirty_65bc {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .purple-cc4b,
  .video-78e4,
  .container_da06,
  .focus_3515,
  .stone-ab5b,
  .avatar_2c46 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .purple-cc4b table,
  .video-78e4 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .lower-10d3 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .sort-279a {
    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;
  }

  .paper_9aeb {
    font-size: 1.25rem !important;
  }

  .left-c8c8 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .static_9106 {
    position: fixed;
  }

  .logo_wide_ebd8 {
    padding: 0.625rem 0;
  }

  .last_e4b3 img {
    height: 26px;
  }

  .content-c2da {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .old_2654 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .tertiary_e1d6 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .tertiary_e1d6 svg {
    width: 18px;
    height: 18px;
  }

  .tertiary_e1d6 .gallery-2336 {
    font-size: 0.7rem;
  }

  .tertiary_e1d6 .description-iron-de87 {
    font-size: 0.65rem;
  }

  .accordion_9f16,
  .left_515a {
    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, .sort-279a, .status_1ada, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .smooth_507d {
    padding: 1rem;
  }

  .description-bc90 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .label_pink_cdcc {
    padding: 0.875rem;
  }

  .gold_9639 {
    font-size: 1.25rem;
  }

  .thumbnail_green_836b .up_4b62 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .left-c8c8 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .up_4b62 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .thumbnail-glass-9b4e {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .label-c1d8 {
    padding: 1rem;
  }

  .brown_3583 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .heading_hard_434d,
  .short_9e1a,
  .wrapper_huge_0478,
  .background_dynamic_15ce {
    padding: 1rem;
  }
}

@media print {
  .static_9106,
  .black-a9e7,
  .progress_iron_7424,
  .up_4b62,
  .nav_new_3fef {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .sort-279a {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.gold-1dc9 {
  margin-bottom: 3rem;
  text-align: center;
}

.paper_9aeb {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.basic-446e {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.smooth-99de,
.slider_9fe4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.copper-97b8 {
  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;
}

.copper-97b8:hover {
  transform: translateY(-5px);
}

.copper-97b8 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.copper-97b8 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.soft-c508 {
  margin: 3rem 0;
}

.sidebar-e463 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.table_ae8e {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.table_ae8e:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.blue_dd19 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.paragraph-c995 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.hovered_2e7f {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.modal-97af {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.new-35a4 {
  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;
}

.new-35a4:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.new-35a4.form_dynamic_0c68 {
  border-left: 4px solid var(--primary-color);
}

.border_72c4 {
  flex-shrink: 0;
}

.border_72c4 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.plasma_6922 {
  flex: 1;
}

.plasma_6922 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.last-7010 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.heading_dark_7f52,
.up-3b86,
.filter-bottom-6d21 {
  margin-bottom: 1.5rem;
}

.heading_dark_7f52 h4,
.up-3b86 h4,
.filter-bottom-6d21 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.heading_dark_7f52 ul,
.up-3b86 ul,
.filter-bottom-6d21 ul {
  list-style: none;
  padding: 0;
}

.heading_dark_7f52 li,
.up-3b86 li,
.filter-bottom-6d21 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.heading_dark_7f52 li:before,
.up-3b86 li:before,
.filter-bottom-6d21 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.media_0f03 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.media_0f03 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;
}

.media_0f03 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.link-stale-7701 { margin: 2rem 0; }
.advanced-c891 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.advanced-c891 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.up_ad66 p { margin-bottom: 1rem; line-height: 1.7; }
.up_ad66 strong { color: var(--text-primary); }
.up_ad66 ul { list-style: none; padding-left: 0; }
.up_ad66 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.up_ad66 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.sidebar-active-c81c { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.article_b5ac { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.article_b5ac:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.dropdown_advanced_95c9 { font-size: 3rem; margin-bottom: 1rem; }
.article_b5ac h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.article_b5ac p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.status_dfee { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.status_dfee span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.inner-6ca9 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.huge_43d5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.bronze_c946 { text-align: center; }
.center-7079 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.row-5c2f { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.tag-07c5 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.dynamic_ab50 { margin: 2rem 0; }
.surface-8843 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.surface-8843 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.surface-8843 p, .surface-8843 ul { line-height: 1.7; }
.surface-8843 ul { list-style: none; padding-left: 0; }
.surface-8843 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.surface-8843 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.accordion_pro_fc7c { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.easy_37a7 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.disabled_1a47 { text-align: center; }
.nav-a007 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.header_dba7 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.search-glass-90c9 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.picture-red-c113 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.focused-fa0e { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.focused-fa0e:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.focused-fa0e h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.focused-fa0e p, .focused-fa0e ul { line-height: 1.7; }
.focused-fa0e ul { list-style: none; padding-left: 0; }
.focused-fa0e ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.focused-fa0e ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: bec4 */
.widget-item-h0 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.1;
}
