/* ============================================
   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 */
.paragraph-3c26 p,
.border-brown-40eb,
.liquid-5511,
.section-75c8,
.bottom_cfca,
.disabled-smooth-7f6f,
.simple-22f5,
.in-39d7 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.article-tiny-71a5 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.article-tiny-71a5 > *,
.tabs_96eb,
.paragraph-3c26,
.link-4dcf {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .article-tiny-71a5 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .article-tiny-71a5 {
    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 === */
.title-prev-0fea {
  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 */
.title-prev-0fea.widget-lite-1795 {
  box-shadow: var(--shadow-md);
}

.label_a706 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.mini-6cd2 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.secondary-4680 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.input_7b97 {
  display: none;
}

/* Hide mobile actions on desktop */
.accent-34bc {
  display: none;
}

.white-0342 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.white-0342 a:hover,
.white-0342 a.fn-active-1de0 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.footer-middle-9211 {
  margin-left: 1rem;
}

.detail_0c54 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.surface-dim-8848,
.wrapper_smooth_fc3a {
  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;
}

.surface-dim-8848 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.surface-dim-8848: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;
}

.wrapper_smooth_fc3a {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.wrapper_smooth_fc3a: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;
}

.surface-dim-8848 svg,
.wrapper_smooth_fc3a svg {
  flex-shrink: 0;
}

.alert_c834 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.banner_current_30cb {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.banner_current_30cb::before,
.banner_current_30cb::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.banner_current_30cb::before {
  top: -7px;
}

.banner_current_30cb::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.outline-0576 {
  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 === */
.label-a403 {
  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);
}

.easy_0abf {
  margin: 0 0 2rem;
  text-align: center;
}

.dim-cd21 {
  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;
}

.dim-cd21:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.background_44ec {
  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);
}

.background_44ec strong {
  color: var(--primary-color);
  font-weight: 700;
}

.iron-8205 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.pagination_8dc8 {
  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;
}

.pagination_8dc8:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.section_pink_08d3 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.preview-middle-16b8 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.focus-23c7 {
  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);
}

.focus-23c7 .static-c5bb {
  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;
}

.focus-23c7 .static-c5bb svg {
  flex-shrink: 0;
}

.focus-23c7 .west_a0ed {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.focus-23c7 .west_a0ed: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);
}

