/* ============================================
   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_706b p,
.bronze-47e9,
.section_4833,
.soft_e5f0,
.pattern-eee6,
.surface-smooth-eee6,
.shade-012c,
.sidebar-plasma-b5ed {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.media_f4e5 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.media_f4e5 > *,
.bottom_4c18,
.video_706b,
.brown-e3b9 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .media_f4e5 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .media_f4e5 {
    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 === */
.over_cc6b {
  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 */
.over_cc6b.dropdown-be73 {
  box-shadow: var(--shadow-md);
}

.preview_small_dd42 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.footer_c37d img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.video-in-9641 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.shade_selected_8d02 {
  display: none;
}

/* Hide mobile actions on desktop */
.video_warm_6a54 {
  display: none;
}

.detail_short_fe1c a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.detail_short_fe1c a:hover,
.detail_short_fe1c a.fn-active-fe52 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.tag-outer-3ca1 {
  margin-left: 1rem;
}

.white_373a {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.chip-gold-4db9,
.accent-green-3bea {
  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;
}

.chip-gold-4db9 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.chip-gold-4db9: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;
}

.accent-green-3bea {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.accent-green-3bea: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;
}

.chip-gold-4db9 svg,
.accent-green-3bea svg {
  flex-shrink: 0;
}

.picture-white-1c6c {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.silver_f684 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.silver_f684::before,
.silver_f684::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.silver_f684::before {
  top: -7px;
}

.silver_f684::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.dark_949f {
  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 === */
.smooth_6b1e {
  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);
}

.hover-clean-e646 {
  margin: 0 0 2rem;
  text-align: center;
}

.wood_8e94 {
  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;
}

.wood_8e94:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.narrow_ca11 {
  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);
}

.narrow_ca11 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.popup-east-2c60 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.article-437a {
  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;
}

.article-437a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.action-4e92 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.notification_south_6622 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.dim_c998 {
  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);
}

.dim_c998 .secondary_brown_c390 {
  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;
}

.dim_c998 .secondary_brown_c390 svg {
  flex-shrink: 0;
}

.dim_c998 .header_3a53 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.dim_c998 .header_3a53: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);
}

