/* ============================================
   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 */
.shadow_41be p,
.prev_37e0,
.search_next_4ad2,
.alert_7f53,
.frame-selected-4a23,
.grid_4902,
.button-fluid-18d1,
.tall_16af {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.progress_last_1915 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.progress_last_1915 > *,
.row-wood-0b7c,
.shadow_41be,
.sort-plasma-e484 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .progress_last_1915 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .progress_last_1915 {
    padding: 0 1rem;
  }
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  letter-spacing: -0.015em;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.25rem;
}

strong {
  font-weight: 600;
  color: var(--text-primary);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

code {
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 0.875em;
  background-color: var(--bg-tertiary);
  padding: 0.2em 0.4em;
  border-radius: 3px;
  color: var(--accent-color);
}

pre {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 1px solid var(--border-color);
}

pre code {
  background: none;
  padding: 0;
  color: var(--text-primary);
}

/* === Header/Navigation === */
.focus-a454 {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

/* Enhance shadow when scrolled */
.focus-a454.sidebar_dynamic_10ec {
  box-shadow: var(--shadow-md);
}

.tabs-5bcb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.focused_7f4f img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.mini-abdb {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.search_iron_d38c {
  display: none;
}

/* Hide mobile actions on desktop */
.status-pressed-4955 {
  display: none;
}

.accordion-a1dc a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.accordion-a1dc a:hover,
.accordion-a1dc a.fn-active-8551 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.huge_b076 {
  margin-left: 1rem;
}

.upper_4b4b {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.video-7c1d,
.media_41fc {
  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;
}

.video-7c1d {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.video-7c1d: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;
}

.media_41fc {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.media_41fc: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;
}

.video-7c1d svg,
.media_41fc svg {
  flex-shrink: 0;
}

.pagination-1302 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.feature-silver-7625 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.feature-silver-7625::before,
.feature-silver-7625::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.feature-silver-7625::before {
  top: -7px;
}

.feature-silver-7625::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.article-bright-8e5f {
  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 === */
.input_13f3 {
  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);
}

.first_e92a {
  margin: 0 0 2rem;
  text-align: center;
}

.disabled_0f76 {
  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;
}

.disabled_0f76:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.avatar_41df {
  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);
}

.avatar_41df strong {
  color: var(--primary-color);
  font-weight: 700;
}

.column_68ad {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.label-2b2f {
  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;
}

.label-2b2f:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.frame-bottom-553f {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.fixed_4bc5 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.solid_6903 {
  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);
}

.solid_6903 .gold-c6fb {
  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;
}

.solid_6903 .gold-c6fb svg {
  flex-shrink: 0;
}

.solid_6903 .caption-plasma-63e2 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.solid_6903 .caption-plasma-63e2: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);
}

.solid_6903 .input-cfb9 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.solid_6903 .input-cfb9: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) {
  .input_13f3 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .disabled_0f76 {
    max-width: 100%;
  }

  .column_68ad {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .label-2b2f {
    padding: 1rem;
  }

  .frame-bottom-553f {
    font-size: 1.5rem;
  }

  .fixed_4bc5 {
    font-size: 0.75rem;
  }

  .avatar_41df {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .solid_6903 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .solid_6903 .gold-c6fb {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .column_68ad {
    grid-template-columns: 1fr;
  }
}

.aside_east_b9ac {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.gradient_d4a2 {
  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 === */
.dirty_29c0 {
  margin-bottom: 2.5rem;
}

.feature_hard_353d {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.aside_east_b9ac {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.shadow-white-4e9c {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.south_1126 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.pattern_b23d {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.preview_e75f {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.accordion-f54f {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.block-b380 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.card_copper_070f {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.card_copper_070f svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.aside_glass_f1c2 {
  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);
}

.focus-f66d {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.dropdown_97f4 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.new_1a1f {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.carousel_7f6e {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.light_3a92 {
  display: grid;
  gap: 1rem;
}

.link-56d3 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.soft_b61d {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.orange-2b94 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.gallery-896b {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.info-5b2c {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.label-prev-3848 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.label-prev-3848 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.prev_37e0 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.article_orange_9534 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.modal-center-bd10 {
  display: grid;
  gap: 2rem;
}

.description_5ffb {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.south_1126 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.shadow-white-4e9c {
  flex: 1;
}

.preview_e75f {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.preview_e75f a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.static_1340 {
  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;
}

.accordion-f54f {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.mini_700d {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.mini_700d span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.breadcrumb_large_7677 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.breadcrumb_large_7677 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-5ebd {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.nav-5ebd strong {
  display: block;
  margin-bottom: 0.75rem;
}

.nav-5ebd ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-5ebd li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.main_7252 {
  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 === */
.photo-warm-3891 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.top-329e {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.carousel_0fb1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.alert-bottom-eb7a h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.alert-bottom-eb7a ol {
  list-style: none;
  counter-reset: toc-counter;
}

.alert-bottom-eb7a ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.alert-bottom-eb7a 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;
}

.alert-bottom-eb7a ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.alert-bottom-eb7a ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.shadow_41be {
  padding: 3rem 0 5rem;
}

.sort-plasma-e484 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.sort-plasma-e484.item-98c5 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.search_next_4ad2 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.hard-d4be {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.center-ae34 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.center-ae34 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.copper_5a95 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.under_2937 {
  text-align: center;
}

.last_4bda {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.heading-short-82b1 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.status-warm-b9ab {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.grid_4902 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.alert_7f53 {
  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;
}

.alert_7f53 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.alert_7f53:hover {
  box-shadow: var(--shadow-lg);
}

.alert_7f53.active_bdab {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.alert_7f53 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.alert_7f53 ul {
  margin: 1rem 0;
}

.alert_7f53 li {
  margin-bottom: 0.75rem;
}

.pattern_57e9 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.fluid-7dc3 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.fluid-7dc3 a {
  font-weight: 600;
}

/* === Data Tables === */
.progress_32bc {
  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;
}

.progress_32bc table {
  width: 100%;
  min-width: 600px;
}

.progress_32bc thead {
  background-color: var(--primary-color);
  color: white;
}

.progress_32bc th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.progress_32bc td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.progress_32bc tbody tr:hover {
  background-color: var(--bg-secondary);
}

.progress_32bc tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.hero_9c6c {
  list-style: none;
  margin: 1.5rem 0;
}

.hero_9c6c li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.hero_9c6c li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.advanced-d3ca::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-8551::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 === */
.solid-4c14 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.full-5a66 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.full-5a66 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.full-5a66 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.full-5a66 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.solid-4c14 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.button-fluid-18d1 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.button-fluid-18d1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.section-b9a1 {
  position: relative;
  margin-bottom: 3rem;
}

.badge_dd8e {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.badge_dd8e .frame_north_a114 {
  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;
}

.backdrop_hard_24d8 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.backdrop_hard_24d8 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.backdrop_hard_24d8 ul {
  margin: 1rem 0;
}

.backdrop_hard_24d8 li {
  margin-bottom: 0.75rem;
}

.middle-f676 {
  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 === */
.focused_fbbc {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.focused_fbbc h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.photo-7e1b {
  list-style: none;
  margin: 1.5rem 0;
}

.photo-7e1b li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.photo-7e1b a {
  font-weight: 600;
}

.logo_3531 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.tall_16af {
  margin: 2.5rem 0;
}

.accordion-d39d {
  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;
}

.accordion-d39d:hover {
  box-shadow: var(--shadow-lg);
}

.accordion-d39d.caption-liquid-0a4a {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.wide_f257 {
  flex-shrink: 0;
}

.wide_f257 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);
}

.picture-purple-94b3 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.notice-5f7a,
.stone-011c,
.link-f724 {
  width: 100%;
  margin: 1.5rem 0;
}

.dropdown_pro_0200 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.dropdown_pro_0200 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.light-7f53 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.light-7f53 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.detail_large_07ed {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.detail_large_07ed strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.preview_adb8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.accordion_100d {
  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;
}

.accordion_100d:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.accordion_100d.shadow_7110 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.accordion_100d .down-b9f0 {
  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;
}

.accordion_100d h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.dropdown-57be {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.image-02d2 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.image-02d2 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.dirty-8997 {
  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 === */
.gold-c6fb {
  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;
}

.caption-plasma-63e2 {
  background-color: var(--primary-color);
  color: white;
}

.caption-plasma-63e2:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.input-cfb9 {
  background-color: var(--text-secondary);
  color: white;
}

.input-cfb9:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.menu_9382 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.menu_9382:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.orange_fe0b {
  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;
}

.orange_fe0b:hover {
  background-color: var(--primary-dark);
}

.large-9617 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.popup-1994 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.right-40ec {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.media_70d6 {
  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 === */
.modal-5a15 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.thick-d6e5 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.thick-d6e5 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.secondary_tiny_8704 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.header-73cf {
  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;
}

.background-ec8e {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.video_b8fc {
  list-style: none;
  counter-reset: rank-counter;
}

.video_b8fc li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.video_b8fc 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;
}

.status-3dfa {
  list-style: none;
}

.status-3dfa li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.lite_4d12 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.block-8cac {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.block-8cac .plasma-2de2 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.block-8cac .dropdown-bright-67f7 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.middle_960b {
  margin-top: 3rem;
}

.lower_41b8 {
  width: 100%;
}

.sidebar_first_6ccc {
  background-color: #fef3c7;
}

.pattern-fixed-eb07 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.notification-red-53c5 {
  margin: 3rem 0;
}

.overlay_cool_1206 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.header_0002 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.header_0002:hover {
  box-shadow: var(--shadow-lg);
}

.header_0002.primary-narrow-2ecc {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.gallery-3528 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.backdrop_full_59c1 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.backdrop_full_59c1 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.border-red-a342 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.header_0002 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.mini-19c6 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.soft_d5e7 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.element_da82 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.next_a0fc {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.center_4e6f {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.primary_8fac {
  margin-top: 1rem;
}

/* === FAQ Section === */
.slow-8656 {
  max-width: 900px;
  margin: 0 auto;
}

.pro-4731 {
  margin: 2rem 0;
}

.down_4c70 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.down_4c70 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.down_4c70 summary::-webkit-details-marker {
  display: none;
}

.down_4c70 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.tooltip_40d7 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.down_4c70[open] .tooltip_40d7 {
  transform: rotate(45deg);
}

.gold-2d8b {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.gold-2d8b p:last-child {
  margin-bottom: 0;
}

.badge-4f1d {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.motion-bb5d {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.feature_blue_eb5c {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.feature_blue_eb5c p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.feature_blue_eb5c .gold-c6fb {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.frame_01c3 {
  max-width: 900px;
  margin: 0 auto;
}

.message-green-1b91 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.input-f39e {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.input-f39e.fn-success-8551 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.old-46b9 {
  font-size: 3rem;
  line-height: 1;
}

.basic-a5b4 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.article-0153 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.component_south_4cda,
.hidden_old_d2ed {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.component_south_4cda h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.hidden_old_d2ed h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.item-9c14,
.message-9b3f {
  margin: 1.5rem 0;
}

.item-9c14 li,
.message-9b3f li {
  margin-bottom: 1rem;
}

.element_top_946a {
  margin: 3rem 0;
}

.modal_2e2c {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.modal_2e2c h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.modal_2e2c ol {
  margin: 1rem 0;
}

.modal_2e2c li {
  margin-bottom: 0.75rem;
}

.blue-00c1 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.background_east_e7d6 {
  margin: 2rem 0;
}

.tertiary_up_b7e5 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.next-977c {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.tooltip-simple-ef27 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.secondary-lower-a00a {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.cold-f141 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.first_0f31 {
  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;
}

.first_0f31 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.pattern_b23d {
  flex: 1;
}

.pattern_b23d h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.plasma-5324 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.tooltip_6e56 p {
  margin-bottom: 1rem;
}

.over_2f82 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.footer-solid-459c {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.heading_bb6c {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.heading_bb6c a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.description_fast_f0e3 h3 {
  margin-bottom: 1.5rem;
}

.detail_6163 {
  display: grid;
  gap: 2rem;
}

.up_a1fe {
  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;
}

.up_a1fe img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.up_a1fe h4 {
  margin: 0 0 0.25rem;
}

.up_a1fe p {
  margin: 0;
  font-size: 0.9375rem;
}

.copper-fc01 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.status_yellow_fcdd {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.status_yellow_fcdd h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.status_yellow_fcdd ul {
  margin: 1.5rem 0;
}

.status_yellow_fcdd li {
  margin-bottom: 0.75rem;
}

.static-e9b5 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.popup-ae21 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.center_0c90 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.silver-447d h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.silver-447d p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.tooltip-59a7 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.tooltip-59a7 a {
  color: rgba(255, 255, 255, 0.8);
}

.disabled-glass-f31f {
  list-style: none;
}

.disabled-glass-f31f li {
  margin-bottom: 0.75rem;
}

.disabled-glass-f31f a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.disabled-glass-f31f a:hover {
  color: white;
}

.wide_4852 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.pink-cfca {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.middle_8d27 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.menu_26ba {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.main-dim-19d4 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .progress_last_1915 {
    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;
  }

  .hover_under_92c5 {
    font-size: 1.5rem !important;
  }

  .feature_hard_353d {
    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 */
  .alert_7f53,
  .frame-selected-4a23,
  .backdrop_hard_24d8,
  .picture-purple-94b3,
  .gallery-3528,
  .header_0002,
  .gold-2d8b,
  .avatar_41df,
  .prev_37e0,
  .search_next_4ad2 {
    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 */
  .aside_east_b9ac {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .shadow-white-4e9c {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .south_1126 {
    flex-shrink: 0;
  }

  .pattern_b23d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .preview_e75f,
  .accordion-f54f {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .accordion-f54f {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .mini-abdb {
    display: none;
  }

  /* Show mobile actions */
  .status-pressed-4955 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .pattern_2fc8 {
    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;
  }

  .pattern_2fc8 svg {
    flex-shrink: 0;
  }

  .pattern_2fc8 .shade-09af {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .pattern_2fc8 .filter-middle-c3a6 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .gradient_hot_073d {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .media-6c38 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .pattern_2fc8:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .search_iron_d38c {
    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;
  }

  .search_iron_d38c.fn-active-8551 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .search_iron_d38c li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .search_iron_d38c li:last-child {
    border-bottom: none;
  }

  .search_iron_d38c a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .accordion-a1dc {
    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;
  }

  .accordion-a1dc li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .accordion-a1dc li:last-child {
    border-bottom: none;
  }

  .accordion-a1dc a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .huge_b076 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .upper_4b4b {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .video-7c1d,
  .media_41fc {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .video-7c1d {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .media_41fc {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .accordion-a1dc.fn-active-8551 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .pagination-1302 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .focus-a454 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .tabs-5bcb {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .article-bright-8e5f {
    margin-top: 0;
  }

  /* Hero section */
  .article-bright-8e5f {
    padding: 2rem 0 1.5rem;
  }

  .feature_hard_353d {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .prev_37e0 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .input_13f3 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .disabled_0f76 {
    max-width: 100%;
    border-radius: 8px;
  }

  .column_68ad {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .label-2b2f {
    padding: 1rem;
  }

  .frame-bottom-553f {
    font-size: 1.5rem;
  }

  .fixed_4bc5 {
    font-size: 0.75rem;
  }

  .avatar_41df {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .solid_6903 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .solid_6903 .gold-c6fb {
    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 */
  .carousel_0fb1 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .accordion-d39d {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .wide_f257 {
    margin-bottom: 1rem;
  }

  /* Author */
  .description_5ffb {
    flex-direction: column;
  }

  .first_0f31 {
    flex-direction: column;
  }

  /* Quotes */
  .gallery-3528 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .article-0153 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .secondary-lower-a00a {
    flex-direction: column;
  }

  .secondary-lower-a00a .gold-c6fb {
    width: 100%;
  }

  /* Version comparison */
  .preview_adb8 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .modal-5a15 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .center_0c90 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .middle_8d27 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .progress_32bc,
  .stone-011c,
  .silver-6848,
  .lower_41b8,
  .notice-5f7a,
  .link-f724 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .progress_32bc table,
  .stone-011c table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .dirty-8997 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .progress_last_1915 {
    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;
  }

  .hover_under_92c5 {
    font-size: 1.25rem !important;
  }

  .feature_hard_353d {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .focus-a454 {
    position: fixed;
  }

  .tabs-5bcb {
    padding: 0.625rem 0;
  }

  .focused_7f4f img {
    height: 26px;
  }

  .accordion-a1dc {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .search_iron_d38c {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .pattern_2fc8 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .pattern_2fc8 svg {
    width: 18px;
    height: 18px;
  }

  .pattern_2fc8 .shade-09af {
    font-size: 0.7rem;
  }

  .pattern_2fc8 .filter-middle-c3a6 {
    font-size: 0.65rem;
  }

  .video-7c1d,
  .media_41fc {
    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, .progress_last_1915, .row-wood-0b7c, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .input_13f3 {
    padding: 1rem;
  }

  .column_68ad {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .label-2b2f {
    padding: 0.875rem;
  }

  .frame-bottom-553f {
    font-size: 1.25rem;
  }

  .solid_6903 .gold-c6fb {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .feature_hard_353d {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .gold-c6fb {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .large-9617 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .accordion-d39d {
    padding: 1rem;
  }

  .wide_f257 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .alert_7f53,
  .chip_glass_f49b,
  .primary_3b0e,
  .background_paper_2744 {
    padding: 1rem;
  }
}

@media print {
  .focus-a454,
  .photo-warm-3891,
  .pagination-1302,
  .gold-c6fb,
  .popup-ae21 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .progress_last_1915 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.section-simple-773a {
  margin-bottom: 3rem;
  text-align: center;
}

.hover_under_92c5 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hot_fdf5 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.pink_f363,
.banner-pink-b0c5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.video-motion-52e6 {
  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;
}

.video-motion-52e6:hover {
  transform: translateY(-5px);
}

.video-motion-52e6 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.video-motion-52e6 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.hot_9e45 {
  margin: 3rem 0;
}

.pattern_ff70 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature_fluid_885a {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature_fluid_885a:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.hard-2399 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form_66d7 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.smooth_0cc2 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.video_e05b {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.sidebar-83dd {
  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;
}

.sidebar-83dd:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.sidebar-83dd.plasma_aa36 {
  border-left: 4px solid var(--primary-color);
}

.container-0273 {
  flex-shrink: 0;
}

.container-0273 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.link_lite_dc3a {
  flex: 1;
}

.link_lite_dc3a h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.widget-thick-e8ff {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.focus_40b5,
.gradient-narrow-3531,
.small_14fa {
  margin-bottom: 1.5rem;
}

.focus_40b5 h4,
.gradient-narrow-3531 h4,
.small_14fa h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.focus_40b5 ul,
.gradient-narrow-3531 ul,
.small_14fa ul {
  list-style: none;
  padding: 0;
}

.focus_40b5 li,
.gradient-narrow-3531 li,
.small_14fa li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.focus_40b5 li:before,
.gradient-narrow-3531 li:before,
.small_14fa li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.pattern_complex_4068 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.pattern_complex_4068 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;
}

.pattern_complex_4068 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.purple-df25 { margin: 2rem 0; }
.summary-dim-2738 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.summary-dim-2738 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.fresh_29cc p { margin-bottom: 1rem; line-height: 1.7; }
.fresh_29cc strong { color: var(--text-primary); }
.fresh_29cc ul { list-style: none; padding-left: 0; }
.fresh_29cc ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.fresh_29cc ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.gradient-62f8 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.box_south_1ed3 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.box_south_1ed3:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.left-ae0e { font-size: 3rem; margin-bottom: 1rem; }
.box_south_1ed3 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.box_south_1ed3 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.tertiary-smooth-a903 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.tertiary-smooth-a903 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.orange-6c5e { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.surface-warm-19d7 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.inner-ec3c { text-align: center; }
.border_steel_3dc5 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.red_8536 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.silver-ef80 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.breadcrumb_hard_60e5 { margin: 2rem 0; }
.info-inner-c53a { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.info-inner-c53a h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.info-inner-c53a p, .info-inner-c53a ul { line-height: 1.7; }
.info-inner-c53a ul { list-style: none; padding-left: 0; }
.info-inner-c53a ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.info-inner-c53a ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.icon-action-9108 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.card_0a28 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.sidebar-smooth-f662 { text-align: center; }
.motion-bacb { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.heading-ee76 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.element_over_3a90 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.grid-21d4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.hidden_brown_ce0d { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.hidden_brown_ce0d:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.hidden_brown_ce0d h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.hidden_brown_ce0d p, .hidden_brown_ce0d ul { line-height: 1.7; }
.hidden_brown_ce0d ul { list-style: none; padding-left: 0; }
.hidden_brown_ce0d ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.hidden_brown_ce0d ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 9ac6 */
.promo-block-m2 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.1;
}
