/* ============================================
   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 */
.hidden_right_8a7b p,
.first-1611,
.photo_3a46,
.large_86a9,
.out-5146,
.title_f0b3,
.background_6a71,
.highlight_south_7a65 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.nav_e24a {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.nav_e24a > *,
.container_full_a212,
.hidden_right_8a7b,
.carousel-fa4e {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .nav_e24a {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .nav_e24a {
    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 === */
.picture-bd18 {
  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 */
.picture-bd18.heading_down_a659 {
  box-shadow: var(--shadow-md);
}

.short_32a8 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.disabled-active-5fd1 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.huge_ea46 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.dropdown_2d96 {
  display: none;
}

/* Hide mobile actions on desktop */
.orange_7e4b {
  display: none;
}

.preview_basic_b030 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.preview_basic_b030 a:hover,
.preview_basic_b030 a.fn-active-00e9 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.block_51b7 {
  margin-left: 1rem;
}

.link_mini_0de8 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.slider_dd8f,
.backdrop-7f0e {
  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;
}

.slider_dd8f {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.slider_dd8f: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;
}

.backdrop-7f0e {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.backdrop-7f0e: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;
}

.slider_dd8f svg,
.backdrop-7f0e svg {
  flex-shrink: 0;
}

.header_paper_e632 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.rough_8c55 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.rough_8c55::before,
.rough_8c55::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.rough_8c55::before {
  top: -7px;
}

.rough_8c55::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.focused_1704 {
  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 === */
.element-1454 {
  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);
}

.list-ef10 {
  margin: 0 0 2rem;
  text-align: center;
}

.glass-ef84 {
  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;
}

.glass-ef84:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.column_fd51 {
  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);
}

.column_fd51 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.over_af93 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.fast-a8c8 {
  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;
}

.fast-a8c8:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.preview-3cf9 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.cool-323f {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.yellow_d36b {
  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);
}

.yellow_d36b .purple-ed4d {
  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;
}

.yellow_d36b .purple-ed4d svg {
  flex-shrink: 0;
}

.yellow_d36b .section_6d9e {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.yellow_d36b .section_6d9e: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);
}

.yellow_d36b .tertiary-stale-8802 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.yellow_d36b .tertiary-stale-8802: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) {
  .element-1454 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .glass-ef84 {
    max-width: 100%;
  }

  .over_af93 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .fast-a8c8 {
    padding: 1rem;
  }

  .preview-3cf9 {
    font-size: 1.5rem;
  }

  .cool-323f {
    font-size: 0.75rem;
  }

  .column_fd51 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .yellow_d36b {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .yellow_d36b .purple-ed4d {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .over_af93 {
    grid-template-columns: 1fr;
  }
}

.up-609d {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.summary_f871 {
  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 === */
.input-6bea {
  margin-bottom: 2.5rem;
}

.hover-rough-3528 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.up-609d {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.avatar_b5bc {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.progress-tall-7b22 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.narrow-cf64 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.right-a18d {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.pagination_beec {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.search-hovered-df19 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.wide-ec8b {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.wide-ec8b svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.badge_hard_a8e9 {
  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);
}

.detail_warm_7c4d {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.outline_up_8baa {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tooltip_advanced_ea71 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.last-9374 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.badge_66cf {
  display: grid;
  gap: 1rem;
}

.steel_f3a6 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.sort-47b0 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.search-c946 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.label-2fad {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.black_cf4a {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.summary-361a {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.summary-361a p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.first-1611 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.search_7d6d {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.shade-action-b907 {
  display: grid;
  gap: 2rem;
}

.sidebar_3b22 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.progress-tall-7b22 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.avatar_b5bc {
  flex: 1;
}

.right-a18d {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.right-a18d a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.border_wide_e909 {
  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;
}

.pagination_beec {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.primary-prev-8f6f {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.primary-prev-8f6f span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.prev-39e0 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.prev-39e0 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.frame_3371 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.frame_3371 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.frame_3371 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.frame_3371 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.active-current-d7a2 {
  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 === */
.glass_24cd {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.search-dd80 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.north-d7db {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mask_2d6c h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.mask_2d6c ol {
  list-style: none;
  counter-reset: toc-counter;
}

.mask_2d6c ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.mask_2d6c 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;
}

.mask_2d6c ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.mask_2d6c ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.hidden_right_8a7b {
  padding: 3rem 0 5rem;
}

.carousel-fa4e {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.carousel-fa4e.slider-d541 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.photo_3a46 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.outer_46fd {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.accent_7b20 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.accent_7b20 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.yellow-0ebc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.thumbnail-bright-3f4e {
  text-align: center;
}

.lower_837f {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.notification_right_0caf {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.tooltip_under_d2c5 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.title_f0b3 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.large_86a9 {
  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;
}

.large_86a9 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.large_86a9:hover {
  box-shadow: var(--shadow-lg);
}

.large_86a9.heading_8979 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.large_86a9 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.large_86a9 ul {
  margin: 1rem 0;
}

.large_86a9 li {
  margin-bottom: 0.75rem;
}

.search-complex-1843 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.orange_e1c0 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.orange_e1c0 a {
  font-weight: 600;
}

/* === Data Tables === */
.container-top-c29a {
  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;
}

.container-top-c29a table {
  width: 100%;
  min-width: 600px;
}

.container-top-c29a thead {
  background-color: var(--primary-color);
  color: white;
}

.container-top-c29a th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.container-top-c29a td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.container-top-c29a tbody tr:hover {
  background-color: var(--bg-secondary);
}

.container-top-c29a tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.prev_a0ef {
  list-style: none;
  margin: 1.5rem 0;
}

.prev_a0ef li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.prev_a0ef li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.east_637b::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-00e9::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 === */
.logo-cold-ea12 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.detail_b056 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.detail_b056 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.detail_b056 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.detail_b056 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.logo-cold-ea12 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.background_6a71 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.background_6a71::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.popup_ce40 {
  position: relative;
  margin-bottom: 3rem;
}

.breadcrumb_fresh_43a5 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.breadcrumb_fresh_43a5 .out-e79a {
  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;
}

.full-870b {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.full-870b h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.full-870b ul {
  margin: 1rem 0;
}

.full-870b li {
  margin-bottom: 0.75rem;
}

.mask_33b0 {
  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 === */
.footer-silver-5a79 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.footer-silver-5a79 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.banner_49f7 {
  list-style: none;
  margin: 1.5rem 0;
}

.banner_49f7 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.banner_49f7 a {
  font-weight: 600;
}

.filter_dynamic_76b0 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.highlight_south_7a65 {
  margin: 2.5rem 0;
}

.liquid-4f66 {
  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;
}

.liquid-4f66:hover {
  box-shadow: var(--shadow-lg);
}

.liquid-4f66.paragraph-complex-35be {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.aside-6b2f {
  flex-shrink: 0;
}

.aside-6b2f 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);
}

.smooth_ac88 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.slider_eb2d,
.preview_hard_7874,
.preview_a3f4 {
  width: 100%;
  margin: 1.5rem 0;
}

.overlay_3df2 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.overlay_3df2 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.item_2900 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.item_2900 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.panel_1c4f {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.panel_1c4f strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.alert-81cb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.selected_43a3 {
  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_43a3:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.selected_43a3.module-prev-425e {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.selected_43a3 .up_5acc {
  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_43a3 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.sidebar-over-9389 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.message_tiny_0fd0 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.message_tiny_0fd0 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.nav-ad8d {
  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 === */
.purple-ed4d {
  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;
}

.section_6d9e {
  background-color: var(--primary-color);
  color: white;
}

.section_6d9e:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.tertiary-stale-8802 {
  background-color: var(--text-secondary);
  color: white;
}

.tertiary-stale-8802:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.hot-caf7 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.hot-caf7:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.background_motion_427f {
  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;
}

.background_motion_427f:hover {
  background-color: var(--primary-dark);
}

.slow_0713 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.short-5076 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.detail-east-d1e0 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.nav_dim_b3dd {
  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 === */
.selected_1ee4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.input_smooth_72d9 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.input_smooth_72d9 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.outline-a11d {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.north_10d8 {
  flex: 1;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
}

.dim-8ab1 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.thumbnail_99b5 {
  list-style: none;
  counter-reset: rank-counter;
}

.thumbnail_99b5 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.thumbnail_99b5 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;
}

.nav-7d80 {
  list-style: none;
}

.nav-7d80 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.heading_e933 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.table_under_f9bb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.table_under_f9bb .tag_9170 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.table_under_f9bb .summary_upper_a23c {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.large-a068 {
  margin-top: 3rem;
}

.title-blue-749d {
  width: 100%;
}

.hidden-wide-b5e4 {
  background-color: #fef3c7;
}

.gradient_dd5b {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.white-e854 {
  margin: 3rem 0;
}

.medium_39e7 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.module-tall-0684 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.module-tall-0684:hover {
  box-shadow: var(--shadow-lg);
}

.module-tall-0684.fast_0ca6 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.accordion_82b3 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.center-9161 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.center-9161 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.thick-3eab {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.module-tall-0684 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.container-cold-fcf5 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.form_45f9 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.badge_55c8 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.hero-321c {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.video_out_aef5 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.form-515f {
  margin-top: 1rem;
}

/* === FAQ Section === */
.title_1cf4 {
  max-width: 900px;
  margin: 0 auto;
}

.badge_6623 {
  margin: 2rem 0;
}

.popup_silver_70c4 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.popup_silver_70c4 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.popup_silver_70c4 summary::-webkit-details-marker {
  display: none;
}

.popup_silver_70c4 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.search_df89 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.popup_silver_70c4[open] .search_df89 {
  transform: rotate(45deg);
}

.secondary_b8e0 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.secondary_b8e0 p:last-child {
  margin-bottom: 0;
}

.accordion-paper-472c {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.alert-c2e5 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.modal-ac12 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.modal-ac12 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.modal-ac12 .purple-ed4d {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.item-7587 {
  max-width: 900px;
  margin: 0 auto;
}

.photo_slow_b4ab {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hard_e1ed {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.hard_e1ed.fn-success-00e9 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.media_hovered_d35a {
  font-size: 3rem;
  line-height: 1;
}

.widget-9d03 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.frame_iron_17db {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.frame_62a0,
.pagination-cool-b4a8 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.frame_62a0 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.pagination-cool-b4a8 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.widget-pink-b9fc,
.element_d4dc {
  margin: 1.5rem 0;
}

.widget-pink-b9fc li,
.element_d4dc li {
  margin-bottom: 1rem;
}

.accordion_900f {
  margin: 3rem 0;
}

.simple-7988 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.simple-7988 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.simple-7988 ol {
  margin: 1rem 0;
}

.simple-7988 li {
  margin-bottom: 0.75rem;
}

.focused_3144 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.hot_4b0b {
  margin: 2rem 0;
}

.video-dirty-e520 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.active_982f {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.active_9045 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.outline_soft_3e23 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.gas_a178 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.basic-628c {
  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;
}

.basic-628c img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.narrow-cf64 {
  flex: 1;
}

.narrow-cf64 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.media_2049 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.filter-orange-de98 p {
  margin-bottom: 1rem;
}

.large_1384 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.tall-2d53 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.card-152d {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.card-152d a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.row_white_3dd8 h3 {
  margin-bottom: 1.5rem;
}

.banner_hovered_68eb {
  display: grid;
  gap: 2rem;
}

.search_4ee2 {
  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;
}

.search_4ee2 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.search_4ee2 h4 {
  margin: 0 0 0.25rem;
}

.search_4ee2 p {
  margin: 0;
  font-size: 0.9375rem;
}

.easy-ecbd {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.main-stone-1583 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.main-stone-1583 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.main-stone-1583 ul {
  margin: 1.5rem 0;
}

.main-stone-1583 li {
  margin-bottom: 0.75rem;
}

.card_south_105d {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.disabled_fluid_a143 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.gallery_simple_61d5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.pro-db6a h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.pro-db6a p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.modal_medium_f6c8 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.modal_medium_f6c8 a {
  color: rgba(255, 255, 255, 0.8);
}

.disabled-fe9a {
  list-style: none;
}

.disabled-fe9a li {
  margin-bottom: 0.75rem;
}

.disabled-fe9a a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.disabled-fe9a a:hover {
  color: white;
}

.background-blue-6c7b {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.disabled_slow_923a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.solid_4186 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.selected_38c9 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.carousel-copper-95bb {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .nav_e24a {
    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;
  }

  .basic_e3d0 {
    font-size: 1.5rem !important;
  }

  .hover-rough-3528 {
    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 */
  .large_86a9,
  .out-5146,
  .full-870b,
  .smooth_ac88,
  .accordion_82b3,
  .module-tall-0684,
  .secondary_b8e0,
  .column_fd51,
  .first-1611,
  .photo_3a46 {
    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 */
  .up-609d {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .avatar_b5bc {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .progress-tall-7b22 {
    flex-shrink: 0;
  }

  .narrow-cf64 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .right-a18d,
  .pagination_beec {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .pagination_beec {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .huge_ea46 {
    display: none;
  }

  /* Show mobile actions */
  .orange_7e4b {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .liquid-0827 {
    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;
  }

  .liquid-0827 svg {
    flex-shrink: 0;
  }

  .liquid-0827 .chip_dim_795c {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .liquid-0827 .fast_8e15 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .popup-simple-1b2e {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .yellow_2a16 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .liquid-0827:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .dropdown_2d96 {
    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;
  }

  .dropdown_2d96.fn-active-00e9 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .dropdown_2d96 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .dropdown_2d96 li:last-child {
    border-bottom: none;
  }

  .dropdown_2d96 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .preview_basic_b030 {
    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;
  }

  .preview_basic_b030 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .preview_basic_b030 li:last-child {
    border-bottom: none;
  }

  .preview_basic_b030 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .block_51b7 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .link_mini_0de8 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .slider_dd8f,
  .backdrop-7f0e {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .slider_dd8f {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .backdrop-7f0e {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .preview_basic_b030.fn-active-00e9 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header_paper_e632 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .picture-bd18 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .short_32a8 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .focused_1704 {
    margin-top: 0;
  }

  /* Hero section */
  .focused_1704 {
    padding: 2rem 0 1.5rem;
  }

  .hover-rough-3528 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .first-1611 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .element-1454 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .glass-ef84 {
    max-width: 100%;
    border-radius: 8px;
  }

  .over_af93 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .fast-a8c8 {
    padding: 1rem;
  }

  .preview-3cf9 {
    font-size: 1.5rem;
  }

  .cool-323f {
    font-size: 0.75rem;
  }

  .column_fd51 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .yellow_d36b {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .yellow_d36b .purple-ed4d {
    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 */
  .north-d7db {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .liquid-4f66 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .aside-6b2f {
    margin-bottom: 1rem;
  }

  /* Author */
  .sidebar_3b22 {
    flex-direction: column;
  }

  .basic-628c {
    flex-direction: column;
  }

  /* Quotes */
  .accordion_82b3 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .frame_iron_17db {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .outline_soft_3e23 {
    flex-direction: column;
  }

  .outline_soft_3e23 .purple-ed4d {
    width: 100%;
  }

  /* Version comparison */
  .alert-81cb {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .selected_1ee4 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .gallery_simple_61d5 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .solid_4186 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .container-top-c29a,
  .preview_hard_7874,
  .summary-purple-df98,
  .title-blue-749d,
  .slider_eb2d,
  .preview_a3f4 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .container-top-c29a table,
  .preview_hard_7874 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .nav-ad8d {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .nav_e24a {
    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;
  }

  .basic_e3d0 {
    font-size: 1.25rem !important;
  }

  .hover-rough-3528 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .picture-bd18 {
    position: fixed;
  }

  .short_32a8 {
    padding: 0.625rem 0;
  }

  .disabled-active-5fd1 img {
    height: 26px;
  }

  .preview_basic_b030 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .dropdown_2d96 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .liquid-0827 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .liquid-0827 svg {
    width: 18px;
    height: 18px;
  }

  .liquid-0827 .chip_dim_795c {
    font-size: 0.7rem;
  }

  .liquid-0827 .fast_8e15 {
    font-size: 0.65rem;
  }

  .slider_dd8f,
  .backdrop-7f0e {
    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, .nav_e24a, .container_full_a212, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .element-1454 {
    padding: 1rem;
  }

  .over_af93 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .fast-a8c8 {
    padding: 0.875rem;
  }

  .preview-3cf9 {
    font-size: 1.25rem;
  }

  .yellow_d36b .purple-ed4d {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .hover-rough-3528 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .purple-ed4d {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .slow_0713 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .liquid-4f66 {
    padding: 1rem;
  }

  .aside-6b2f span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .large_86a9,
  .heading-fast-69fb,
  .notice-selected-aa75,
  .light-5d31 {
    padding: 1rem;
  }
}

@media print {
  .picture-bd18,
  .glass_24cd,
  .header_paper_e632,
  .purple-ed4d,
  .disabled_fluid_a143 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .nav_e24a {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.liquid-5aec {
  margin-bottom: 3rem;
  text-align: center;
}

.basic_e3d0 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.cold-5085 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.north-6955,
.pagination-wood-743c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.notice-7bfc {
  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;
}

.notice-7bfc:hover {
  transform: translateY(-5px);
}

.notice-7bfc strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.notice-7bfc span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.gallery_e7f6 {
  margin: 3rem 0;
}

.main-51b4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.container-bronze-8ae3 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.container-bronze-8ae3:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.container-ba5d {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hover_down_60fc {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.easy_ee2c {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.thumbnail_fb48 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.down-8a07 {
  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;
}

.down-8a07:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.down-8a07.hard_c05e {
  border-left: 4px solid var(--primary-color);
}

.right-b88a {
  flex-shrink: 0;
}

.right-b88a svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.paragraph_over_88f7 {
  flex: 1;
}

.paragraph_over_88f7 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.gradient_b0c0 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.clean_e90d,
.caption-red-f139,
.silver_5e8c {
  margin-bottom: 1.5rem;
}

.clean_e90d h4,
.caption-red-f139 h4,
.silver_5e8c h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.clean_e90d ul,
.caption-red-f139 ul,
.silver_5e8c ul {
  list-style: none;
  padding: 0;
}

.clean_e90d li,
.caption-red-f139 li,
.silver_5e8c li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.clean_e90d li:before,
.caption-red-f139 li:before,
.silver_5e8c li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.main_c7cb {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.main_c7cb 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;
}

.main_c7cb a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.wide-7505 { margin: 2rem 0; }
.static-d7e2 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.static-d7e2 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.dropdown_first_f41d p { margin-bottom: 1rem; line-height: 1.7; }
.dropdown_first_f41d strong { color: var(--text-primary); }
.dropdown_first_f41d ul { list-style: none; padding-left: 0; }
.dropdown_first_f41d ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.dropdown_first_f41d ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.image-first-396c { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.selected-83f9 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.selected-83f9:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.small_b4fa { font-size: 3rem; margin-bottom: 1rem; }
.selected-83f9 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.selected-83f9 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.menu-current-cbca { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.menu-current-cbca span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.white-e6b0 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.text_paper_fc44 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.soft_6a87 { text-align: center; }
.paragraph_14d0 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.focused_ed91 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.border-cd5e { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.tertiary_paper_4e89 { margin: 2rem 0; }
.carousel_cool_9c43 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.carousel_cool_9c43 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.carousel_cool_9c43 p, .carousel_cool_9c43 ul { line-height: 1.7; }
.carousel_cool_9c43 ul { list-style: none; padding-left: 0; }
.carousel_cool_9c43 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.carousel_cool_9c43 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.filter_9336 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.easy_da29 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.focus_ed05 { text-align: center; }
.narrow_e14e { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.gold-be94 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.slow-77f9 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.backdrop_1956 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.glass-84c8 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.glass-84c8:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.glass-84c8 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.glass-84c8 p, .glass-84c8 ul { line-height: 1.7; }
.glass-84c8 ul { list-style: none; padding-left: 0; }
.glass-84c8 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.glass-84c8 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: d566 */
.widget-item-x2 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.1;
}