.dim_c998 .progress_62a2 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.dim_c998 .progress_62a2: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) {
  .smooth_6b1e {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .wood_8e94 {
    max-width: 100%;
  }

  .popup-east-2c60 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .article-437a {
    padding: 1rem;
  }

  .action-4e92 {
    font-size: 1.5rem;
  }

  .notification_south_6622 {
    font-size: 0.75rem;
  }

  .narrow_ca11 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .dim_c998 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .dim_c998 .secondary_brown_c390 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .popup-east-2c60 {
    grid-template-columns: 1fr;
  }
}

.form-soft-e089 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.widget_03de {
  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 === */
.progress-glass-1af3 {
  margin-bottom: 2.5rem;
}

.active_f017 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.form-soft-e089 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.card_d878 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.down-ac9d {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.container-5ebe {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.header_60b1 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.footer-down-1458 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.black-8fc7 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.article_4718 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.article_4718 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.cold_b9ea {
  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);
}

.label_2d6f {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.popup_gas_af57 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.text_liquid_11be {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.under-d0d7 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.video-f4a4 {
  display: grid;
  gap: 1rem;
}

.next-a5e8 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.down-7827 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.gallery_pro_2c05 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.tall-7c3c {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.label-50b4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.sort_lower_7e24 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.sort_lower_7e24 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.bronze-47e9 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.filter-upper-b9a5 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.footer_c729 {
  display: grid;
  gap: 2rem;
}

.sort-4b14 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.down-ac9d {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.card_d878 {
  flex: 1;
}

.header_60b1 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.header_60b1 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.sidebar-hard-b0b8 {
  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;
}

.footer-down-1458 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.search-out-aae8 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.search-out-aae8 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.plasma-c110 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.plasma-c110 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.shade_1ed7 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.shade_1ed7 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.shade_1ed7 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.shade_1ed7 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.widget_up_eacf {
  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 === */
.tooltip-fast-2edf {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.video-08c2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.media-basic-7d35 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.nav_over_05ac h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.nav_over_05ac ol {
  list-style: none;
  counter-reset: toc-counter;
}

.nav_over_05ac ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.nav_over_05ac 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;
}

.nav_over_05ac ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.nav_over_05ac ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.video_706b {
  padding: 3rem 0 5rem;
}

.brown-e3b9 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.brown-e3b9.mini_ef2a {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.section_4833 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.surface_7faa {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.hidden-yellow-f04f {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.hidden-yellow-f04f h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.left-a68d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.fixed_ba99 {
  text-align: center;
}

.row_6a71 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.sidebar-da1f {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.pressed_d654 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.surface-smooth-eee6 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.soft_e5f0 {
  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;
}

.soft_e5f0 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.soft_e5f0:hover {
  box-shadow: var(--shadow-lg);
}

.soft_e5f0.wrapper_d8cc {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.soft_e5f0 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.soft_e5f0 ul {
  margin: 1rem 0;
}

.soft_e5f0 li {
  margin-bottom: 0.75rem;
}

.sort_brown_69f5 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.outline_right_eda5 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.outline_right_eda5 a {
  font-weight: 600;
}

/* === Data Tables === */
.backdrop_purple_0aff {
  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;
}

.backdrop_purple_0aff table {
  width: 100%;
  min-width: 600px;
}

.backdrop_purple_0aff thead {
  background-color: var(--primary-color);
  color: white;
}

.backdrop_purple_0aff th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.backdrop_purple_0aff td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.backdrop_purple_0aff tbody tr:hover {
  background-color: var(--bg-secondary);
}

.backdrop_purple_0aff tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.tall_a698 {
  list-style: none;
  margin: 1.5rem 0;
}

.tall_a698 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.tall_a698 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.new_91c6::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-fe52::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 === */
.mini_9786 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.hard_ca99 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.hard_ca99 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.hard_ca99 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.hard_ca99 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.mini_9786 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.shade-012c {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.shade-012c::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.wide-f3ef {
  position: relative;
  margin-bottom: 3rem;
}

.thumbnail-selected-726f {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.thumbnail-selected-726f .left-807f {
  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;
}

.info_short_893a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.info_short_893a h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.info_short_893a ul {
  margin: 1rem 0;
}

.info_short_893a li {
  margin-bottom: 0.75rem;
}

.title_light_d2ea {
  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 === */
.sort-f973 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.sort-f973 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.west-d555 {
  list-style: none;
  margin: 1.5rem 0;
}

.west-d555 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.west-d555 a {
  font-weight: 600;
}

.image_hard_c101 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.sidebar-plasma-b5ed {
  margin: 2.5rem 0;
}

.modal_4ea4 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s ease;
}

.modal_4ea4:hover {
  box-shadow: var(--shadow-lg);
}

.modal_4ea4.nav-5f6e {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.stale_cb7d {
  flex-shrink: 0;
}

.stale_cb7d 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);
}

.backdrop_glass_c75c h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.short-0158,
.disabled-white-921d,
.up_f012 {
  width: 100%;
  margin: 1.5rem 0;
}

.menu-31db {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.menu-31db strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.label_5c45 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.label_5c45 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.module-3e6a {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.module-3e6a strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.element-b58f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.easy_c96b {
  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;
}

.easy_c96b:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.easy_c96b.pressed-c777 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.easy_c96b .video-c499 {
  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;
}

.easy_c96b h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.grid_d2a9 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.prev_31e0 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.prev_31e0 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.backdrop_bright_f57b {
  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 === */
.secondary_brown_c390 {
  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;
}

.header_3a53 {
  background-color: var(--primary-color);
  color: white;
}

.header_3a53:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.progress_62a2 {
  background-color: var(--text-secondary);
  color: white;
}

.progress_62a2:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.small-90fe {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.small-90fe:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.card_dynamic_0dd2 {
  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;
}

.card_dynamic_0dd2:hover {
  background-color: var(--primary-dark);
}

.search-420f {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.tooltip_0b1e {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.bronze_2459 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.thumbnail-f3a7 {
  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 === */
.panel_narrow_0049 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.basic_6331 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.basic_6331 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.video_up_fd45 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.layout_dce1 {
  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;
}

.image_5f19 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.cool-a2d5 {
  list-style: none;
  counter-reset: rank-counter;
}

.cool-a2d5 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.cool-a2d5 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;
}

.summary-66a5 {
  list-style: none;
}

.summary-66a5 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.paper-78b0 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.overlay-last-9177 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.overlay-last-9177 .grid_8425 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.overlay-last-9177 .fixed_ec3e {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.inner_2c95 {
  margin-top: 3rem;
}

.article-tall-44f1 {
  width: 100%;
}

.media-mini-d552 {
  background-color: #fef3c7;
}

.cool-d7ab {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.label-active-b504 {
  margin: 3rem 0;
}

.column-outer-a3ea {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.texture_down_23f5 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.texture_down_23f5:hover {
  box-shadow: var(--shadow-lg);
}

.texture_down_23f5.frame_2863 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.grid_4f19 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.sidebar_1deb strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.sidebar_1deb span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.cool_30f6 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.texture_down_23f5 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.tiny_e923 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.background_d88e {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.over-51fb {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.gallery_huge_690a {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.thick_adb0 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.button-7472 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.medium-8b08 {
  max-width: 900px;
  margin: 0 auto;
}

.menu_a91c {
  margin: 2rem 0;
}

.middle_e5cb {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.middle_e5cb summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.middle_e5cb summary::-webkit-details-marker {
  display: none;
}

.middle_e5cb summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.info-advanced-96ee {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.middle_e5cb[open] .info-advanced-96ee {
  transform: rotate(45deg);
}

.old_46db {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.old_46db p:last-child {
  margin-bottom: 0;
}

.middle-a283 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.purple_83f0 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.warm-24d4 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.warm-24d4 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.warm-24d4 .secondary_brown_c390 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.pink_6a1a {
  max-width: 900px;
  margin: 0 auto;
}

.secondary_5c9a {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.section_focused_db01 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.section_focused_db01.fn-success-fe52 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.hot_4c44 {
  font-size: 3rem;
  line-height: 1;
}

.fluid-fe21 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.outline-thick-d27b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.shade_4965,
.hover_9999 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.shade_4965 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.hover_9999 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.static-3e06,
.summary_b79d {
  margin: 1.5rem 0;
}

.static-3e06 li,
.summary_b79d li {
  margin-bottom: 1rem;
}

.blue_bc26 {
  margin: 3rem 0;
}

.component_aa9d {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.component_aa9d h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.component_aa9d ol {
  margin: 1rem 0;
}

.component_aa9d li {
  margin-bottom: 0.75rem;
}

.menu-7cd5 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.gas-00be {
  margin: 2rem 0;
}

.alert-thick-4f93 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.white_4ad3 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.element_blue_ff0e {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.panel_orange_e505 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.description_red_08c7 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.element-b236 {
  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;
}

.element-b236 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.container-5ebe {
  flex: 1;
}

.container-5ebe h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.paper-a815 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.chip-1e17 p {
  margin-bottom: 1rem;
}

.pagination-narrow-dbdf {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.stone_facd {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.outer_6c3c {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.outer_6c3c a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.fluid_05fd h3 {
  margin-bottom: 1.5rem;
}

.outline-next-ccf4 {
  display: grid;
  gap: 2rem;
}

.input-aa8d {
  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;
}

.input-aa8d img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.input-aa8d h4 {
  margin: 0 0 0.25rem;
}

.input-aa8d p {
  margin: 0;
  font-size: 0.9375rem;
}

.bottom-562c {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.card_tall_b494 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.card_tall_b494 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.card_tall_b494 ul {
  margin: 1.5rem 0;
}

.card_tall_b494 li {
  margin-bottom: 0.75rem;
}

.list_yellow_3376 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.table-fef9 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.in_aced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.icon_warm_977f h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.icon_warm_977f p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.feature-motion-55e3 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.feature-motion-55e3 a {
  color: rgba(255, 255, 255, 0.8);
}

.background_basic_1d7e {
  list-style: none;
}

.background_basic_1d7e li {
  margin-bottom: 0.75rem;
}

.background_basic_1d7e a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.background_basic_1d7e a:hover {
  color: white;
}

.yellow-3c0d {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.tooltip_1c25 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.list_warm_c2f2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.fresh-21b1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.iron-9448 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .media_f4e5 {
    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;
  }

  .up-1b99 {
    font-size: 1.5rem !important;
  }

  .active_f017 {
    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 */
  .soft_e5f0,
  .pattern-eee6,
  .info_short_893a,
  .backdrop_glass_c75c,
  .grid_4f19,
  .texture_down_23f5,
  .old_46db,
  .narrow_ca11,
  .bronze-47e9,
  .section_4833 {
    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 */
  .form-soft-e089 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .card_d878 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .down-ac9d {
    flex-shrink: 0;
  }

  .container-5ebe {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .header_60b1,
  .footer-down-1458 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .footer-down-1458 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .video-in-9641 {
    display: none;
  }

  /* Show mobile actions */
  .video_warm_6a54 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .container_dirty_dd80 {
    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;
  }

  .container_dirty_dd80 svg {
    flex-shrink: 0;
  }

  .container_dirty_dd80 .picture-d7ff {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .container_dirty_dd80 .form_basic_de51 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .disabled-d276 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .video-6983 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .container_dirty_dd80:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .shade_selected_8d02 {
    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;
  }

  .shade_selected_8d02.fn-active-fe52 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .shade_selected_8d02 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .shade_selected_8d02 li:last-child {
    border-bottom: none;
  }

  .shade_selected_8d02 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .detail_short_fe1c {
    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;
  }

  .detail_short_fe1c li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .detail_short_fe1c li:last-child {
    border-bottom: none;
  }

  .detail_short_fe1c a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .tag-outer-3ca1 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .white_373a {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .chip-gold-4db9,
  .accent-green-3bea {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .chip-gold-4db9 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .accent-green-3bea {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .detail_short_fe1c.fn-active-fe52 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .picture-white-1c6c {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .over_cc6b {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .preview_small_dd42 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .dark_949f {
    margin-top: 0;
  }

  /* Hero section */
  .dark_949f {
    padding: 2rem 0 1.5rem;
  }

  .active_f017 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .bronze-47e9 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .smooth_6b1e {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .wood_8e94 {
    max-width: 100%;
    border-radius: 8px;
  }

  .popup-east-2c60 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .article-437a {
    padding: 1rem;
  }

  .action-4e92 {
    font-size: 1.5rem;
  }

  .notification_south_6622 {
    font-size: 0.75rem;
  }

  .narrow_ca11 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .dim_c998 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .dim_c998 .secondary_brown_c390 {
    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-basic-7d35 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .modal_4ea4 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .stale_cb7d {
    margin-bottom: 1rem;
  }

  /* Author */
  .sort-4b14 {
    flex-direction: column;
  }

  .element-b236 {
    flex-direction: column;
  }

  /* Quotes */
  .grid_4f19 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .outline-thick-d27b {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .panel_orange_e505 {
    flex-direction: column;
  }

  .panel_orange_e505 .secondary_brown_c390 {
    width: 100%;
  }

  /* Version comparison */
  .element-b58f {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .panel_narrow_0049 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .in_aced {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .list_warm_c2f2 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .backdrop_purple_0aff,
  .disabled-white-921d,
  .video-541e,
  .article-tall-44f1,
  .short-0158,
  .up_f012 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .backdrop_purple_0aff table,
  .disabled-white-921d table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .backdrop_bright_f57b {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .media_f4e5 {
    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;
  }

  .up-1b99 {
    font-size: 1.25rem !important;
  }

  .active_f017 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .over_cc6b {
    position: fixed;
  }

  .preview_small_dd42 {
    padding: 0.625rem 0;
  }

  .footer_c37d img {
    height: 26px;
  }

  .detail_short_fe1c {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .shade_selected_8d02 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .container_dirty_dd80 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .container_dirty_dd80 svg {
    width: 18px;
    height: 18px;
  }

  .container_dirty_dd80 .picture-d7ff {
    font-size: 0.7rem;
  }

  .container_dirty_dd80 .form_basic_de51 {
    font-size: 0.65rem;
  }

  .chip-gold-4db9,
  .accent-green-3bea {
    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, .media_f4e5, .bottom_4c18, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .smooth_6b1e {
    padding: 1rem;
  }

  .popup-east-2c60 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .article-437a {
    padding: 0.875rem;
  }

  .action-4e92 {
    font-size: 1.25rem;
  }

  .dim_c998 .secondary_brown_c390 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .active_f017 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .secondary_brown_c390 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .search-420f {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .modal_4ea4 {
    padding: 1rem;
  }

  .stale_cb7d span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .soft_e5f0,
  .basic-b590,
  .feature-c240,
  .carousel-short-3f62 {
    padding: 1rem;
  }
}

@media print {
  .over_cc6b,
  .tooltip-fast-2edf,
  .picture-white-1c6c,
  .secondary_brown_c390,
  .table-fef9 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .media_f4e5 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.outer-0395 {
  margin-bottom: 3rem;
  text-align: center;
}

.up-1b99 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.status_b071 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.highlight-glass-6327,
.wrapper-right-a214 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.picture-654e {
  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;
}

.picture-654e:hover {
  transform: translateY(-5px);
}

.picture-654e strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.picture-654e span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.pink_6b85 {
  margin: 3rem 0;
}

.accent_ebfc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.hover_light_1602 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.hover_light_1602:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.hero_3a4f {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.accordion_mini_5671 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.table_north_5334 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.primary-south-73e5 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.hard_c0f5 {
  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;
}

.hard_c0f5:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.hard_c0f5.texture_cb62 {
  border-left: 4px solid var(--primary-color);
}

.selected-8c28 {
  flex-shrink: 0;
}

.selected-8c28 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.link-green-2f90 {
  flex: 1;
}

.link-green-2f90 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.module-small-8108 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.wood_826a,
.warm-513e,
.shade-c96f {
  margin-bottom: 1.5rem;
}

.wood_826a h4,
.warm-513e h4,
.shade-c96f h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wood_826a ul,
.warm-513e ul,
.shade-c96f ul {
  list-style: none;
  padding: 0;
}

.wood_826a li,
.warm-513e li,
.shade-c96f li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.wood_826a li:before,
.warm-513e li:before,
.shade-c96f li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.hard-a43c {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hard-a43c 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;
}

.hard-a43c a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.input_iron_f69f { margin: 2rem 0; }
.hidden-4311 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.hidden-4311 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.hidden_selected_7f48 p { margin-bottom: 1rem; line-height: 1.7; }
.hidden_selected_7f48 strong { color: var(--text-primary); }
.hidden_selected_7f48 ul { list-style: none; padding-left: 0; }
.hidden_selected_7f48 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.hidden_selected_7f48 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.aside-over-01d9 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.link_da6d { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.link_da6d:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.over_b291 { font-size: 3rem; margin-bottom: 1rem; }
.link_da6d h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.link_da6d p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.banner-36da { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.banner-36da span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.main_2aaf { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.middle-ec37 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.tooltip-fast-83b6 { text-align: center; }
.blue_eb6b { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.banner-hard-920a { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.banner-d623 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.lower_a13d { margin: 2rem 0; }
.avatar-632e { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.avatar-632e h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.avatar-632e p, .avatar-632e ul { line-height: 1.7; }
.avatar-632e ul { list-style: none; padding-left: 0; }
.avatar-632e ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.avatar-632e ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.heading_large_7a9d { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.new-2b24 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.complex_60c0 { text-align: center; }
.search_96a7 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.accent_simple_78ab { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.border_abcc { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.thumbnail_239b { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.filter-bright-9e84 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.filter-bright-9e84:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.filter-bright-9e84 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.filter-bright-9e84 p, .filter-bright-9e84 ul { line-height: 1.7; }
.filter-bright-9e84 ul { list-style: none; padding-left: 0; }
.filter-bright-9e84 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.filter-bright-9e84 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: cb26 */
.ghost-box-o5 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.2;
}
