/* ============================================
   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 */
.huge_cec0 p,
.footer_8f57,
.background_4a15,
.hover-2292,
.glass-c48c,
.simple-b8a4,
.under-aa9b,
.blue_a35f {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.focused_44e0 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.focused_44e0 > *,
.east-cd25,
.huge_cec0,
.button-11b7 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .focused_44e0 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .focused_44e0 {
    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 === */
.focus-91b4 {
  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 */
.focus-91b4.chip_a523 {
  box-shadow: var(--shadow-md);
}

.outline-slow-f5c7 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.item-03cc img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.overlay_2b26 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.dynamic-3129 {
  display: none;
}

/* Hide mobile actions on desktop */
.shade_a436 {
  display: none;
}

.menu-yellow-8569 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.menu-yellow-8569 a:hover,
.menu-yellow-8569 a.fn-active-e28f {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.table_east_929d {
  margin-left: 1rem;
}

.pink_a34a {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.hard-bbe5,
.pattern-focused-e453 {
  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;
}

.hard-bbe5 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.hard-bbe5: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;
}

.pattern-focused-e453 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.pattern-focused-e453: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;
}

.hard-bbe5 svg,
.pattern-focused-e453 svg {
  flex-shrink: 0;
}

.column_dirty_0a00 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.left-6f7d {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.left-6f7d::before,
.left-6f7d::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.left-6f7d::before {
  top: -7px;
}

.left-6f7d::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.background_pink_69f6 {
  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 === */
.widget_b4cf {
  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);
}

.detail-bcbb {
  margin: 0 0 2rem;
  text-align: center;
}

.description-7f41 {
  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;
}

.description-7f41:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.selected-51a5 {
  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);
}

.selected-51a5 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.component_435c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature-basic-f8e8 {
  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;
}

.feature-basic-f8e8:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.action-0a8b {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.red-9533 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.panel_in_f6f0 {
  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);
}

.panel_in_f6f0 .shadow-38ea {
  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;
}

.panel_in_f6f0 .shadow-38ea svg {
  flex-shrink: 0;
}

.panel_in_f6f0 .white-f9d4 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.panel_in_f6f0 .white-f9d4: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);
}

.panel_in_f6f0 .accordion_1d15 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.panel_in_f6f0 .accordion_1d15: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) {
  .widget_b4cf {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .description-7f41 {
    max-width: 100%;
  }

  .component_435c {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .feature-basic-f8e8 {
    padding: 1rem;
  }

  .action-0a8b {
    font-size: 1.5rem;
  }

  .red-9533 {
    font-size: 0.75rem;
  }

  .selected-51a5 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .panel_in_f6f0 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .panel_in_f6f0 .shadow-38ea {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .component_435c {
    grid-template-columns: 1fr;
  }
}

.bronze-775e {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.outer_55a9 {
  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 === */
.button_thick_f4c5 {
  margin-bottom: 2.5rem;
}

.main_a33c {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.bronze-775e {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.overlay-out-c0fe {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-yellow-2176 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.wood-6f9b {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.short-0118 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.message-motion-bf94 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.bronze-edb2 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.main-tiny-3d93 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.main-tiny-3d93 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.next_6eb3 {
  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);
}

.box-1ffd {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.layout_fixed_4bc4 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.in_5937 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.upper-fba1 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.main_dbb8 {
  display: grid;
  gap: 1rem;
}

.pro_2e4a {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.mask-a963 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.glass-007c {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.notice_bottom_7104 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.notification-e90d {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.last_f6e5 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.last_f6e5 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.footer_8f57 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.badge_efce {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.slider-right-a8e0 {
  display: grid;
  gap: 2rem;
}

.secondary-in-324a {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.section-yellow-2176 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.overlay-out-c0fe {
  flex: 1;
}

.short-0118 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.short-0118 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.accent_in_ecde {
  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;
}

.message-motion-bf94 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.modal_purple_ede2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.modal_purple_ede2 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.action-817b {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.action-817b a {
  font-size: 0.875rem;
  font-weight: 500;
}

.description_a138 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.description_a138 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.description_a138 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.description_a138 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.pagination-left-bb9c {
  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 === */
.media_d1c8 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.thick-7aa2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.out_54ad {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature_642a h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.feature_642a ol {
  list-style: none;
  counter-reset: toc-counter;
}

.feature_642a ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.feature_642a 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;
}

.feature_642a ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.feature_642a ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.huge_cec0 {
  padding: 3rem 0 5rem;
}

.button-11b7 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.button-11b7.iron-78db {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.background_4a15 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.under_e227 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.main_02d5 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.main_02d5 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.tiny-f059 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.main_fluid_9d2b {
  text-align: center;
}

.pagination_thick_cc01 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.clean_a16e {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.north_d8c8 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.simple-b8a4 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.hover-2292 {
  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;
}

.hover-2292 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hover-2292:hover {
  box-shadow: var(--shadow-lg);
}

.hover-2292.notification_down_e0e9 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.hover-2292 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.hover-2292 ul {
  margin: 1rem 0;
}

.hover-2292 li {
  margin-bottom: 0.75rem;
}

.selected-a01a {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.carousel_old_666f {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.carousel_old_666f a {
  font-weight: 600;
}

/* === Data Tables === */
.chip-dynamic-2833 {
  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;
}

.chip-dynamic-2833 table {
  width: 100%;
  min-width: 600px;
}

.chip-dynamic-2833 thead {
  background-color: var(--primary-color);
  color: white;
}

.chip-dynamic-2833 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.chip-dynamic-2833 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.chip-dynamic-2833 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.chip-dynamic-2833 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.red-69a7 {
  list-style: none;
  margin: 1.5rem 0;
}

.red-69a7 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.red-69a7 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.under-8256::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-e28f::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 === */
.frame_5122 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.accordion_d7ac {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.accordion_d7ac img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.accordion_d7ac strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.accordion_d7ac span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.frame_5122 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.under-aa9b {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.under-aa9b::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.section-brown-39b8 {
  position: relative;
  margin-bottom: 3rem;
}

.hover_iron_3f4c {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.hover_iron_3f4c .gas_8bfb {
  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;
}

.logo_stone_6ecd {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.logo_stone_6ecd h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.logo_stone_6ecd ul {
  margin: 1rem 0;
}

.logo_stone_6ecd li {
  margin-bottom: 0.75rem;
}

.motion-e6c7 {
  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 === */
.link_hard_7271 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.link_hard_7271 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.notice-out-a6d3 {
  list-style: none;
  margin: 1.5rem 0;
}

.notice-out-a6d3 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.notice-out-a6d3 a {
  font-weight: 600;
}

.old-8f91 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.blue_a35f {
  margin: 2.5rem 0;
}

.modal-73e5 {
  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;
}

.modal-73e5:hover {
  box-shadow: var(--shadow-lg);
}

.modal-73e5.sidebar_a2c9 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.content-0471 {
  flex-shrink: 0;
}

.content-0471 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);
}

.outer_642b h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.dynamic_5449,
.mask-cool-8414,
.info_basic_bc03 {
  width: 100%;
  margin: 1.5rem 0;
}

.glass_e040 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.glass_e040 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.popup-black-d048 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.popup-black-d048 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.inner_0659 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.inner_0659 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.search-paper-0610 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.tall_a811 {
  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;
}

.tall_a811:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.tall_a811.button-red-9460 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.tall_a811 .breadcrumb-dirty-122f {
  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;
}

.tall_a811 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.block_bc48 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.summary_3b29 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.summary_3b29 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.highlight-focused-53b4 {
  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 === */
.shadow-38ea {
  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;
}

.white-f9d4 {
  background-color: var(--primary-color);
  color: white;
}

.white-f9d4:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.accordion_1d15 {
  background-color: var(--text-secondary);
  color: white;
}

.accordion_1d15:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.pattern_6bdd {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.pattern_6bdd:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.hidden-warm-7ece {
  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;
}

.hidden-warm-7ece:hover {
  background-color: var(--primary-dark);
}

.panel-basic-01b3 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.row-51d1 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.summary_591f {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.plasma_aabc {
  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 === */
.bottom_85e9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.picture-hard-2f25 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.picture-hard-2f25 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.dim_4d38 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.accordion_63fb {
  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;
}

.active-easy-5dda {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.last-6997 {
  list-style: none;
  counter-reset: rank-counter;
}

.last-6997 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.last-6997 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;
}

.dynamic_0955 {
  list-style: none;
}

.dynamic_0955 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.message_active_e9c4 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.secondary-572d {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.secondary-572d .form-caa1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.secondary-572d .hover-pink-b50e {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.mini_14eb {
  margin-top: 3rem;
}

.shade-6c51 {
  width: 100%;
}

.overlay_c3b8 {
  background-color: #fef3c7;
}

.image-large-7cc1 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.carousel-current-e86d {
  margin: 3rem 0;
}

.background-7b00 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.detail_82a9 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.detail_82a9:hover {
  box-shadow: var(--shadow-lg);
}

.detail_82a9.bottom_2692 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.dirty-47ac {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.frame_6e01 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.frame_6e01 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.video_2e19 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.detail_82a9 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.popup_f894 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.link-north-5d40 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.search-easy-2e71 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.light_6feb {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.gallery_clean_cc41 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.accent_brown_fc17 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.form_7f10 {
  max-width: 900px;
  margin: 0 auto;
}

.thumbnail-fabd {
  margin: 2rem 0;
}

.primary_93f2 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.primary_93f2 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.primary_93f2 summary::-webkit-details-marker {
  display: none;
}

.primary_93f2 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.hard_3eec {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.primary_93f2[open] .hard_3eec {
  transform: rotate(45deg);
}

.banner_9429 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.banner_9429 p:last-child {
  margin-bottom: 0;
}

.overlay_a934 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.under-a645 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.content-d711 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.content-d711 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.content-d711 .shadow-38ea {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.layout_d19d {
  max-width: 900px;
  margin: 0 auto;
}

.section-61a4 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.badge_north_599c {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.badge_north_599c.fn-success-e28f {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.info-672a {
  font-size: 3rem;
  line-height: 1;
}

.badge-b0f9 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.logo-d9f5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.widget_9a06,
.tertiary-out-3425 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.widget_9a06 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.tertiary-out-3425 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.upper_cae6,
.brown_b4c6 {
  margin: 1.5rem 0;
}

.upper_cae6 li,
.brown_b4c6 li {
  margin-bottom: 1rem;
}

.container_408b {
  margin: 3rem 0;
}

.content_e44a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.content_e44a h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.content_e44a ol {
  margin: 1rem 0;
}

.content_e44a li {
  margin-bottom: 0.75rem;
}

.last_ee0f {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.title_red_ec98 {
  margin: 2rem 0;
}

.layout_60ab {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.status_fixed_0c48 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.easy_94ed {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.sidebar-tall-ad71 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.backdrop_1ee1 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.column-3727 {
  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;
}

.column-3727 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.wood-6f9b {
  flex: 1;
}

.wood-6f9b h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.notification-white-8d60 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.backdrop_4153 p {
  margin-bottom: 1rem;
}

.in-dae2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.light-80a7 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.section_clean_330c {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.section_clean_330c a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.gold_b7f0 h3 {
  margin-bottom: 1.5rem;
}

.panel_289f {
  display: grid;
  gap: 2rem;
}

.label_fresh_013c {
  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;
}

.label_fresh_013c img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.label_fresh_013c h4 {
  margin: 0 0 0.25rem;
}

.label_fresh_013c p {
  margin: 0;
  font-size: 0.9375rem;
}

.west_917c {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.alert_focused_aca7 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.alert_focused_aca7 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.alert_focused_aca7 ul {
  margin: 1.5rem 0;
}

.alert_focused_aca7 li {
  margin-bottom: 0.75rem;
}

.tabs_glass_e01d {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.new_fd9b {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.header-debf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.media-cold-43d9 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.media-cold-43d9 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.secondary-47af {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.secondary-47af a {
  color: rgba(255, 255, 255, 0.8);
}

.orange_5dee {
  list-style: none;
}

.orange_5dee li {
  margin-bottom: 0.75rem;
}

.orange_5dee a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.orange_5dee a:hover {
  color: white;
}

.paragraph_842e {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.gallery-f570 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.alert_last_d9db {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.list_e3d7 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.border_c5c8 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .focused_44e0 {
    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;
  }

  .info-c1f7 {
    font-size: 1.5rem !important;
  }

  .main_a33c {
    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 */
  .hover-2292,
  .glass-c48c,
  .logo_stone_6ecd,
  .outer_642b,
  .dirty-47ac,
  .detail_82a9,
  .banner_9429,
  .selected-51a5,
  .footer_8f57,
  .background_4a15 {
    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 */
  .bronze-775e {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .overlay-out-c0fe {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .section-yellow-2176 {
    flex-shrink: 0;
  }

  .wood-6f9b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .short-0118,
  .message-motion-bf94 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .message-motion-bf94 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .overlay_2b26 {
    display: none;
  }

  /* Show mobile actions */
  .shade_a436 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .cold-83cf {
    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;
  }

  .cold-83cf svg {
    flex-shrink: 0;
  }

  .cold-83cf .plasma-5895 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .cold-83cf .container-dark-b5c4 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .mask_full_2a8a {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .filter_advanced_a401 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .cold-83cf:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .dynamic-3129 {
    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;
  }

  .dynamic-3129.fn-active-e28f {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .dynamic-3129 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .dynamic-3129 li:last-child {
    border-bottom: none;
  }

  .dynamic-3129 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .menu-yellow-8569 {
    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;
  }

  .menu-yellow-8569 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .menu-yellow-8569 li:last-child {
    border-bottom: none;
  }

  .menu-yellow-8569 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .table_east_929d {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .pink_a34a {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .hard-bbe5,
  .pattern-focused-e453 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .hard-bbe5 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .pattern-focused-e453 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .menu-yellow-8569.fn-active-e28f {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .column_dirty_0a00 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .focus-91b4 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .outline-slow-f5c7 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .background_pink_69f6 {
    margin-top: 0;
  }

  /* Hero section */
  .background_pink_69f6 {
    padding: 2rem 0 1.5rem;
  }

  .main_a33c {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .footer_8f57 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .widget_b4cf {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .description-7f41 {
    max-width: 100%;
    border-radius: 8px;
  }

  .component_435c {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .feature-basic-f8e8 {
    padding: 1rem;
  }

  .action-0a8b {
    font-size: 1.5rem;
  }

  .red-9533 {
    font-size: 0.75rem;
  }

  .selected-51a5 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .panel_in_f6f0 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .panel_in_f6f0 .shadow-38ea {
    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 */
  .out_54ad {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .modal-73e5 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .content-0471 {
    margin-bottom: 1rem;
  }

  /* Author */
  .secondary-in-324a {
    flex-direction: column;
  }

  .column-3727 {
    flex-direction: column;
  }

  /* Quotes */
  .dirty-47ac {
    flex-direction: column;
  }

  /* Pros/Cons */
  .logo-d9f5 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .sidebar-tall-ad71 {
    flex-direction: column;
  }

  .sidebar-tall-ad71 .shadow-38ea {
    width: 100%;
  }

  /* Version comparison */
  .search-paper-0610 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .bottom_85e9 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .header-debf {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .alert_last_d9db {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .chip-dynamic-2833,
  .mask-cool-8414,
  .slow-c89a,
  .shade-6c51,
  .dynamic_5449,
  .info_basic_bc03 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .chip-dynamic-2833 table,
  .mask-cool-8414 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .highlight-focused-53b4 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .focused_44e0 {
    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;
  }

  .info-c1f7 {
    font-size: 1.25rem !important;
  }

  .main_a33c {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .focus-91b4 {
    position: fixed;
  }

  .outline-slow-f5c7 {
    padding: 0.625rem 0;
  }

  .item-03cc img {
    height: 26px;
  }

  .menu-yellow-8569 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .dynamic-3129 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .cold-83cf {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .cold-83cf svg {
    width: 18px;
    height: 18px;
  }

  .cold-83cf .plasma-5895 {
    font-size: 0.7rem;
  }

  .cold-83cf .container-dark-b5c4 {
    font-size: 0.65rem;
  }

  .hard-bbe5,
  .pattern-focused-e453 {
    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, .focused_44e0, .east-cd25, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .widget_b4cf {
    padding: 1rem;
  }

  .component_435c {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .feature-basic-f8e8 {
    padding: 0.875rem;
  }

  .action-0a8b {
    font-size: 1.25rem;
  }

  .panel_in_f6f0 .shadow-38ea {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .main_a33c {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .shadow-38ea {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .panel-basic-01b3 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .modal-73e5 {
    padding: 1rem;
  }

  .content-0471 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .hover-2292,
  .form_bright_da1f,
  .grid-7969,
  .section-3d8c {
    padding: 1rem;
  }
}

@media print {
  .focus-91b4,
  .media_d1c8,
  .column_dirty_0a00,
  .shadow-38ea,
  .new_fd9b {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .focused_44e0 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.feature_5a78 {
  margin-bottom: 3rem;
  text-align: center;
}

.info-c1f7 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.active_920d {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.overlay-selected-80fd,
.selected-4b92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.south-4cb2 {
  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;
}

.south-4cb2:hover {
  transform: translateY(-5px);
}

.south-4cb2 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.south-4cb2 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.right_5e04 {
  margin: 3rem 0;
}

.under-743b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.widget_liquid_f4bb {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.widget_liquid_f4bb:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.lite-182b {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.west-3723 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.easy_fbe8 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.short-9fa2 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.aside_orange_81c7 {
  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;
}

.aside_orange_81c7:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.aside_orange_81c7.thumbnail-4dfb {
  border-left: 4px solid var(--primary-color);
}

.filter_7989 {
  flex-shrink: 0;
}

.filter_7989 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.out_862f {
  flex: 1;
}

.out_862f h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.west-3d5b {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hard-f633,
.surface_59a2,
.short_f685 {
  margin-bottom: 1.5rem;
}

.hard-f633 h4,
.surface_59a2 h4,
.short_f685 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hard-f633 ul,
.surface_59a2 ul,
.short_f685 ul {
  list-style: none;
  padding: 0;
}

.hard-f633 li,
.surface_59a2 li,
.short_f685 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.hard-f633 li:before,
.surface_59a2 li:before,
.short_f685 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.filter_753b {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.filter_753b 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;
}

.filter_753b a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.alert_3271 { margin: 2rem 0; }
.menu_a915 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.menu_a915 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.solid_13ce p { margin-bottom: 1rem; line-height: 1.7; }
.solid_13ce strong { color: var(--text-primary); }
.solid_13ce ul { list-style: none; padding-left: 0; }
.solid_13ce ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.solid_13ce ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.sidebar_yellow_2b01 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.tiny-c880 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.tiny-c880:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.motion_da02 { font-size: 3rem; margin-bottom: 1rem; }
.tiny-c880 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.tiny-c880 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.footer_8f70 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.footer_8f70 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.basic-c46b { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.smooth-c047 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.pro-1480 { text-align: center; }
.detail_up_1997 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.tertiary_cbbe { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.breadcrumb-medium-f040 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.shadow_stone_42eb { margin: 2rem 0; }
.container-ebc4 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.container-ebc4 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.container-ebc4 p, .container-ebc4 ul { line-height: 1.7; }
.container-ebc4 ul { list-style: none; padding-left: 0; }
.container-ebc4 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.container-ebc4 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.video-pro-dba0 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.gradient-pink-078a { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.button-steel-07fa { text-align: center; }
.texture_5927 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.section-0220 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.detail-narrow-5085 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.search_fast_6393 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.liquid-bd5c { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.liquid-bd5c:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.liquid-bd5c h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.liquid-bd5c p, .liquid-bd5c ul { line-height: 1.7; }
.liquid-bd5c ul { list-style: none; padding-left: 0; }
.liquid-bd5c ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.liquid-bd5c ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: d210 */
.phantom-card-h7 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.0;
}