.focus-23c7 .cool-6cb7 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.focus-23c7 .cool-6cb7: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) {
  .label-a403 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .dim-cd21 {
    max-width: 100%;
  }

  .iron-8205 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .pagination_8dc8 {
    padding: 1rem;
  }

  .section_pink_08d3 {
    font-size: 1.5rem;
  }

  .preview-middle-16b8 {
    font-size: 0.75rem;
  }

  .background_44ec {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .focus-23c7 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .focus-23c7 .static-c5bb {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .iron-8205 {
    grid-template-columns: 1fr;
  }
}

.button_299c {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.lower_ce4b {
  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 === */
.status-east-8241 {
  margin-bottom: 2.5rem;
}

.sidebar-up-672e {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.button_299c {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.center_37a2 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sidebar_4ff9 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.frame_hard_fc2c {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.accordion_light_badd {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.module_8214 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.hero_ec1f {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.card-small-368a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.card-small-368a svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.tiny-0c3d {
  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);
}

.inner-4189 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.video-cb2d {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.accordion-next-782f {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.next_fa57 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.outline_4b32 {
  display: grid;
  gap: 1rem;
}

.tertiary_4da6 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.liquid-b1d0 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.warm_518d {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.soft-bb75 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.video_364f {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.container_large_668c {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.container_large_668c p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.border-brown-40eb {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.info_6ecb {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.pressed_f5c0 {
  display: grid;
  gap: 2rem;
}

.hover_prev_6e3e {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.sidebar_4ff9 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.center_37a2 {
  flex: 1;
}

.accordion_light_badd {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.accordion_light_badd a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.gallery_e738 {
  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;
}

.module_8214 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.container_4d52 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.container_4d52 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.slow-e277 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.slow-e277 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.grid_eb30 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.grid_eb30 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.grid_eb30 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.grid_eb30 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.static_55f0 {
  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 === */
.narrow-9547 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.tooltip_easy_c7ea {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.hidden-e608 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.current_d4f2 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.current_d4f2 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.current_d4f2 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.current_d4f2 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;
}

.current_d4f2 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.current_d4f2 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.paragraph-3c26 {
  padding: 3rem 0 5rem;
}

.link-4dcf {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.link-4dcf.brown-ce5d {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.liquid-5511 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.upper_c5ab {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.static_9c6b {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.static_9c6b h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.next-1f15 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.surface-150d {
  text-align: center;
}

.hovered-b069 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.table_tall_b585 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.focused_14cc {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.disabled-smooth-7f6f {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.section-75c8 {
  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;
}

.section-75c8 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.section-75c8:hover {
  box-shadow: var(--shadow-lg);
}

.section-75c8.element-warm-6488 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.section-75c8 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.section-75c8 ul {
  margin: 1rem 0;
}

.section-75c8 li {
  margin-bottom: 0.75rem;
}

.hover_blue_399d {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.pagination_fixed_1872 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.pagination_fixed_1872 a {
  font-weight: 600;
}

/* === Data Tables === */
.aside-6dc1 {
  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;
}

.aside-6dc1 table {
  width: 100%;
  min-width: 600px;
}

.aside-6dc1 thead {
  background-color: var(--primary-color);
  color: white;
}

.aside-6dc1 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.aside-6dc1 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.aside-6dc1 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.aside-6dc1 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.paragraph_smooth_2c13 {
  list-style: none;
  margin: 1.5rem 0;
}

.paragraph_smooth_2c13 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.paragraph_smooth_2c13 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.search_933d::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-1de0::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 === */
.lower_439d {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.filter-abf1 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.filter-abf1 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.filter-abf1 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.filter-abf1 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.lower_439d blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.simple-22f5 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.simple-22f5::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.wide-b80f {
  position: relative;
  margin-bottom: 3rem;
}

.banner_huge_1b48 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.banner_huge_1b48 .card_hard_5129 {
  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;
}

.bright-e8ff {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.bright-e8ff h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.bright-e8ff ul {
  margin: 1rem 0;
}

.bright-e8ff li {
  margin-bottom: 0.75rem;
}

.outline_tiny_f702 {
  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 === */
.clean-df85 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.clean-df85 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.filter_4ff9 {
  list-style: none;
  margin: 1.5rem 0;
}

.filter_4ff9 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.filter_4ff9 a {
  font-weight: 600;
}

.card-8c22 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.in-39d7 {
  margin: 2.5rem 0;
}

.chip-medium-887d {
  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;
}

.chip-medium-887d:hover {
  box-shadow: var(--shadow-lg);
}

.chip-medium-887d.row_inner_7c4d {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.gradient-down-dc66 {
  flex-shrink: 0;
}

.gradient-down-dc66 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);
}

.paper_2453 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.dark-5912,
.simple_9baa,
.row-focused-2350 {
  width: 100%;
  margin: 1.5rem 0;
}

.link_focused_8dbc {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.link_focused_8dbc strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.summary_paper_d35f {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.summary_paper_d35f strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.paragraph_821f {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.paragraph_821f strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.fresh_9982 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.article-e580 {
  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;
}

.article-e580:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.article-e580.section-b9af {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.article-e580 .container_af5c {
  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;
}

.article-e580 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.component-narrow-10f5 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.overlay-new-dc7d {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.overlay-new-dc7d label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.summary_basic_2cea {
  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 === */
.static-c5bb {
  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;
}

.west_a0ed {
  background-color: var(--primary-color);
  color: white;
}

.west_a0ed:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.cool-6cb7 {
  background-color: var(--text-secondary);
  color: white;
}

.cool-6cb7:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.element_stone_9235 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.element_stone_9235:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.tertiary_32ce {
  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;
}

.tertiary_32ce:hover {
  background-color: var(--primary-dark);
}

.chip-c207 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.photo_4c74 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.menu-e5a7 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.table-df71 {
  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 === */
.content-8f08 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.stone_a04f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.stone_a04f h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.table-e8a1 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.short_fead {
  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;
}

.pattern-tall-1e10 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.filter_gold_cc48 {
  list-style: none;
  counter-reset: rank-counter;
}

.filter_gold_cc48 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.filter_gold_cc48 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;
}

.message_6ae7 {
  list-style: none;
}

.message_6ae7 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.cold-1c5e {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.dark-3c32 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.dark-3c32 .picture_9c31 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.dark-3c32 .gold-20a5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.article-e1a1 {
  margin-top: 3rem;
}

.notification_101a {
  width: 100%;
}

.widget-wood-aac0 {
  background-color: #fef3c7;
}

.sidebar_soft_973a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.upper_fec0 {
  margin: 3rem 0;
}

.info-current-b488 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.complex_972f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.complex_972f:hover {
  box-shadow: var(--shadow-lg);
}

.complex_972f.west_21b4 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.stale-20c0 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.widget_649b strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.widget_649b span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.out_018f {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.complex_972f blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.smooth_a7ad {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.heading_01f7 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.media-5798 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.panel-under-589e {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.video_a689 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.pattern-698b {
  margin-top: 1rem;
}

/* === FAQ Section === */
.hard_517b {
  max-width: 900px;
  margin: 0 auto;
}

.outline_focused_41b9 {
  margin: 2rem 0;
}

.silver-6d9d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.silver-6d9d summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.silver-6d9d summary::-webkit-details-marker {
  display: none;
}

.silver-6d9d summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.text-8e5d {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.silver-6d9d[open] .text-8e5d {
  transform: rotate(45deg);
}

.first_c652 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.first_c652 p:last-child {
  margin-bottom: 0;
}

.under-c5d3 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.static_8d0f {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.accent_d6cb {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.accent_d6cb p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.accent_d6cb .static-c5bb {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.tabs_hot_977f {
  max-width: 900px;
  margin: 0 auto;
}

.glass_ba82 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.basic-a598 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.basic-a598.fn-success-1de0 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.middle_5e01 {
  font-size: 3rem;
  line-height: 1;
}

.sort-dbd9 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.layout_7165 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.info-full-0d08,
.badge_c630 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.info-full-0d08 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.badge_c630 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.layout_e937,
.pink-4fc4 {
  margin: 1.5rem 0;
}

.layout_e937 li,
.pink-4fc4 li {
  margin-bottom: 1rem;
}

.video_745a {
  margin: 3rem 0;
}

.summary_south_aaf5 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.summary_south_aaf5 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.summary_south_aaf5 ol {
  margin: 1rem 0;
}

.summary_south_aaf5 li {
  margin-bottom: 0.75rem;
}

.west_9f95 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.box-south-7d6d {
  margin: 2rem 0;
}

.tooltip-in-f5d9 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.wrapper-ad80 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.hard_3855 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.hero_focused_ab18 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.overlay_out_f282 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.table_41e8 {
  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;
}

.table_41e8 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.frame_hard_fc2c {
  flex: 1;
}

.frame_hard_fc2c h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.pagination_huge_bdb6 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.photo_large_da58 p {
  margin-bottom: 1rem;
}

.block-dac3 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.search-615f {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.dynamic_01fc {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.dynamic_01fc a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.link_fixed_8f77 h3 {
  margin-bottom: 1.5rem;
}

.content-e352 {
  display: grid;
  gap: 2rem;
}

.module-hovered-2963 {
  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;
}

.module-hovered-2963 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.module-hovered-2963 h4 {
  margin: 0 0 0.25rem;
}

.module-hovered-2963 p {
  margin: 0;
  font-size: 0.9375rem;
}

.photo_in_738f {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.selected-8330 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.selected-8330 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.selected-8330 ul {
  margin: 1.5rem 0;
}

.selected-8330 li {
  margin-bottom: 0.75rem;
}

.icon-f8ae {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.basic-59db {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.image-dirty-e1c3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.stone_ca07 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.stone_ca07 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.nav_42eb {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.nav_42eb a {
  color: rgba(255, 255, 255, 0.8);
}

.copper_53da {
  list-style: none;
}

.copper_53da li {
  margin-bottom: 0.75rem;
}

.copper_53da a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.copper_53da a:hover {
  color: white;
}

.title_3f93 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.border_rough_5316 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.text_e254 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.message-west-bff2 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.light_a08a {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .article-tiny-71a5 {
    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;
  }

  .search-iron-2130 {
    font-size: 1.5rem !important;
  }

  .sidebar-up-672e {
    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 */
  .section-75c8,
  .bottom_cfca,
  .bright-e8ff,
  .paper_2453,
  .stale-20c0,
  .complex_972f,
  .first_c652,
  .background_44ec,
  .border-brown-40eb,
  .liquid-5511 {
    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 */
  .button_299c {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .center_37a2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .sidebar_4ff9 {
    flex-shrink: 0;
  }

  .frame_hard_fc2c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .accordion_light_badd,
  .module_8214 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .module_8214 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .secondary-4680 {
    display: none;
  }

  /* Show mobile actions */
  .accent-34bc {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .footer-81a3 {
    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;
  }

  .footer-81a3 svg {
    flex-shrink: 0;
  }

  .footer-81a3 .nav-easy-78e9 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .footer-81a3 .accordion-466f {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .warm-3cd4 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .info-simple-eee4 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .footer-81a3:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .input_7b97 {
    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;
  }

  .input_7b97.fn-active-1de0 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .input_7b97 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .input_7b97 li:last-child {
    border-bottom: none;
  }

  .input_7b97 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .white-0342 {
    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;
  }

  .white-0342 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .white-0342 li:last-child {
    border-bottom: none;
  }

  .white-0342 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .footer-middle-9211 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .detail_0c54 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .surface-dim-8848,
  .wrapper_smooth_fc3a {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .surface-dim-8848 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .wrapper_smooth_fc3a {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .white-0342.fn-active-1de0 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .alert_c834 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .title-prev-0fea {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .label_a706 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .outline-0576 {
    margin-top: 0;
  }

  /* Hero section */
  .outline-0576 {
    padding: 2rem 0 1.5rem;
  }

  .sidebar-up-672e {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .border-brown-40eb {
    font-size: 1rem;
  }

  /* Hero brand image */
  .label-a403 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .dim-cd21 {
    max-width: 100%;
    border-radius: 8px;
  }

  .iron-8205 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .pagination_8dc8 {
    padding: 1rem;
  }

  .section_pink_08d3 {
    font-size: 1.5rem;
  }

  .preview-middle-16b8 {
    font-size: 0.75rem;
  }

  .background_44ec {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .focus-23c7 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .focus-23c7 .static-c5bb {
    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 */
  .hidden-e608 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .chip-medium-887d {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .gradient-down-dc66 {
    margin-bottom: 1rem;
  }

  /* Author */
  .hover_prev_6e3e {
    flex-direction: column;
  }

  .table_41e8 {
    flex-direction: column;
  }

  /* Quotes */
  .stale-20c0 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .layout_7165 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .hero_focused_ab18 {
    flex-direction: column;
  }

  .hero_focused_ab18 .static-c5bb {
    width: 100%;
  }

  /* Version comparison */
  .fresh_9982 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .content-8f08 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .image-dirty-e1c3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .text_e254 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .aside-6dc1,
  .simple_9baa,
  .gold_e516,
  .notification_101a,
  .dark-5912,
  .row-focused-2350 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .aside-6dc1 table,
  .simple_9baa table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .summary_basic_2cea {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .article-tiny-71a5 {
    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;
  }

  .search-iron-2130 {
    font-size: 1.25rem !important;
  }

  .sidebar-up-672e {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .title-prev-0fea {
    position: fixed;
  }

  .label_a706 {
    padding: 0.625rem 0;
  }

  .mini-6cd2 img {
    height: 26px;
  }

  .white-0342 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .input_7b97 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .footer-81a3 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .footer-81a3 svg {
    width: 18px;
    height: 18px;
  }

  .footer-81a3 .nav-easy-78e9 {
    font-size: 0.7rem;
  }

  .footer-81a3 .accordion-466f {
    font-size: 0.65rem;
  }

  .surface-dim-8848,
  .wrapper_smooth_fc3a {
    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, .article-tiny-71a5, .tabs_96eb, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .label-a403 {
    padding: 1rem;
  }

  .iron-8205 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .pagination_8dc8 {
    padding: 0.875rem;
  }

  .section_pink_08d3 {
    font-size: 1.25rem;
  }

  .focus-23c7 .static-c5bb {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .sidebar-up-672e {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .static-c5bb {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .chip-c207 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .chip-medium-887d {
    padding: 1rem;
  }

  .gradient-down-dc66 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .section-75c8,
  .row-dynamic-dd0c,
  .picture_60ef,
  .modal_wood_7307 {
    padding: 1rem;
  }
}

@media print {
  .title-prev-0fea,
  .narrow-9547,
  .alert_c834,
  .static-c5bb,
  .basic-59db {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .article-tiny-71a5 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.smooth_a7fb {
  margin-bottom: 3rem;
  text-align: center;
}

.search-iron-2130 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.outer-745e {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.menu_c9a9,
.container_new_7b0d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card-933e {
  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;
}

.card-933e:hover {
  transform: translateY(-5px);
}

.card-933e strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.card-933e span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.header_aa91 {
  margin: 3rem 0;
}

.gradient-965f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.frame_62d4 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.frame_62d4:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.hover-d4b9 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.bottom_5b90 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.texture_old_01dc {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.tertiary-2d91 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.accordion_c002 {
  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;
}

.accordion_c002:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.accordion_c002.carousel-red-754c {
  border-left: 4px solid var(--primary-color);
}

.under-c1d7 {
  flex-shrink: 0;
}

.under-c1d7 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.section-fluid-ba19 {
  flex: 1;
}

.section-fluid-ba19 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.modal_hovered_9068 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.search-2e94,
.stone-5bd3,
.large-7401 {
  margin-bottom: 1.5rem;
}

.search-2e94 h4,
.stone-5bd3 h4,
.large-7401 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-2e94 ul,
.stone-5bd3 ul,
.large-7401 ul {
  list-style: none;
  padding: 0;
}

.search-2e94 li,
.stone-5bd3 li,
.large-7401 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.search-2e94 li:before,
.stone-5bd3 li:before,
.large-7401 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.alert_3b9d {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.alert_3b9d 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;
}

.alert_3b9d a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.last_756a { margin: 2rem 0; }
.slider-adc7 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.slider-adc7 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.layout_wide_e9d0 p { margin-bottom: 1rem; line-height: 1.7; }
.layout_wide_e9d0 strong { color: var(--text-primary); }
.layout_wide_e9d0 ul { list-style: none; padding-left: 0; }
.layout_wide_e9d0 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.layout_wide_e9d0 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.left-5611 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.first-382b { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.first-382b:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.large_1653 { font-size: 3rem; margin-bottom: 1rem; }
.first-382b h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.first-382b p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.module_fresh_71f1 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.module_fresh_71f1 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.grid_48c3 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.highlight_32e1 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.selected-0d75 { text-align: center; }
.grid_active_6da6 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.smooth_2d0e { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.container-0e9e { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.article-38f8 { margin: 2rem 0; }
.tall_88d5 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.tall_88d5 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.tall_88d5 p, .tall_88d5 ul { line-height: 1.7; }
.tall_88d5 ul { list-style: none; padding-left: 0; }
.tall_88d5 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.tall_88d5 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.section-tall-72f0 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.heading_old_7edd { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.component_iron_a0b2 { text-align: center; }
.table_fluid_006e { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.gradient-small-a2db { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.border-plasma-9b46 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.gold-796c { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.notification-short-7d65 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.notification-short-7d65:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.notification-short-7d65 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.notification-short-7d65 p, .notification-short-7d65 ul { line-height: 1.7; }
.notification-short-7d65 ul { list-style: none; padding-left: 0; }
.notification-short-7d65 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.notification-short-7d65 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 9db3 */
.phantom-card-s2 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.1;
}
