/* ============================================
   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 */
.active_7c73 p,
.shadow-18aa,
.carousel_7597,
.fresh-1aae,
.hidden-579d,
.gradient-warm-988d,
.tabs_east_fa94,
.modal_motion_e5d4 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.pressed_15a7 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.pressed_15a7 > *,
.current-0f0a,
.active_7c73,
.highlight-up-a7aa {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .pressed_15a7 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .pressed_15a7 {
    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 === */
.nav_outer_9008 {
  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 */
.nav_outer_9008.primary_cool_4049 {
  box-shadow: var(--shadow-md);
}

.breadcrumb_stone_3299 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.banner-c4cf img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.footer_4a82 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.table-f8e0 {
  display: none;
}

/* Hide mobile actions on desktop */
.message_current_552b {
  display: none;
}

.title-9a0a a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.title-9a0a a:hover,
.title-9a0a a.fn-active-3795 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.card-958d {
  margin-left: 1rem;
}

.header_complex_7dbb {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.upper-9469,
.badge_8a4d {
  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;
}

.upper-9469 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.upper-9469: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;
}

.badge_8a4d {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.badge_8a4d: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;
}

.upper-9469 svg,
.badge_8a4d svg {
  flex-shrink: 0;
}

.info_5b23 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.shadow-upper-94eb {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.shadow-upper-94eb::before,
.shadow-upper-94eb::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.shadow-upper-94eb::before {
  top: -7px;
}

.shadow-upper-94eb::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.focused-c100 {
  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 === */
.west_1ae1 {
  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);
}

.light_d0af {
  margin: 0 0 2rem;
  text-align: center;
}

.fixed_a883 {
  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;
}

.fixed_a883:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.hover_upper_dc78 {
  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);
}

.hover_upper_dc78 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.accent-c701 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.active-6a59 {
  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;
}

.active-6a59:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.red-73fb {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.form-2852 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.copper_189a {
  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);
}

.copper_189a .dirty-b3a6 {
  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;
}

.copper_189a .dirty-b3a6 svg {
  flex-shrink: 0;
}

.copper_189a .secondary_4e94 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.copper_189a .secondary_4e94: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);
}

.copper_189a .center-6a8b {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.copper_189a .center-6a8b: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) {
  .west_1ae1 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .fixed_a883 {
    max-width: 100%;
  }

  .accent-c701 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .active-6a59 {
    padding: 1rem;
  }

  .red-73fb {
    font-size: 1.5rem;
  }

  .form-2852 {
    font-size: 0.75rem;
  }

  .hover_upper_dc78 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .copper_189a {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .copper_189a .dirty-b3a6 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .accent-c701 {
    grid-template-columns: 1fr;
  }
}

.item-ea2b {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.block_2073 {
  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 === */
.short_901b {
  margin-bottom: 2.5rem;
}

.huge-dbc7 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.item-ea2b {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.form_66e0 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.block-gold-3129 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.highlight-medium-9bcc {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hard-5dab {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.large_03b9 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.widget_b8b6 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.mini_2e5f {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.mini_2e5f svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.badge-up-adfc {
  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);
}

.component_3871 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.simple-6291 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.article-d22e {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.list_a40e {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.search-9fce {
  display: grid;
  gap: 1rem;
}

.liquid-8cdb {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.first_7a11 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.feature_9720 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.filter_f534 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.paragraph-19c2 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.frame_dark_c832 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.frame_dark_c832 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.shadow-18aa {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.disabled_cf94 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.row-hovered-79c1 {
  display: grid;
  gap: 2rem;
}

.fast-8dc2 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.block-gold-3129 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.form_66e0 {
  flex: 1;
}

.hard-5dab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.hard-5dab a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.wide_262c {
  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;
}

.large_03b9 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.accordion-thick-19c4 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.accordion-thick-19c4 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.tooltip_under_7266 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.tooltip_under_7266 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.action_eeef {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.action_eeef strong {
  display: block;
  margin-bottom: 0.75rem;
}

.action_eeef ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.action_eeef li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.easy-9ab6 {
  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 === */
.fresh_fe8d {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.alert-paper-ef06 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.blue-d049 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.selected_3d94 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.selected_3d94 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.selected_3d94 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.selected_3d94 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;
}

.selected_3d94 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.selected_3d94 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.active_7c73 {
  padding: 3rem 0 5rem;
}

.highlight-up-a7aa {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.highlight-up-a7aa.slider-6316 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.carousel_7597 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.medium-ae7f {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.picture-right-c6bd {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.picture-right-c6bd h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.dropdown-small-df0b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.motion-0d00 {
  text-align: center;
}

.black_d1ed {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.soft_fbf2 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.active-next-16cc {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.gradient-warm-988d {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.fresh-1aae {
  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;
}

.fresh-1aae * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.fresh-1aae:hover {
  box-shadow: var(--shadow-lg);
}

.fresh-1aae.modal_bottom_83c1 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.fresh-1aae h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.fresh-1aae ul {
  margin: 1rem 0;
}

.fresh-1aae li {
  margin-bottom: 0.75rem;
}

.light-3ece {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.table-2689 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.table-2689 a {
  font-weight: 600;
}

/* === Data Tables === */
.simple_ffb4 {
  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;
}

.simple_ffb4 table {
  width: 100%;
  min-width: 600px;
}

.simple_ffb4 thead {
  background-color: var(--primary-color);
  color: white;
}

.simple_ffb4 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.simple_ffb4 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.simple_ffb4 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.simple_ffb4 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.summary_1a7b {
  list-style: none;
  margin: 1.5rem 0;
}

.summary_1a7b li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.summary_1a7b li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.cold-5dc3::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-3795::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 === */
.button-focused-6500 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.form_20cc {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.form_20cc img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.form_20cc strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.form_20cc span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.button-focused-6500 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.tabs_east_fa94 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.tabs_east_fa94::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.column-light-e353 {
  position: relative;
  margin-bottom: 3rem;
}

.first-e3bc {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.first-e3bc .highlight-d6fa {
  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;
}

.gallery-fb76 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.gallery-fb76 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.gallery-fb76 ul {
  margin: 1rem 0;
}

.gallery-fb76 li {
  margin-bottom: 0.75rem;
}

.tag-8de5 {
  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 === */
.easy_0ba8 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.easy_0ba8 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.tabs_0f0a {
  list-style: none;
  margin: 1.5rem 0;
}

.tabs_0f0a li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.tabs_0f0a a {
  font-weight: 600;
}

.outline_c366 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.modal_motion_e5d4 {
  margin: 2.5rem 0;
}

.nav-38ae {
  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;
}

.nav-38ae:hover {
  box-shadow: var(--shadow-lg);
}

.nav-38ae.filter_91e6 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.nav-382a {
  flex-shrink: 0;
}

.nav-382a 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);
}

.widget_4d34 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.caption_6de2,
.label-up-75a1,
.banner-da96 {
  width: 100%;
  margin: 1.5rem 0;
}

.grid-tall-0151 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.grid-tall-0151 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.focus-cool-cdd5 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.focus-cool-cdd5 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.surface-7ecd {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.surface-7ecd strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.outer_7821 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.carousel_9459 {
  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;
}

.carousel_9459:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.carousel_9459.media-iron-a876 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.carousel_9459 .dark-7c21 {
  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;
}

.carousel_9459 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.section_0017 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.label-74b4 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.label-74b4 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.left-9316 {
  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 === */
.dirty-b3a6 {
  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;
}

.secondary_4e94 {
  background-color: var(--primary-color);
  color: white;
}

.secondary_4e94:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.center-6a8b {
  background-color: var(--text-secondary);
  color: white;
}

.center-6a8b:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.overlay_56c6 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.overlay_56c6:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.pressed_17f1 {
  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;
}

.pressed_17f1:hover {
  background-color: var(--primary-dark);
}

.notification-red-1f29 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.input-43bf {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.caption-4173 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.badge_cold_e4f9 {
  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 === */
.message_hot_0ad1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.frame-hard-e74a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.frame-hard-e74a h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.video-13ff {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.thumbnail-6a74 {
  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;
}

.popup-stone-228b {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.popup_db81 {
  list-style: none;
  counter-reset: rank-counter;
}

.popup_db81 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.popup_db81 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;
}

.table_basic_3cc3 {
  list-style: none;
}

.table_basic_3cc3 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.summary_dd6f {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.info_2de0 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.info_2de0 .solid-8d04 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.info_2de0 .text-huge-b4eb {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.tooltip-inner-9957 {
  margin-top: 3rem;
}

.left-c3aa {
  width: 100%;
}

.info-last-9478 {
  background-color: #fef3c7;
}

.old-8224 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.photo-bright-b7e8 {
  margin: 3rem 0;
}

.backdrop_f6bb {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.backdrop_hot_45f1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.backdrop_hot_45f1:hover {
  box-shadow: var(--shadow-lg);
}

.backdrop_hot_45f1.brown-500f {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.footer-492f {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.tertiary-41a6 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.tertiary-41a6 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pattern-bright-127e {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.backdrop_hot_45f1 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.module-5e8e {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.message_lower_cbad {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.menu_3605 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.message-41d3 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.motion-c548 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.motion-83c6 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.layout-hard-7cf0 {
  max-width: 900px;
  margin: 0 auto;
}

.left-7ab6 {
  margin: 2rem 0;
}

.down_336f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.down_336f summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.down_336f summary::-webkit-details-marker {
  display: none;
}

.down_336f summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.thumbnail_30ff {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.down_336f[open] .thumbnail_30ff {
  transform: rotate(45deg);
}

.media-4e23 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.media-4e23 p:last-child {
  margin-bottom: 0;
}

.accent_focused_2243 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.accordion_paper_d056 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.tabs_lower_909a {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.tabs_lower_909a p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.tabs_lower_909a .dirty-b3a6 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.rough_a615 {
  max-width: 900px;
  margin: 0 auto;
}

.fast-cb0f {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.surface-b220 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.surface-b220.fn-success-3795 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.selected-b257 {
  font-size: 3rem;
  line-height: 1;
}

.hero_1594 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.dropdown_dark_f70b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.photo-99b4,
.surface-bc8c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.photo-99b4 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.surface-bc8c h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.purple_cc57,
.heading-e69f {
  margin: 1.5rem 0;
}

.purple_cc57 li,
.heading-e69f li {
  margin-bottom: 1rem;
}

.slider-6769 {
  margin: 3rem 0;
}

.summary_huge_e09e {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.summary_huge_e09e h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.summary_huge_e09e ol {
  margin: 1rem 0;
}

.summary_huge_e09e li {
  margin-bottom: 0.75rem;
}

.link-1c29 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.layout-1a1a {
  margin: 2rem 0;
}

.inner-96ba {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.narrow-12bd {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.huge-760b {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.popup-action-52bf {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.title_last_0ca4 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.widget_gold_e483 {
  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;
}

.widget_gold_e483 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.highlight-medium-9bcc {
  flex: 1;
}

.highlight-medium-9bcc h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.notice-pro-dc80 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.detail-7d52 p {
  margin-bottom: 1rem;
}

.accordion-west-7357 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.outline_hard_bbbb {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.content-8047 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.content-8047 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.sort_fluid_1d9b h3 {
  margin-bottom: 1.5rem;
}

.mask_7248 {
  display: grid;
  gap: 2rem;
}

.pro_5200 {
  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;
}

.pro_5200 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.pro_5200 h4 {
  margin: 0 0 0.25rem;
}

.pro_5200 p {
  margin: 0;
  font-size: 0.9375rem;
}

.accordion-narrow-6bdb {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.photo_hovered_7d02 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.photo_hovered_7d02 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.photo_hovered_7d02 ul {
  margin: 1.5rem 0;
}

.photo_hovered_7d02 li {
  margin-bottom: 0.75rem;
}

.tall-688e {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.focus_pressed_8e7d {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.disabled-9218 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.header-6bc8 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.header-6bc8 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.tooltip_left_40cb {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.tooltip_left_40cb a {
  color: rgba(255, 255, 255, 0.8);
}

.focused-34b8 {
  list-style: none;
}

.focused-34b8 li {
  margin-bottom: 0.75rem;
}

.focused-34b8 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.focused-34b8 a:hover {
  color: white;
}

.tooltip-last-130f {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.soft-4f37 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.label-63ea {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.table-dab6 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.hard-1b28 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .pressed_15a7 {
    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;
  }

  .article-smooth-7dea {
    font-size: 1.5rem !important;
  }

  .huge-dbc7 {
    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 */
  .fresh-1aae,
  .hidden-579d,
  .gallery-fb76,
  .widget_4d34,
  .footer-492f,
  .backdrop_hot_45f1,
  .media-4e23,
  .hover_upper_dc78,
  .shadow-18aa,
  .carousel_7597 {
    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 */
  .item-ea2b {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .form_66e0 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .block-gold-3129 {
    flex-shrink: 0;
  }

  .highlight-medium-9bcc {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .hard-5dab,
  .large_03b9 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .large_03b9 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .footer_4a82 {
    display: none;
  }

  /* Show mobile actions */
  .message_current_552b {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .logo_2bf8 {
    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;
  }

  .logo_2bf8 svg {
    flex-shrink: 0;
  }

  .logo_2bf8 .carousel-6e8f {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .logo_2bf8 .content-action-c3cd {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .header_in_76f2 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .wide-6a70 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .logo_2bf8:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .table-f8e0 {
    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;
  }

  .table-f8e0.fn-active-3795 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .table-f8e0 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .table-f8e0 li:last-child {
    border-bottom: none;
  }

  .table-f8e0 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .title-9a0a {
    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;
  }

  .title-9a0a li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .title-9a0a li:last-child {
    border-bottom: none;
  }

  .title-9a0a a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .card-958d {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .header_complex_7dbb {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .upper-9469,
  .badge_8a4d {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .upper-9469 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .badge_8a4d {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .title-9a0a.fn-active-3795 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .info_5b23 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .nav_outer_9008 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .breadcrumb_stone_3299 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .focused-c100 {
    margin-top: 0;
  }

  /* Hero section */
  .focused-c100 {
    padding: 2rem 0 1.5rem;
  }

  .huge-dbc7 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .shadow-18aa {
    font-size: 1rem;
  }

  /* Hero brand image */
  .west_1ae1 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .fixed_a883 {
    max-width: 100%;
    border-radius: 8px;
  }

  .accent-c701 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .active-6a59 {
    padding: 1rem;
  }

  .red-73fb {
    font-size: 1.5rem;
  }

  .form-2852 {
    font-size: 0.75rem;
  }

  .hover_upper_dc78 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .copper_189a {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .copper_189a .dirty-b3a6 {
    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 */
  .blue-d049 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .nav-38ae {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .nav-382a {
    margin-bottom: 1rem;
  }

  /* Author */
  .fast-8dc2 {
    flex-direction: column;
  }

  .widget_gold_e483 {
    flex-direction: column;
  }

  /* Quotes */
  .footer-492f {
    flex-direction: column;
  }

  /* Pros/Cons */
  .dropdown_dark_f70b {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .popup-action-52bf {
    flex-direction: column;
  }

  .popup-action-52bf .dirty-b3a6 {
    width: 100%;
  }

  /* Version comparison */
  .outer_7821 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .message_hot_0ad1 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .disabled-9218 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .label-63ea {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .simple_ffb4,
  .label-up-75a1,
  .logo-static-88d6,
  .left-c3aa,
  .caption_6de2,
  .banner-da96 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .simple_ffb4 table,
  .label-up-75a1 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .left-9316 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .pressed_15a7 {
    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;
  }

  .article-smooth-7dea {
    font-size: 1.25rem !important;
  }

  .huge-dbc7 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .nav_outer_9008 {
    position: fixed;
  }

  .breadcrumb_stone_3299 {
    padding: 0.625rem 0;
  }

  .banner-c4cf img {
    height: 26px;
  }

  .title-9a0a {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .table-f8e0 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .logo_2bf8 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .logo_2bf8 svg {
    width: 18px;
    height: 18px;
  }

  .logo_2bf8 .carousel-6e8f {
    font-size: 0.7rem;
  }

  .logo_2bf8 .content-action-c3cd {
    font-size: 0.65rem;
  }

  .upper-9469,
  .badge_8a4d {
    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, .pressed_15a7, .current-0f0a, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .west_1ae1 {
    padding: 1rem;
  }

  .accent-c701 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .active-6a59 {
    padding: 0.875rem;
  }

  .red-73fb {
    font-size: 1.25rem;
  }

  .copper_189a .dirty-b3a6 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .huge-dbc7 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .dirty-b3a6 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .notification-red-1f29 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .nav-38ae {
    padding: 1rem;
  }

  .nav-382a span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .fresh-1aae,
  .text_left_bf20,
  .row_0099,
  .dim_a6bf {
    padding: 1rem;
  }
}

@media print {
  .nav_outer_9008,
  .fresh_fe8d,
  .info_5b23,
  .dirty-b3a6,
  .focus_pressed_8e7d {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .pressed_15a7 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.slider_1db2 {
  margin-bottom: 3rem;
  text-align: center;
}

.article-smooth-7dea {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.surface_a920 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.popup-stale-5589,
.feature-dim-b423 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.hover-west-df76 {
  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;
}

.hover-west-df76:hover {
  transform: translateY(-5px);
}

.hover-west-df76 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.hover-west-df76 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.green_7416 {
  margin: 3rem 0;
}

.gallery-selected-e9b5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.outline_dark_ff71 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.outline_dark_ff71:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.dropdown_4e08 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.active_feda {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.east_c369 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.element-4392 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.plasma_20ee {
  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;
}

.plasma_20ee:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.plasma_20ee.dynamic-83b8 {
  border-left: 4px solid var(--primary-color);
}

.search_pink_967a {
  flex-shrink: 0;
}

.search_pink_967a svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.dynamic_20fb {
  flex: 1;
}

.dynamic_20fb h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.cool-f517 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.link_plasma_3c73,
.hover-smooth-7da3,
.current-65d7 {
  margin-bottom: 1.5rem;
}

.link_plasma_3c73 h4,
.hover-smooth-7da3 h4,
.current-65d7 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.link_plasma_3c73 ul,
.hover-smooth-7da3 ul,
.current-65d7 ul {
  list-style: none;
  padding: 0;
}

.link_plasma_3c73 li,
.hover-smooth-7da3 li,
.current-65d7 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.link_plasma_3c73 li:before,
.hover-smooth-7da3 li:before,
.current-65d7 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.search_top_b7a7 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.search_top_b7a7 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;
}

.search_top_b7a7 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.video-pro-76dc { margin: 2rem 0; }
.list-large-7896 { 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-large-7896 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.gallery_medium_b216 p { margin-bottom: 1rem; line-height: 1.7; }
.gallery_medium_b216 strong { color: var(--text-primary); }
.gallery_medium_b216 ul { list-style: none; padding-left: 0; }
.gallery_medium_b216 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.gallery_medium_b216 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.hidden_795f { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.disabled_e343 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.disabled_e343:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.blue_7384 { font-size: 3rem; margin-bottom: 1rem; }
.disabled_e343 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.disabled_e343 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.rough-8da2 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.rough-8da2 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.message-bbd6 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.box_selected_e9af { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.description-59d2 { text-align: center; }
.panel-hard-6f66 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.picture_4a75 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.in_e909 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.element-c443 { margin: 2rem 0; }
.purple-8260 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.purple-8260 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.purple-8260 p, .purple-8260 ul { line-height: 1.7; }
.purple-8260 ul { list-style: none; padding-left: 0; }
.purple-8260 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.purple-8260 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.secondary_slow_cd16 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.iron-e91d { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.up_8d4f { text-align: center; }
.highlight_ed4a { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.selected_7af2 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.white-1bf6 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.input_0d24 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.image-down-bf6e { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.image-down-bf6e:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.image-down-bf6e h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.image-down-bf6e p, .image-down-bf6e ul { line-height: 1.7; }
.image-down-bf6e ul { list-style: none; padding-left: 0; }
.image-down-bf6e ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.image-down-bf6e ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: bf27 */
.ghost-box-y9 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.1;
}
