/* ============================================
   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 */
.preview_bd57 p,
.hard-9b4f,
.table-slow-e269,
.image_red_e5a0,
.surface-top-1f0b,
.next-4bc7,
.avatar_blue_5273,
.prev-f4a0 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.soft-fa0e {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.soft-fa0e > *,
.feature_lower_4228,
.preview_bd57,
.notice-advanced-294f {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .soft-fa0e {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .soft-fa0e {
    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 === */
.panel_9da9 {
  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 */
.panel_9da9.module_mini_c468 {
  box-shadow: var(--shadow-md);
}

.frame-463d {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.soft_1992 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.menu-iron-c3af {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.progress-3b89 {
  display: none;
}

/* Hide mobile actions on desktop */
.blue_8a56 {
  display: none;
}

.panel-6c17 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.panel-6c17 a:hover,
.panel-6c17 a.fn-active-2859 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.article-in-0dd6 {
  margin-left: 1rem;
}

.tall-5c97 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.badge_6b33,
.green-39cb {
  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;
}

.badge_6b33 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.badge_6b33: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;
}

.green-39cb {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.green-39cb: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;
}

.badge_6b33 svg,
.green-39cb svg {
  flex-shrink: 0;
}

.dropdown-8fa4 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.left_e883 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.left_e883::before,
.left_e883::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.left_e883::before {
  top: -7px;
}

.left_e883::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.list-05ed {
  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 === */
.dirty_ba67 {
  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);
}

.column_9a4d {
  margin: 0 0 2rem;
  text-align: center;
}

.element-fast-eb13 {
  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;
}

.element-fast-eb13:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.banner-1774 {
  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);
}

.banner-1774 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.component_next_50e4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.west_d099 {
  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;
}

.west_d099:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.advanced-8ec6 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.badge-bc54 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.surface-2fa7 {
  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);
}

.surface-2fa7 .tooltip_9318 {
  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;
}

.surface-2fa7 .tooltip_9318 svg {
  flex-shrink: 0;
}

.surface-2fa7 .huge_4cbc {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.surface-2fa7 .huge_4cbc: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);
}

.surface-2fa7 .module-top-f96d {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.surface-2fa7 .module-top-f96d: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) {
  .dirty_ba67 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .element-fast-eb13 {
    max-width: 100%;
  }

  .component_next_50e4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .west_d099 {
    padding: 1rem;
  }

  .advanced-8ec6 {
    font-size: 1.5rem;
  }

  .badge-bc54 {
    font-size: 0.75rem;
  }

  .banner-1774 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .surface-2fa7 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .surface-2fa7 .tooltip_9318 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .component_next_50e4 {
    grid-template-columns: 1fr;
  }
}

.blue-d57e {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.highlight_46ef {
  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 === */
.glass-28b7 {
  margin-bottom: 2.5rem;
}

.main_516e {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.blue-d57e {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.silver_de93 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brown-d294 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.status-f80f {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.south_d226 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.list-bright-e96b {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.article_a628 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.card-cold-fca3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.card-cold-fca3 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.down-daf5 {
  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);
}

.accordion-ced4 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.outline-f3f2 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.main-right-46f3 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.highlight_huge_cd31 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.new_4fdf {
  display: grid;
  gap: 1rem;
}

.icon-50c5 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.thumbnail-first-ea46 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.table-0536 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.box_fixed_e456 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.main_4b8d {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.background-3425 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.background-3425 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.hard-9b4f {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.gallery-red-72c7 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.article_basic_5230 {
  display: grid;
  gap: 2rem;
}

.section_wide_7de2 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.brown-d294 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.silver_de93 {
  flex: 1;
}

.south_d226 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.south_d226 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stone-063a {
  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;
}

.list-bright-e96b {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.banner_4acc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.banner_4acc span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.west-7fdc {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.west-7fdc a {
  font-size: 0.875rem;
  font-weight: 500;
}

.gradient_1bb2 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.gradient_1bb2 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.gradient_1bb2 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gradient_1bb2 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.widget-2454 {
  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 === */
.component_7689 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.shadow-1ad8 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.form-middle-a5fa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.logo_0656 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.logo_0656 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.logo_0656 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.logo_0656 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;
}

.logo_0656 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.logo_0656 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.preview_bd57 {
  padding: 3rem 0 5rem;
}

.notice-advanced-294f {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.notice-advanced-294f.hover_dim_8ead {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.table-slow-e269 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.video-prev-205c {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.wrapper-2cfd {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.wrapper-2cfd h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.backdrop-top-68e4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.slow_594b {
  text-align: center;
}

.sort-in-2e09 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.red_7108 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.steel_5322 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.next-4bc7 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.image_red_e5a0 {
  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;
}

.image_red_e5a0 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.image_red_e5a0:hover {
  box-shadow: var(--shadow-lg);
}

.image_red_e5a0.section_8392 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.image_red_e5a0 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.image_red_e5a0 ul {
  margin: 1rem 0;
}

.image_red_e5a0 li {
  margin-bottom: 0.75rem;
}

.disabled-25f3 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.filter-bb84 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.filter-bb84 a {
  font-weight: 600;
}

/* === Data Tables === */
.middle-5bcf {
  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;
}

.middle-5bcf table {
  width: 100%;
  min-width: 600px;
}

.middle-5bcf thead {
  background-color: var(--primary-color);
  color: white;
}

.middle-5bcf th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.middle-5bcf td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.middle-5bcf tbody tr:hover {
  background-color: var(--bg-secondary);
}

.middle-5bcf tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.focused_f193 {
  list-style: none;
  margin: 1.5rem 0;
}

.focused_f193 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.focused_f193 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.button-7442::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-2859::before {
  content: '⚠';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--warning-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

/* === Expert Insight Box === */
.detail_pink_dbc1 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.tabs_outer_7bb2 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.tabs_outer_7bb2 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.tabs_outer_7bb2 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.tabs_outer_7bb2 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.detail_pink_dbc1 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.avatar_blue_5273 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.avatar_blue_5273::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.status-purple-0f95 {
  position: relative;
  margin-bottom: 3rem;
}

.description_5ba1 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.description_5ba1 .component-selected-55e4 {
  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;
}

.shadow-c362 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.shadow-c362 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.shadow-c362 ul {
  margin: 1rem 0;
}

.shadow-c362 li {
  margin-bottom: 0.75rem;
}

.item-cold-34af {
  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 === */
.article-8790 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.article-8790 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.photo_c1c3 {
  list-style: none;
  margin: 1.5rem 0;
}

.photo_c1c3 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.photo_c1c3 a {
  font-weight: 600;
}

.form_da39 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.prev-f4a0 {
  margin: 2.5rem 0;
}

.new-afaf {
  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;
}

.new-afaf:hover {
  box-shadow: var(--shadow-lg);
}

.new-afaf.grid-790a {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.button-south-d4e6 {
  flex-shrink: 0;
}

.button-south-d4e6 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);
}

.blue_a24a h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.image_0c2e,
.basic-77fb,
.pagination_motion_3d2f {
  width: 100%;
  margin: 1.5rem 0;
}

.static_a6dc {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.static_a6dc strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.active_7be0 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.active_7be0 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.logo-f068 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.logo-f068 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.detail-297c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.selected_26dc {
  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;
}

.selected_26dc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.selected_26dc.pro_ed1a {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.selected_26dc .primary-8e6f {
  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;
}

.selected_26dc h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.avatar-stone-eadb {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.accent_steel_4e71 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.accent_steel_4e71 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.grid-65a7 {
  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 === */
.tooltip_9318 {
  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;
}

.huge_4cbc {
  background-color: var(--primary-color);
  color: white;
}

.huge_4cbc:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.module-top-f96d {
  background-color: var(--text-secondary);
  color: white;
}

.module-top-f96d:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.inner_c576 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.inner_c576:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.footer_hovered_3275 {
  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;
}

.footer_hovered_3275:hover {
  background-color: var(--primary-dark);
}

.photo_liquid_b599 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.popup_0e55 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.column_9064 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.widget_fast_e045 {
  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 === */
.filter-d71b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.list-93f5 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.list-93f5 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.alert_over_7dc9 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.nav_slow_15a4 {
  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;
}

.text-action-67c8 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.tertiary-c9dc {
  list-style: none;
  counter-reset: rank-counter;
}

.tertiary-c9dc li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.tertiary-c9dc 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;
}

.accent-solid-d29b {
  list-style: none;
}

.accent-solid-d29b li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.up-2398 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.box_active_8c6b {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.box_active_8c6b .tall-d014 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.box_active_8c6b .hidden_pro_819a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.white-7946 {
  margin-top: 3rem;
}

.focus-hard-af5e {
  width: 100%;
}

.layout_c4f5 {
  background-color: #fef3c7;
}

.notification-0127 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.gas_5c4f {
  margin: 3rem 0;
}

.button-c4fc {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.aside-hard-b6cf {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.aside-hard-b6cf:hover {
  box-shadow: var(--shadow-lg);
}

.aside-hard-b6cf.old-3184 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.paragraph_e89d {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.huge-502f strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.huge-502f span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.logo_out_d629 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.aside-hard-b6cf blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.last-5bfa {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.status-top-0c3d {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.accordion-b279 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.east-2ad3 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.small-8cc7 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.dim_e7fa {
  margin-top: 1rem;
}

/* === FAQ Section === */
.card-bf7f {
  max-width: 900px;
  margin: 0 auto;
}

.lower-c62a {
  margin: 2rem 0;
}

.out_5427 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.out_5427 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.out_5427 summary::-webkit-details-marker {
  display: none;
}

.out_5427 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.accent_1915 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.out_5427[open] .accent_1915 {
  transform: rotate(45deg);
}

.message-red-45a4 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.message-red-45a4 p:last-child {
  margin-bottom: 0;
}

.photo_2720 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.message_smooth_be6c {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.primary-solid-a69a {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.primary-solid-a69a p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.primary-solid-a69a .tooltip_9318 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.breadcrumb-6525 {
  max-width: 900px;
  margin: 0 auto;
}

.accent_602b {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.sidebar-new-2c94 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.sidebar-new-2c94.fn-success-2859 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.white_ffda {
  font-size: 3rem;
  line-height: 1;
}

.layout-rough-d984 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.gallery-plasma-8851 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.carousel-paper-c2c0,
.upper-ec48 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.carousel-paper-c2c0 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.upper-ec48 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.up-5e07,
.breadcrumb_cc0f {
  margin: 1.5rem 0;
}

.up-5e07 li,
.breadcrumb_cc0f li {
  margin-bottom: 1rem;
}

.paper_282d {
  margin: 3rem 0;
}

.green_b1ec {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.green_b1ec h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.green_b1ec ol {
  margin: 1rem 0;
}

.green_b1ec li {
  margin-bottom: 0.75rem;
}

.slider-723a {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.stone-19aa {
  margin: 2rem 0;
}

.button-middle-9e52 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.footer_blue_6da1 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.smooth_a73f {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.module-c5ba {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.tabs_old_dbf4 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.cold_eef9 {
  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;
}

.cold_eef9 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.status-f80f {
  flex: 1;
}

.status-f80f h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.tabs-4d47 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.heading-slow-1766 p {
  margin-bottom: 1rem;
}

.hot_7c81 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.progress_7ba0 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.motion_799b {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.motion_799b a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.box-b306 h3 {
  margin-bottom: 1.5rem;
}

.media_b5de {
  display: grid;
  gap: 2rem;
}

.logo-af9a {
  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;
}

.logo-af9a img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.logo-af9a h4 {
  margin: 0 0 0.25rem;
}

.logo-af9a p {
  margin: 0;
  font-size: 0.9375rem;
}

.pattern-blue-285d {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.tiny_4ab0 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.tiny_4ab0 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.tiny_4ab0 ul {
  margin: 1.5rem 0;
}

.tiny_4ab0 li {
  margin-bottom: 0.75rem;
}

.active_cc56 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.row_d61e {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.shade_69fd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.south-9b09 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.south-9b09 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.highlight-yellow-1e76 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.highlight-yellow-1e76 a {
  color: rgba(255, 255, 255, 0.8);
}

.tooltip-60b7 {
  list-style: none;
}

.tooltip-60b7 li {
  margin-bottom: 0.75rem;
}

.tooltip-60b7 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.tooltip-60b7 a:hover {
  color: white;
}

.focus-selected-c3b4 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.fresh-1580 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.in-5e49 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.up-c6f0 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.gold_d81c {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .soft-fa0e {
    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;
  }

  .filter-ec7e {
    font-size: 1.5rem !important;
  }

  .main_516e {
    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 */
  .image_red_e5a0,
  .surface-top-1f0b,
  .shadow-c362,
  .blue_a24a,
  .paragraph_e89d,
  .aside-hard-b6cf,
  .message-red-45a4,
  .banner-1774,
  .hard-9b4f,
  .table-slow-e269 {
    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 */
  .blue-d57e {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .silver_de93 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .brown-d294 {
    flex-shrink: 0;
  }

  .status-f80f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .south_d226,
  .list-bright-e96b {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .list-bright-e96b {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .menu-iron-c3af {
    display: none;
  }

  /* Show mobile actions */
  .blue_8a56 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .menu_fast_3705 {
    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;
  }

  .menu_fast_3705 svg {
    flex-shrink: 0;
  }

  .menu_fast_3705 .element_bottom_4599 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .menu_fast_3705 .chip_soft_d8bb {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .gallery-ee82 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .gallery_b8c8 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .menu_fast_3705:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .progress-3b89 {
    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;
  }

  .progress-3b89.fn-active-2859 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .progress-3b89 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .progress-3b89 li:last-child {
    border-bottom: none;
  }

  .progress-3b89 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .panel-6c17 {
    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;
  }

  .panel-6c17 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .panel-6c17 li:last-child {
    border-bottom: none;
  }

  .panel-6c17 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .article-in-0dd6 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .tall-5c97 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .badge_6b33,
  .green-39cb {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .badge_6b33 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .green-39cb {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .panel-6c17.fn-active-2859 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .dropdown-8fa4 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .panel_9da9 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .frame-463d {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .list-05ed {
    margin-top: 0;
  }

  /* Hero section */
  .list-05ed {
    padding: 2rem 0 1.5rem;
  }

  .main_516e {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .hard-9b4f {
    font-size: 1rem;
  }

  /* Hero brand image */
  .dirty_ba67 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .element-fast-eb13 {
    max-width: 100%;
    border-radius: 8px;
  }

  .component_next_50e4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .west_d099 {
    padding: 1rem;
  }

  .advanced-8ec6 {
    font-size: 1.5rem;
  }

  .badge-bc54 {
    font-size: 0.75rem;
  }

  .banner-1774 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .surface-2fa7 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .surface-2fa7 .tooltip_9318 {
    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 */
  .form-middle-a5fa {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .new-afaf {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .button-south-d4e6 {
    margin-bottom: 1rem;
  }

  /* Author */
  .section_wide_7de2 {
    flex-direction: column;
  }

  .cold_eef9 {
    flex-direction: column;
  }

  /* Quotes */
  .paragraph_e89d {
    flex-direction: column;
  }

  /* Pros/Cons */
  .gallery-plasma-8851 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .module-c5ba {
    flex-direction: column;
  }

  .module-c5ba .tooltip_9318 {
    width: 100%;
  }

  /* Version comparison */
  .detail-297c {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .filter-d71b {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .shade_69fd {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .in-5e49 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .middle-5bcf,
  .basic-77fb,
  .tooltip_bronze_36aa,
  .focus-hard-af5e,
  .image_0c2e,
  .pagination_motion_3d2f {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .middle-5bcf table,
  .basic-77fb table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .grid-65a7 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .soft-fa0e {
    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;
  }

  .filter-ec7e {
    font-size: 1.25rem !important;
  }

  .main_516e {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .panel_9da9 {
    position: fixed;
  }

  .frame-463d {
    padding: 0.625rem 0;
  }

  .soft_1992 img {
    height: 26px;
  }

  .panel-6c17 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .progress-3b89 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .menu_fast_3705 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .menu_fast_3705 svg {
    width: 18px;
    height: 18px;
  }

  .menu_fast_3705 .element_bottom_4599 {
    font-size: 0.7rem;
  }

  .menu_fast_3705 .chip_soft_d8bb {
    font-size: 0.65rem;
  }

  .badge_6b33,
  .green-39cb {
    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, .soft-fa0e, .feature_lower_4228, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .dirty_ba67 {
    padding: 1rem;
  }

  .component_next_50e4 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .west_d099 {
    padding: 0.875rem;
  }

  .advanced-8ec6 {
    font-size: 1.25rem;
  }

  .surface-2fa7 .tooltip_9318 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .main_516e {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .tooltip_9318 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .photo_liquid_b599 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .new-afaf {
    padding: 1rem;
  }

  .button-south-d4e6 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .image_red_e5a0,
  .gold_f312,
  .badge_ae8a,
  .panel-easy-4585 {
    padding: 1rem;
  }
}

@media print {
  .panel_9da9,
  .component_7689,
  .dropdown-8fa4,
  .tooltip_9318,
  .row_d61e {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .soft-fa0e {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.nav_small_adfd {
  margin-bottom: 3rem;
  text-align: center;
}

.filter-ec7e {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.plasma-8693 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.aside-north-57c1,
.over_37bd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.texture_bronze_e16a {
  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;
}

.texture_bronze_e16a:hover {
  transform: translateY(-5px);
}

.texture_bronze_e16a strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.texture_bronze_e16a span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.hard_be9e {
  margin: 3rem 0;
}

.detail_2e30 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.message-3073 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.message-3073:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.text_2ceb {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.accordion_complex_f4f3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.liquid_6bc3 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.main_left_f2ed {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.description-6cc3 {
  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;
}

.description-6cc3:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.description-6cc3.overlay-c3da {
  border-left: 4px solid var(--primary-color);
}

.primary-static-8f8b {
  flex-shrink: 0;
}

.primary-static-8f8b svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.yellow-ca7c {
  flex: 1;
}

.yellow-ca7c h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.carousel-b1af {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.right_76f6,
.hard-d775,
.badge_524f {
  margin-bottom: 1.5rem;
}

.right_76f6 h4,
.hard-d775 h4,
.badge_524f h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.right_76f6 ul,
.hard-d775 ul,
.badge_524f ul {
  list-style: none;
  padding: 0;
}

.right_76f6 li,
.hard-d775 li,
.badge_524f li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.right_76f6 li:before,
.hard-d775 li:before,
.badge_524f li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.section_e69a {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.section_e69a 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;
}

.section_e69a a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.fresh_e39c { margin: 2rem 0; }
.paragraph-45ed { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.paragraph-45ed h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.container-c0a1 p { margin-bottom: 1rem; line-height: 1.7; }
.container-c0a1 strong { color: var(--text-primary); }
.container-c0a1 ul { list-style: none; padding-left: 0; }
.container-c0a1 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.container-c0a1 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.element-steel-9738 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.module_39c3 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.module_39c3:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.plasma_5a46 { font-size: 3rem; margin-bottom: 1rem; }
.module_39c3 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.module_39c3 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.lite_865c { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.lite_865c span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.yellow-e9cf { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.outline_slow_ed1e { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.description-af51 { text-align: center; }
.picture_b43c { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.media-bbdc { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.motion_7532 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.top_8706 { margin: 2rem 0; }
.filter_rough_ac0f { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.filter_rough_ac0f h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.filter_rough_ac0f p, .filter_rough_ac0f ul { line-height: 1.7; }
.filter_rough_ac0f ul { list-style: none; padding-left: 0; }
.filter_rough_ac0f ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.filter_rough_ac0f ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.disabled_paper_66bf { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.content-brown-c28d { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.layout_6145 { text-align: center; }
.liquid-cdc3 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.tertiary-7523 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.active-first-9416 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.fixed-de6e { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.paper-20d2 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.paper-20d2:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.paper-20d2 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.paper-20d2 p, .paper-20d2 ul { line-height: 1.7; }
.paper-20d2 ul { list-style: none; padding-left: 0; }
.paper-20d2 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.paper-20d2 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 25d7 */
.promo-block-k0 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.1;
}
