/* ============================================
   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 */
.focused_8a19 p,
.left-6d09,
.pressed_c216,
.secondary-5dac,
.sidebar_4219,
.east_2af1,
.tertiary-full-5be5,
.center_5a60 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.label-south-ed21 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.label-south-ed21 > *,
.column_bronze_88f5,
.focused_8a19,
.short_f57a {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .label-south-ed21 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .label-south-ed21 {
    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 === */
.text-motion-0320 {
  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 */
.text-motion-0320.icon-481b {
  box-shadow: var(--shadow-md);
}

.photo-ecc8 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.lite-7acd img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.message-4d9a {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.narrow-f494 {
  display: none;
}

/* Hide mobile actions on desktop */
.preview-1745 {
  display: none;
}

.main-63d0 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.main-63d0 a:hover,
.main-63d0 a.fn-active-dd8d {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.tiny-80aa {
  margin-left: 1rem;
}

.hot-1ef4 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.search_plasma_8e53,
.action_291e {
  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;
}

.search_plasma_8e53 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.search_plasma_8e53: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;
}

.action_291e {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.action_291e: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;
}

.search_plasma_8e53 svg,
.action_291e svg {
  flex-shrink: 0;
}

.section-7980 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.static_9b62 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.static_9b62::before,
.static_9b62::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.static_9b62::before {
  top: -7px;
}

.static_9b62::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.highlight_smooth_e6c6 {
  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 === */
.iron_cb9d {
  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);
}

.mask-huge-c63f {
  margin: 0 0 2rem;
  text-align: center;
}

.stale_36f8 {
  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;
}

.stale_36f8:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.accordion_c988 {
  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);
}

.accordion_c988 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.wide_ec1c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.footer_3ab6 {
  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;
}

.footer_3ab6:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.nav_selected_cb86 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.block-paper-895f {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.notice-bronze-6e03 {
  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);
}

.notice-bronze-6e03 .action_80bb {
  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;
}

.notice-bronze-6e03 .action_80bb svg {
  flex-shrink: 0;
}

.notice-bronze-6e03 .cold_8480 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.notice-bronze-6e03 .cold_8480: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);
}

.notice-bronze-6e03 .element_lower_11d0 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.notice-bronze-6e03 .element_lower_11d0: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) {
  .iron_cb9d {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .stale_36f8 {
    max-width: 100%;
  }

  .wide_ec1c {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .footer_3ab6 {
    padding: 1rem;
  }

  .nav_selected_cb86 {
    font-size: 1.5rem;
  }

  .block-paper-895f {
    font-size: 0.75rem;
  }

  .accordion_c988 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .notice-bronze-6e03 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .notice-bronze-6e03 .action_80bb {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .wide_ec1c {
    grid-template-columns: 1fr;
  }
}

.smooth-03c1 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.background-dirty-22e1 {
  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 === */
.chip-f74d {
  margin-bottom: 2.5rem;
}

.current_99e3 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.smooth-03c1 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.narrow_d25c {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info_lower_2ebb {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.widget_97e7 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.highlight_huge_29a2 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.sort_ab34 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.active_iron_843a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.bronze-3e36 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.bronze-3e36 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.sidebar_complex_a087 {
  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);
}

.smooth_9d90 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.feature_upper_2fca {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.light-d96d {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.warm_b4e9 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.bronze-917a {
  display: grid;
  gap: 1rem;
}

.background_left_0b28 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.overlay_pressed_00af {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.new_0666 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.bronze_cb4a {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.border_142f {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.easy-4cc9 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.easy-4cc9 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.left-6d09 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.gas_119e {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.dynamic_dab5 {
  display: grid;
  gap: 2rem;
}

.sort-hard-e01a {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.info_lower_2ebb {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.narrow_d25c {
  flex: 1;
}

.highlight_huge_29a2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.highlight_huge_29a2 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.layout-4696 {
  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;
}

.sort_ab34 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.tabs-basic-cbc3 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.tabs-basic-cbc3 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.paper-56db {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.paper-56db a {
  font-size: 0.875rem;
  font-weight: 500;
}

.tertiary_3e28 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.tertiary_3e28 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.tertiary_3e28 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tertiary_3e28 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.pattern-right-593f {
  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 === */
.next_9926 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.fast_f26a {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.tertiary-center-0e0e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.column_687e h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.column_687e ol {
  list-style: none;
  counter-reset: toc-counter;
}

.column_687e ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.column_687e 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;
}

.column_687e ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.column_687e ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.focused_8a19 {
  padding: 3rem 0 5rem;
}

.short_f57a {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.short_f57a.photo_copper_ea65 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.pressed_c216 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.content_soft_c22a {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.grid-9f3b {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.grid-9f3b h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.mask_fixed_cfb3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.filter_0cfa {
  text-align: center;
}

.center_6e39 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.footer-white-6af8 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.dropdown_brown_9018 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.east_2af1 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.secondary-5dac {
  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;
}

.secondary-5dac * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.secondary-5dac:hover {
  box-shadow: var(--shadow-lg);
}

.secondary-5dac.photo_8297 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.secondary-5dac h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.secondary-5dac ul {
  margin: 1rem 0;
}

.secondary-5dac li {
  margin-bottom: 0.75rem;
}

.tall-7536 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.image_d509 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.image_d509 a {
  font-weight: 600;
}

/* === Data Tables === */
.picture_4c76 {
  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;
}

.picture_4c76 table {
  width: 100%;
  min-width: 600px;
}

.picture_4c76 thead {
  background-color: var(--primary-color);
  color: white;
}

.picture_4c76 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.picture_4c76 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.picture_4c76 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.picture_4c76 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.soft_deb7 {
  list-style: none;
  margin: 1.5rem 0;
}

.soft_deb7 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.soft_deb7 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.chip_last_d34f::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-dd8d::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 === */
.detail_3064 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.disabled_9e30 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.disabled_9e30 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.disabled_9e30 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.disabled_9e30 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.detail_3064 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.tertiary-full-5be5 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.tertiary-full-5be5::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.frame-c829 {
  position: relative;
  margin-bottom: 3rem;
}

.logo-486e {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.logo-486e .background_2f03 {
  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;
}

.gold-2dc7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.gold-2dc7 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.gold-2dc7 ul {
  margin: 1rem 0;
}

.gold-2dc7 li {
  margin-bottom: 0.75rem;
}

.down-f911 {
  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 === */
.notification-static-4194 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.notification-static-4194 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.text_full_0d57 {
  list-style: none;
  margin: 1.5rem 0;
}

.text_full_0d57 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.text_full_0d57 a {
  font-weight: 600;
}

.cold_7537 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.center_5a60 {
  margin: 2.5rem 0;
}

.logo-dark-9292 {
  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;
}

.logo-dark-9292:hover {
  box-shadow: var(--shadow-lg);
}

.logo-dark-9292.gradient_95d6 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.tiny-2119 {
  flex-shrink: 0;
}

.tiny-2119 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);
}

.component_dim_4a8d h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.lite-cf30,
.title-c6b5,
.gradient_8422 {
  width: 100%;
  margin: 1.5rem 0;
}

.advanced-501f {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.advanced-501f strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.description-2245 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.description-2245 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.modal-south-b500 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.modal-south-b500 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.description-d042 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.lite_1fcf {
  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;
}

.lite_1fcf:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.lite_1fcf.middle_082e {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.lite_1fcf .hidden_fluid_cf47 {
  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;
}

.lite_1fcf h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.sidebar-3f65 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.photo-2d7d {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.photo-2d7d label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.breadcrumb-7ae5 {
  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 === */
.action_80bb {
  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;
}

.cold_8480 {
  background-color: var(--primary-color);
  color: white;
}

.cold_8480:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.element_lower_11d0 {
  background-color: var(--text-secondary);
  color: white;
}

.element_lower_11d0:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.card_motion_020a {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.card_motion_020a:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.liquid_456b {
  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;
}

.liquid_456b:hover {
  background-color: var(--primary-dark);
}

.current_a295 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.tertiary-yellow-aea5 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.heading_dde4 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.hovered-b5f3 {
  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 === */
.module-blue-767f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.widget-41fc {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.widget-41fc h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.table_b52c {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.small-c817 {
  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;
}

.dim_95d7 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.shadow-1547 {
  list-style: none;
  counter-reset: rank-counter;
}

.shadow-1547 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.shadow-1547 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;
}

.fresh-f176 {
  list-style: none;
}

.fresh-f176 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.media-plasma-4561 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.highlight-ad52 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.highlight-ad52 .narrow_3931 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.highlight-ad52 .status-29eb {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hovered-dab4 {
  margin-top: 3rem;
}

.link_add3 {
  width: 100%;
}

.right_a3d6 {
  background-color: #fef3c7;
}

.hero-889c {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.item-f0f7 {
  margin: 3rem 0;
}

.huge_3c66 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.cool-eeba {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.cool-eeba:hover {
  box-shadow: var(--shadow-lg);
}

.cool-eeba.wide_746d {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.copper-2217 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.content-middle-87ad strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.content-middle-87ad span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.thick-f7e0 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.cool-eeba blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.label-fixed-6a5e {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.soft-9a2c {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.article-55ec {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.paper-f7a4 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.fresh_570c {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.gallery_top_4dc0 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.lite_5e3e {
  max-width: 900px;
  margin: 0 auto;
}

.tag-tall-67db {
  margin: 2rem 0;
}

.highlight-691e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.highlight-691e summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.highlight-691e summary::-webkit-details-marker {
  display: none;
}

.highlight-691e summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.hard-e486 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.highlight-691e[open] .hard-e486 {
  transform: rotate(45deg);
}

.solid-04c7 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.solid-04c7 p:last-child {
  margin-bottom: 0;
}

.menu_d40b {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.tabs-e009 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.wood_684b {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.wood_684b p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.wood_684b .action_80bb {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.steel_7655 {
  max-width: 900px;
  margin: 0 auto;
}

.red_fcb9 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.background-black-fdef {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.background-black-fdef.fn-success-dd8d {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.gallery_outer_355d {
  font-size: 3rem;
  line-height: 1;
}

.aside_purple_f42f h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.medium_e5d5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.breadcrumb_4316,
.clean-7af2 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.breadcrumb_4316 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.clean-7af2 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.paragraph_f7b0,
.frame_b3fc {
  margin: 1.5rem 0;
}

.paragraph_f7b0 li,
.frame_b3fc li {
  margin-bottom: 1rem;
}

.hero-pressed-6b54 {
  margin: 3rem 0;
}

.sidebar-dirty-1448 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.sidebar-dirty-1448 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.sidebar-dirty-1448 ol {
  margin: 1rem 0;
}

.sidebar-dirty-1448 li {
  margin-bottom: 0.75rem;
}

.hidden_5e7f {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.iron_6577 {
  margin: 2rem 0;
}

.photo-36b6 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.header-52a9 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.paragraph-34e0 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.form-0919 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.tertiary_white_7b54 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.focus_3ae9 {
  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;
}

.focus_3ae9 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.widget_97e7 {
  flex: 1;
}

.widget_97e7 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.item_fixed_324a {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.gold-adb2 p {
  margin-bottom: 1rem;
}

.tertiary_f4cc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.panel_9c0a {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.out-0217 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.out-0217 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.bottom-a892 h3 {
  margin-bottom: 1.5rem;
}

.label-9f45 {
  display: grid;
  gap: 2rem;
}

.next-b247 {
  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;
}

.next-b247 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.next-b247 h4 {
  margin: 0 0 0.25rem;
}

.next-b247 p {
  margin: 0;
  font-size: 0.9375rem;
}

.thumbnail_c937 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.heading_2578 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.heading_2578 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.heading_2578 ul {
  margin: 1.5rem 0;
}

.heading_2578 li {
  margin-bottom: 0.75rem;
}

.dark_c5b6 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.container-large-ad53 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.thick-bf41 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.shade-west-4330 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.shade-west-4330 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.image-4ade {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.image-4ade a {
  color: rgba(255, 255, 255, 0.8);
}

.focus_iron_36d6 {
  list-style: none;
}

.focus_iron_36d6 li {
  margin-bottom: 0.75rem;
}

.focus_iron_36d6 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.focus_iron_36d6 a:hover {
  color: white;
}

.hovered_2692 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.element-caf0 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.icon-fluid-9f70 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.active-1b6f {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.caption-5f54 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .label-south-ed21 {
    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;
  }

  .tag_slow_e94e {
    font-size: 1.5rem !important;
  }

  .current_99e3 {
    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 */
  .secondary-5dac,
  .sidebar_4219,
  .gold-2dc7,
  .component_dim_4a8d,
  .copper-2217,
  .cool-eeba,
  .solid-04c7,
  .accordion_c988,
  .left-6d09,
  .pressed_c216 {
    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 */
  .smooth-03c1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .narrow_d25c {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .info_lower_2ebb {
    flex-shrink: 0;
  }

  .widget_97e7 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .highlight_huge_29a2,
  .sort_ab34 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .sort_ab34 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .message-4d9a {
    display: none;
  }

  /* Show mobile actions */
  .preview-1745 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .south-9f67 {
    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;
  }

  .south-9f67 svg {
    flex-shrink: 0;
  }

  .south-9f67 .section-5bd2 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .south-9f67 .west_44c2 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .surface-short-eaaa {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .in_91e7 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .south-9f67:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .narrow-f494 {
    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;
  }

  .narrow-f494.fn-active-dd8d {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .narrow-f494 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .narrow-f494 li:last-child {
    border-bottom: none;
  }

  .narrow-f494 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .main-63d0 {
    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;
  }

  .main-63d0 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .main-63d0 li:last-child {
    border-bottom: none;
  }

  .main-63d0 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .tiny-80aa {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .hot-1ef4 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .search_plasma_8e53,
  .action_291e {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .search_plasma_8e53 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .action_291e {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .main-63d0.fn-active-dd8d {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .section-7980 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .text-motion-0320 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .photo-ecc8 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .highlight_smooth_e6c6 {
    margin-top: 0;
  }

  /* Hero section */
  .highlight_smooth_e6c6 {
    padding: 2rem 0 1.5rem;
  }

  .current_99e3 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .left-6d09 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .iron_cb9d {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .stale_36f8 {
    max-width: 100%;
    border-radius: 8px;
  }

  .wide_ec1c {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .footer_3ab6 {
    padding: 1rem;
  }

  .nav_selected_cb86 {
    font-size: 1.5rem;
  }

  .block-paper-895f {
    font-size: 0.75rem;
  }

  .accordion_c988 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .notice-bronze-6e03 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .notice-bronze-6e03 .action_80bb {
    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 */
  .tertiary-center-0e0e {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .logo-dark-9292 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .tiny-2119 {
    margin-bottom: 1rem;
  }

  /* Author */
  .sort-hard-e01a {
    flex-direction: column;
  }

  .focus_3ae9 {
    flex-direction: column;
  }

  /* Quotes */
  .copper-2217 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .medium_e5d5 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .form-0919 {
    flex-direction: column;
  }

  .form-0919 .action_80bb {
    width: 100%;
  }

  /* Version comparison */
  .description-d042 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .module-blue-767f {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .thick-bf41 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .icon-fluid-9f70 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .picture_4c76,
  .title-c6b5,
  .bright_e61d,
  .link_add3,
  .lite-cf30,
  .gradient_8422 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .picture_4c76 table,
  .title-c6b5 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .breadcrumb-7ae5 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .label-south-ed21 {
    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;
  }

  .tag_slow_e94e {
    font-size: 1.25rem !important;
  }

  .current_99e3 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .text-motion-0320 {
    position: fixed;
  }

  .photo-ecc8 {
    padding: 0.625rem 0;
  }

  .lite-7acd img {
    height: 26px;
  }

  .main-63d0 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .narrow-f494 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .south-9f67 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .south-9f67 svg {
    width: 18px;
    height: 18px;
  }

  .south-9f67 .section-5bd2 {
    font-size: 0.7rem;
  }

  .south-9f67 .west_44c2 {
    font-size: 0.65rem;
  }

  .search_plasma_8e53,
  .action_291e {
    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, .label-south-ed21, .column_bronze_88f5, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .iron_cb9d {
    padding: 1rem;
  }

  .wide_ec1c {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .footer_3ab6 {
    padding: 0.875rem;
  }

  .nav_selected_cb86 {
    font-size: 1.25rem;
  }

  .notice-bronze-6e03 .action_80bb {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .current_99e3 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .action_80bb {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .current_a295 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .logo-dark-9292 {
    padding: 1rem;
  }

  .tiny-2119 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .secondary-5dac,
  .paper-f30b,
  .sort-63ce,
  .soft-d66a {
    padding: 1rem;
  }
}

@media print {
  .text-motion-0320,
  .next_9926,
  .section-7980,
  .action_80bb,
  .container-large-ad53 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .label-south-ed21 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.gas_874b {
  margin-bottom: 3rem;
  text-align: center;
}

.tag_slow_e94e {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.avatar_under_f578 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.slow_cc79,
.block-d46c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.first_9ea7 {
  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;
}

.first_9ea7:hover {
  transform: translateY(-5px);
}

.first_9ea7 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.first_9ea7 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.summary_1566 {
  margin: 3rem 0;
}

.item_hard_a671 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.warm-dfcf {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.warm-dfcf:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.new_d1c7 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.icon-e0d1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.pressed-30fc {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.badge-wide-1c1d {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.thumbnail_7af9 {
  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;
}

.thumbnail_7af9:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.thumbnail_7af9.fresh_eba2 {
  border-left: 4px solid var(--primary-color);
}

.shade_5595 {
  flex-shrink: 0;
}

.shade_5595 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.frame_lower_828a {
  flex: 1;
}

.frame_lower_828a h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.link-ba6a {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.shadow_glass_36f2,
.form-052d,
.sort-5b52 {
  margin-bottom: 1.5rem;
}

.shadow_glass_36f2 h4,
.form-052d h4,
.sort-5b52 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.shadow_glass_36f2 ul,
.form-052d ul,
.sort-5b52 ul {
  list-style: none;
  padding: 0;
}

.shadow_glass_36f2 li,
.form-052d li,
.sort-5b52 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.shadow_glass_36f2 li:before,
.form-052d li:before,
.sort-5b52 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.content_71b6 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.content_71b6 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;
}

.content_71b6 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.notice-cold-3c1d { margin: 2rem 0; }
.list_864b { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.list_864b h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.cool-b49d p { margin-bottom: 1rem; line-height: 1.7; }
.cool-b49d strong { color: var(--text-primary); }
.cool-b49d ul { list-style: none; padding-left: 0; }
.cool-b49d ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.cool-b49d ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.hard-a07b { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.active-d39d { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.active-d39d:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.hovered-67e3 { font-size: 3rem; margin-bottom: 1rem; }
.active-d39d h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.active-d39d p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.text_6221 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.text_6221 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.outline-5d14 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.feature_middle_b7e0 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.basic_f68a { text-align: center; }
.footer-purple-de5c { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.secondary-steel-65fa { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.gas_d25a { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.content-small-569c { margin: 2rem 0; }
.tertiary-3952 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.tertiary-3952 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.tertiary-3952 p, .tertiary-3952 ul { line-height: 1.7; }
.tertiary-3952 ul { list-style: none; padding-left: 0; }
.tertiary-3952 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.tertiary-3952 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.under-df6a { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.component_dark_7504 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.preview_ea74 { text-align: center; }
.thick_2195 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.static-5918 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.outline-42fb { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.upper-2c78 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.first_5688 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.first_5688:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.first_5688 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.first_5688 p, .first_5688 ul { line-height: 1.7; }
.first_5688 ul { list-style: none; padding-left: 0; }
.first_5688 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.first_5688 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: e8cb */
.widget-item-d7 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.2;
}
