/* ============================================
   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 */
.video_85a4 p,
.accordion_a0c3,
.smooth_0185,
.shade-000c,
.icon-aafb,
.mini-79a9,
.mask-e684,
.highlight-orange-42e4 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.modal_5d7e {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.modal_5d7e > *,
.under_32c7,
.video_85a4,
.hover-advanced-ec27 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .modal_5d7e {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .modal_5d7e {
    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 === */
.under-1e77 {
  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 */
.under-1e77.badge-d900 {
  box-shadow: var(--shadow-md);
}

.component_stone_0552 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.hero_mini_2598 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.frame_3aab {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.secondary_lower_6630 {
  display: none;
}

/* Hide mobile actions on desktop */
.frame_7edf {
  display: none;
}

.bottom_e69f a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.bottom_e69f a:hover,
.bottom_e69f a.fn-active-bba4 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.row_8782 {
  margin-left: 1rem;
}

.inner-1fc8 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.tall_4a79,
.right-15f9 {
  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;
}

.tall_4a79 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.tall_4a79: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;
}

.right-15f9 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.right-15f9: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;
}

.tall_4a79 svg,
.right-15f9 svg {
  flex-shrink: 0;
}

.article_ac82 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.texture-6d49 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.texture-6d49::before,
.texture-6d49::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.texture-6d49::before {
  top: -7px;
}

.texture-6d49::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.sort_gas_6b39 {
  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 === */
.shadow_6674 {
  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);
}

.header_fbed {
  margin: 0 0 2rem;
  text-align: center;
}

.action-df13 {
  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;
}

.action-df13:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.status-0b2c {
  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);
}

.status-0b2c strong {
  color: var(--primary-color);
  font-weight: 700;
}

.hot-5470 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.input-bfa9 {
  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;
}

.input-bfa9:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.detail-glass-9de4 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.wide_015c {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.footer-5e70 {
  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);
}

.footer-5e70 .frame_full_dd6f {
  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;
}

.footer-5e70 .frame_full_dd6f svg {
  flex-shrink: 0;
}

.footer-5e70 .image_action_48bd {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.footer-5e70 .image_action_48bd: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);
}

.footer-5e70 .background_silver_7171 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.footer-5e70 .background_silver_7171: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) {
  .shadow_6674 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .action-df13 {
    max-width: 100%;
  }

  .hot-5470 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .input-bfa9 {
    padding: 1rem;
  }

  .detail-glass-9de4 {
    font-size: 1.5rem;
  }

  .wide_015c {
    font-size: 0.75rem;
  }

  .status-0b2c {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .footer-5e70 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .footer-5e70 .frame_full_dd6f {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hot-5470 {
    grid-template-columns: 1fr;
  }
}

.upper-4ed9 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.small-7b5a {
  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 === */
.cool-4b34 {
  margin-bottom: 2.5rem;
}

.component_pink_43bf {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.upper-4ed9 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.last_c746 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.frame-07af {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.breadcrumb-029c {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.feature_rough_0c89 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.form-warm-b049 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.shadow_thick_297c {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.label_c3c7 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.label_c3c7 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.highlight-e25a {
  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);
}

.secondary_4efb {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.basic_1c51 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.red-b672 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.stale_7b0f {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.orange_0f56 {
  display: grid;
  gap: 1rem;
}

.surface_ec34 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.logo-clean-112c {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.paper_1ed0 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.texture-dirty-b841 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.status_c7ec {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.white-cadb {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.white-cadb p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.accordion_a0c3 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.layout_fast_c231 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.photo_prev_1b8e {
  display: grid;
  gap: 2rem;
}

.aside-972f {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.frame-07af {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.last_c746 {
  flex: 1;
}

.feature_rough_0c89 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.feature_rough_0c89 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.hot-326c {
  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;
}

.form-warm-b049 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.last_9afe {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.last_9afe span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.component_c27d {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.component_c27d a {
  font-size: 0.875rem;
  font-weight: 500;
}

.tertiary-paper-294e {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.tertiary-paper-294e strong {
  display: block;
  margin-bottom: 0.75rem;
}

.tertiary-paper-294e ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tertiary-paper-294e li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.search_huge_5d29 {
  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 === */
.panel-278d {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.chip-b1b2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.media_41bf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.primary_left_08c6 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.primary_left_08c6 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.primary_left_08c6 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.primary_left_08c6 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;
}

.primary_left_08c6 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.primary_left_08c6 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.video_85a4 {
  padding: 3rem 0 5rem;
}

.hover-advanced-ec27 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.hover-advanced-ec27.popup-d769 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.smooth_0185 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.glass-0ccc {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.filter-14f5 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.filter-14f5 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.title-b267 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.element_f4b1 {
  text-align: center;
}

.label_ff14 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.title_fd63 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.slow_60ef {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.mini-79a9 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.shade-000c {
  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;
}

.shade-000c * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.shade-000c:hover {
  box-shadow: var(--shadow-lg);
}

.shade-000c.liquid-a27b {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.shade-000c h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.shade-000c ul {
  margin: 1rem 0;
}

.shade-000c li {
  margin-bottom: 0.75rem;
}

.text_stone_c2a0 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.form-south-82e8 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.form-south-82e8 a {
  font-weight: 600;
}

/* === Data Tables === */
.slow_b6d3 {
  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;
}

.slow_b6d3 table {
  width: 100%;
  min-width: 600px;
}

.slow_b6d3 thead {
  background-color: var(--primary-color);
  color: white;
}

.slow_b6d3 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.slow_b6d3 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.slow_b6d3 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.slow_b6d3 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.mini_d971 {
  list-style: none;
  margin: 1.5rem 0;
}

.mini_d971 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.mini_d971 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.item_left_06eb::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-bba4::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 === */
.section_gas_87ca {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.east_aa73 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.east_aa73 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.east_aa73 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.east_aa73 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.section_gas_87ca blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.mask-e684 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.mask-e684::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.hero-f9f3 {
  position: relative;
  margin-bottom: 3rem;
}

.table_0864 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.table_0864 .shade-clean-f472 {
  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;
}

.avatar_small_ff95 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.avatar_small_ff95 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.avatar_small_ff95 ul {
  margin: 1rem 0;
}

.avatar_small_ff95 li {
  margin-bottom: 0.75rem;
}

.slow_ac5e {
  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 === */
.black_c88f {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.black_c88f h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.button-9c6b {
  list-style: none;
  margin: 1.5rem 0;
}

.button-9c6b li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.button-9c6b a {
  font-weight: 600;
}

.first-1d15 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.highlight-orange-42e4 {
  margin: 2.5rem 0;
}

.plasma-e9d9 {
  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;
}

.plasma-e9d9:hover {
  box-shadow: var(--shadow-lg);
}

.plasma-e9d9.content_left_a95d {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.overlay-white-5d6f {
  flex-shrink: 0;
}

.overlay-white-5d6f 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);
}

.huge_2a34 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.white_9cf0,
.search_591a,
.button-421a {
  width: 100%;
  margin: 1.5rem 0;
}

.stale-3b79 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.stale-3b79 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.primary_wood_77fc {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.primary_wood_77fc strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.preview-30bb {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.preview-30bb strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.hot-e705 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.stale_f0a3 {
  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;
}

.stale_f0a3:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.stale_f0a3.outline-d4be {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.stale_f0a3 .tertiary-1619 {
  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;
}

.stale_f0a3 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.tag-a518 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.frame-db81 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.frame-db81 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.sidebar_orange_d648 {
  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 === */
.frame_full_dd6f {
  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;
}

.image_action_48bd {
  background-color: var(--primary-color);
  color: white;
}

.image_action_48bd:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.background_silver_7171 {
  background-color: var(--text-secondary);
  color: white;
}

.background_silver_7171:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.footer_small_5d5a {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.footer_small_5d5a:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.gradient-8699 {
  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;
}

.gradient-8699:hover {
  background-color: var(--primary-dark);
}

.highlight_tall_8483 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.tertiary-warm-1161 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.active_d1ed {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.link_9411 {
  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 === */
.component-a909 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.container_advanced_ed09 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.container_advanced_ed09 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.fixed_8b65 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.wood-67ef {
  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;
}

.left_1b66 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.active_97ce {
  list-style: none;
  counter-reset: rank-counter;
}

.active_97ce li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.active_97ce 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;
}

.title-prev-3746 {
  list-style: none;
}

.title-prev-3746 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.media_medium_3f81 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.column_36a6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.column_36a6 .up_67b6 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.column_36a6 .old_ee14 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.yellow_2fb2 {
  margin-top: 3rem;
}

.chip-6965 {
  width: 100%;
}

.gallery_fast_189c {
  background-color: #fef3c7;
}

.footer_middle_2f6e {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.fast_4bff {
  margin: 3rem 0;
}

.label_255c {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.in_a9d9 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.in_a9d9:hover {
  box-shadow: var(--shadow-lg);
}

.in_a9d9.hero-focused-17d5 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.heading-pink-077e {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.block-tiny-a760 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.block-tiny-a760 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.overlay_orange_ffc7 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.in_a9d9 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.footer_tall_2e3d {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.gallery_76cb {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.dynamic_ac9c {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.title-selected-2e4e {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.widget-df71 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.current_077b {
  margin-top: 1rem;
}

/* === FAQ Section === */
.black_dfab {
  max-width: 900px;
  margin: 0 auto;
}

.border-huge-3b28 {
  margin: 2rem 0;
}

.prev_bc78 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.prev_bc78 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.prev_bc78 summary::-webkit-details-marker {
  display: none;
}

.prev_bc78 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.chip-middle-d7ee {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.prev_bc78[open] .chip-middle-d7ee {
  transform: rotate(45deg);
}

.shadow_selected_02fb {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.shadow_selected_02fb p:last-child {
  margin-bottom: 0;
}

.pattern_4753 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.widget-fixed-abda {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.bright-56a4 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.bright-56a4 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.bright-56a4 .frame_full_dd6f {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.alert-under-3571 {
  max-width: 900px;
  margin: 0 auto;
}

.pagination_e263 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.sidebar-east-d714 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.sidebar-east-d714.fn-success-bba4 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.full_f6b7 {
  font-size: 3rem;
  line-height: 1;
}

.section_f3ff h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.soft-035d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.thumbnail-huge-bdc5,
.row-slow-523b {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.thumbnail-huge-bdc5 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.row-slow-523b h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.prev-7696,
.accent-glass-4ebf {
  margin: 1.5rem 0;
}

.prev-7696 li,
.accent-glass-4ebf li {
  margin-bottom: 1rem;
}

.top_c395 {
  margin: 3rem 0;
}

.purple-3eb7 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.purple-3eb7 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.purple-3eb7 ol {
  margin: 1rem 0;
}

.purple-3eb7 li {
  margin-bottom: 0.75rem;
}

.outer-a891 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.primary_83d7 {
  margin: 2rem 0;
}

.summary_new_bded {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.table_tall_93f3 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.block_basic_0cf9 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.main-75f4 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.wide-cc8d {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.alert-e531 {
  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;
}

.alert-e531 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.breadcrumb-029c {
  flex: 1;
}

.breadcrumb-029c h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.mini_d21a {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.disabled-90c2 p {
  margin-bottom: 1rem;
}

.gallery-e230 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.card-e40b {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.surface-new-4a7a {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.surface-new-4a7a a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.bronze_a468 h3 {
  margin-bottom: 1.5rem;
}

.hero_85f2 {
  display: grid;
  gap: 2rem;
}

.info_top_89d5 {
  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;
}

.info_top_89d5 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.info_top_89d5 h4 {
  margin: 0 0 0.25rem;
}

.info_top_89d5 p {
  margin: 0;
  font-size: 0.9375rem;
}

.logo_075a {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.outer_3a84 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.outer_3a84 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.outer_3a84 ul {
  margin: 1.5rem 0;
}

.outer_3a84 li {
  margin-bottom: 0.75rem;
}

.bronze_5028 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.primary_a3e7 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.paragraph-short-05ae {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.row_cold_a314 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.row_cold_a314 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb_5f7d {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.breadcrumb_5f7d a {
  color: rgba(255, 255, 255, 0.8);
}

.outline-0d75 {
  list-style: none;
}

.outline-0d75 li {
  margin-bottom: 0.75rem;
}

.outline-0d75 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.outline-0d75 a:hover {
  color: white;
}

.hovered_d0e7 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.fluid-662e {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.hero-active-1697 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.surface_next_b537 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.icon_fluid_aafa {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .modal_5d7e {
    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;
  }

  .gradient_cc76 {
    font-size: 1.5rem !important;
  }

  .component_pink_43bf {
    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 */
  .shade-000c,
  .icon-aafb,
  .avatar_small_ff95,
  .huge_2a34,
  .heading-pink-077e,
  .in_a9d9,
  .shadow_selected_02fb,
  .status-0b2c,
  .accordion_a0c3,
  .smooth_0185 {
    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 */
  .upper-4ed9 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .last_c746 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .frame-07af {
    flex-shrink: 0;
  }

  .breadcrumb-029c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .feature_rough_0c89,
  .form-warm-b049 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .form-warm-b049 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .frame_3aab {
    display: none;
  }

  /* Show mobile actions */
  .frame_7edf {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .tall_2185 {
    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;
  }

  .tall_2185 svg {
    flex-shrink: 0;
  }

  .tall_2185 .paper_8ae7 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .tall_2185 .button-41db {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .picture_huge_038d {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .element_purple_7629 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .tall_2185:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .secondary_lower_6630 {
    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;
  }

  .secondary_lower_6630.fn-active-bba4 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .secondary_lower_6630 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .secondary_lower_6630 li:last-child {
    border-bottom: none;
  }

  .secondary_lower_6630 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .bottom_e69f {
    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;
  }

  .bottom_e69f li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .bottom_e69f li:last-child {
    border-bottom: none;
  }

  .bottom_e69f a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .row_8782 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .inner-1fc8 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .tall_4a79,
  .right-15f9 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .tall_4a79 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .right-15f9 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .bottom_e69f.fn-active-bba4 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .article_ac82 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .under-1e77 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .component_stone_0552 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .sort_gas_6b39 {
    margin-top: 0;
  }

  /* Hero section */
  .sort_gas_6b39 {
    padding: 2rem 0 1.5rem;
  }

  .component_pink_43bf {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .accordion_a0c3 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .shadow_6674 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .action-df13 {
    max-width: 100%;
    border-radius: 8px;
  }

  .hot-5470 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .input-bfa9 {
    padding: 1rem;
  }

  .detail-glass-9de4 {
    font-size: 1.5rem;
  }

  .wide_015c {
    font-size: 0.75rem;
  }

  .status-0b2c {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .footer-5e70 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .footer-5e70 .frame_full_dd6f {
    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 */
  .media_41bf {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .plasma-e9d9 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .overlay-white-5d6f {
    margin-bottom: 1rem;
  }

  /* Author */
  .aside-972f {
    flex-direction: column;
  }

  .alert-e531 {
    flex-direction: column;
  }

  /* Quotes */
  .heading-pink-077e {
    flex-direction: column;
  }

  /* Pros/Cons */
  .soft-035d {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .main-75f4 {
    flex-direction: column;
  }

  .main-75f4 .frame_full_dd6f {
    width: 100%;
  }

  /* Version comparison */
  .hot-e705 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .component-a909 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .paragraph-short-05ae {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-active-1697 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .slow_b6d3,
  .search_591a,
  .preview_279d,
  .chip-6965,
  .white_9cf0,
  .button-421a {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .slow_b6d3 table,
  .search_591a table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .sidebar_orange_d648 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .modal_5d7e {
    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;
  }

  .gradient_cc76 {
    font-size: 1.25rem !important;
  }

  .component_pink_43bf {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .under-1e77 {
    position: fixed;
  }

  .component_stone_0552 {
    padding: 0.625rem 0;
  }

  .hero_mini_2598 img {
    height: 26px;
  }

  .bottom_e69f {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .secondary_lower_6630 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .tall_2185 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .tall_2185 svg {
    width: 18px;
    height: 18px;
  }

  .tall_2185 .paper_8ae7 {
    font-size: 0.7rem;
  }

  .tall_2185 .button-41db {
    font-size: 0.65rem;
  }

  .tall_4a79,
  .right-15f9 {
    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, .modal_5d7e, .under_32c7, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .shadow_6674 {
    padding: 1rem;
  }

  .hot-5470 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .input-bfa9 {
    padding: 0.875rem;
  }

  .detail-glass-9de4 {
    font-size: 1.25rem;
  }

  .footer-5e70 .frame_full_dd6f {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .component_pink_43bf {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .frame_full_dd6f {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .highlight_tall_8483 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .plasma-e9d9 {
    padding: 1rem;
  }

  .overlay-white-5d6f span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .shade-000c,
  .footer_in_7b22,
  .tag_gas_0738,
  .alert_efd4 {
    padding: 1rem;
  }
}

@media print {
  .under-1e77,
  .panel-278d,
  .article_ac82,
  .frame_full_dd6f,
  .primary_a3e7 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .modal_5d7e {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.smooth_710a {
  margin-bottom: 3rem;
  text-align: center;
}

.gradient_cc76 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.iron_7729 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.column_active_50cb,
.clean_de46 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.sort-335d {
  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;
}

.sort-335d:hover {
  transform: translateY(-5px);
}

.sort-335d strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.sort-335d span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.wood_756c {
  margin: 3rem 0;
}

.input_15ca {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.article_fluid_5036 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.article_fluid_5036:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.hovered-3127 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hard-fb3e {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.icon_copper_5675 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.fixed-194d {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.carousel_tiny_b763 {
  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;
}

.carousel_tiny_b763:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.carousel_tiny_b763.layout-green-32d0 {
  border-left: 4px solid var(--primary-color);
}

.focus-copper-b4cb {
  flex-shrink: 0;
}

.focus-copper-b4cb svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.black-6a6e {
  flex: 1;
}

.black-6a6e h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.info_glass_e711 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.wood-2f70,
.clean-1131,
.over_9a5f {
  margin-bottom: 1.5rem;
}

.wood-2f70 h4,
.clean-1131 h4,
.over_9a5f h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wood-2f70 ul,
.clean-1131 ul,
.over_9a5f ul {
  list-style: none;
  padding: 0;
}

.wood-2f70 li,
.clean-1131 li,
.over_9a5f li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.wood-2f70 li:before,
.clean-1131 li:before,
.over_9a5f li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.focus_de4b {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.focus_de4b 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;
}

.focus_de4b a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.progress_hovered_12d4 { margin: 2rem 0; }
.gradient-f5e5 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.gradient-f5e5 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.orange_1fd0 p { margin-bottom: 1rem; line-height: 1.7; }
.orange_1fd0 strong { color: var(--text-primary); }
.orange_1fd0 ul { list-style: none; padding-left: 0; }
.orange_1fd0 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.orange_1fd0 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.heading-4b13 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.search_over_d0b6 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.search_over_d0b6:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.label_da03 { font-size: 3rem; margin-bottom: 1rem; }
.search_over_d0b6 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.search_over_d0b6 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.disabled-1f28 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.disabled-1f28 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.backdrop-pink-a799 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.middle-8f6b { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.description_0dc4 { text-align: center; }
.table_basic_aca7 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.out_a14b { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.item-old-cf16 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.red_c780 { margin: 2rem 0; }
.picture_static_bc9e { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.picture_static_bc9e h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.picture_static_bc9e p, .picture_static_bc9e ul { line-height: 1.7; }
.picture_static_bc9e ul { list-style: none; padding-left: 0; }
.picture_static_bc9e ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.picture_static_bc9e ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.tag_first_8939 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.orange-4668 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.slider-9efb { text-align: center; }
.middle-947b { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.down_6fb6 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.dropdown-1c3a { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.description-d78f { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.advanced_0576 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.advanced_0576:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.advanced_0576 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.advanced_0576 p, .advanced_0576 ul { line-height: 1.7; }
.advanced_0576 ul { list-style: none; padding-left: 0; }
.advanced_0576 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.advanced_0576 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: f254 */
.ghost-box-z4 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.0;
}
