/* ============================================
   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 */
.clean-b99c p,
.element_7429,
.sidebar_static_42ec,
.dim_8610,
.texture-red-b15c,
.container-warm-a5f1,
.outer-a7d6,
.gallery_west_df33 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.paper_765c {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.paper_765c > *,
.widget_bright_f654,
.clean-b99c,
.item-pressed-33c9 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .paper_765c {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .paper_765c {
    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 === */
.message_416b {
  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 */
.message_416b.label_6fa9 {
  box-shadow: var(--shadow-md);
}

.plasma-8878 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.hover_lower_3e1b img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.element-4e06 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.plasma_96eb {
  display: none;
}

/* Hide mobile actions on desktop */
.last_33b6 {
  display: none;
}

.hidden-blue-3e68 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.hidden-blue-3e68 a:hover,
.hidden-blue-3e68 a.fn-active-9507 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.short_2231 {
  margin-left: 1rem;
}

.title-fast-458b {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.hidden-4a0a,
.pressed_64aa {
  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;
}

.hidden-4a0a {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.hidden-4a0a: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;
}

.pressed_64aa {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.pressed_64aa: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;
}

.hidden-4a0a svg,
.pressed_64aa svg {
  flex-shrink: 0;
}

.gradient-6b7e {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.tall-ac02 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.tall-ac02::before,
.tall-ac02::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.tall-ac02::before {
  top: -7px;
}

.tall-ac02::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.footer_red_5a45 {
  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 === */
.breadcrumb_in_640a {
  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);
}

.gas_7721 {
  margin: 0 0 2rem;
  text-align: center;
}

.soft_af34 {
  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;
}

.soft_af34:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.full-26c6 {
  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);
}

.full-26c6 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.description_stone_df0a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.text-845c {
  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;
}

.text-845c:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.new_36f8 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.form-b0da {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.dropdown_smooth_0c30 {
  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);
}

.dropdown_smooth_0c30 .progress_f24f {
  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;
}

.dropdown_smooth_0c30 .progress_f24f svg {
  flex-shrink: 0;
}

.dropdown_smooth_0c30 .brown_603c {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.dropdown_smooth_0c30 .brown_603c: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);
}

.dropdown_smooth_0c30 .center_ce38 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.dropdown_smooth_0c30 .center_ce38: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) {
  .breadcrumb_in_640a {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .soft_af34 {
    max-width: 100%;
  }

  .description_stone_df0a {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .text-845c {
    padding: 1rem;
  }

  .new_36f8 {
    font-size: 1.5rem;
  }

  .form-b0da {
    font-size: 0.75rem;
  }

  .full-26c6 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .dropdown_smooth_0c30 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .dropdown_smooth_0c30 .progress_f24f {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .description_stone_df0a {
    grid-template-columns: 1fr;
  }
}

.section-east-a2e0 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.left_8db7 {
  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 === */
.main-c710 {
  margin-bottom: 2.5rem;
}

.pressed_766b {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.section-east-a2e0 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.module-c989 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pattern-c0f2 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.icon-small-c58d {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.disabled_first_78a7 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.down-2784 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.article-ca03 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.article-copper-3dd9 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.article-copper-3dd9 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.tag_34ed {
  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);
}

.preview_fixed_4def {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.progress-8fb5 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.status-bottom-8655 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.basic_52fb {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.picture-27b5 {
  display: grid;
  gap: 1rem;
}

.fresh_6e30 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.gold_2315 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.form-north-595d {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.gold_d1e4 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.heading_59ba {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.thumbnail-middle-a21d {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.thumbnail-middle-a21d p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.element_7429 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.column-fa5e {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.new_3fd0 {
  display: grid;
  gap: 2rem;
}

.up-e34a {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.pattern-c0f2 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.module-c989 {
  flex: 1;
}

.disabled_first_78a7 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.disabled_first_78a7 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.column-f7f6 {
  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;
}

.down-2784 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.feature-tiny-08d5 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.feature-tiny-08d5 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.media-solid-fc2d {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.media-solid-fc2d a {
  font-size: 0.875rem;
  font-weight: 500;
}

.wide-0a7c {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.wide-0a7c strong {
  display: block;
  margin-bottom: 0.75rem;
}

.wide-0a7c ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wide-0a7c li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.notification_f4c8 {
  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 === */
.focus-east-b48f {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.motion-50ed {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.accent-5f85 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.aside_feb6 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.aside_feb6 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.aside_feb6 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.aside_feb6 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;
}

.aside_feb6 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.aside_feb6 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.clean-b99c {
  padding: 3rem 0 5rem;
}

.item-pressed-33c9 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.item-pressed-33c9.old-e822 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.sidebar_static_42ec {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.active-c0c7 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.red_8ada {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.red_8ada h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.widget-afb0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.input-5668 {
  text-align: center;
}

.chip-3249 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.red-6a68 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.text-a3db {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.container-warm-a5f1 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.dim_8610 {
  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;
}

.dim_8610 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.dim_8610:hover {
  box-shadow: var(--shadow-lg);
}

.dim_8610.picture_stale_c9df {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.dim_8610 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.dim_8610 ul {
  margin: 1rem 0;
}

.dim_8610 li {
  margin-bottom: 0.75rem;
}

.action-9570 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.stale-f35e {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.stale-f35e a {
  font-weight: 600;
}

/* === Data Tables === */
.box_66de {
  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;
}

.box_66de table {
  width: 100%;
  min-width: 600px;
}

.box_66de thead {
  background-color: var(--primary-color);
  color: white;
}

.box_66de th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.box_66de td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.box_66de tbody tr:hover {
  background-color: var(--bg-secondary);
}

.box_66de tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.secondary-fixed-76cc {
  list-style: none;
  margin: 1.5rem 0;
}

.secondary-fixed-76cc li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.secondary-fixed-76cc li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.yellow_6e02::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-9507::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-f043 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.footer_a15d {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.footer_a15d img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.footer_a15d strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.footer_a15d span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.solid-f043 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.outer-a7d6 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.outer-a7d6::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.heading_south_5dc8 {
  position: relative;
  margin-bottom: 3rem;
}

.focused-82ad {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.focused-82ad .chip_9b32 {
  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;
}

.silver-3152 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.silver-3152 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.silver-3152 ul {
  margin: 1rem 0;
}

.silver-3152 li {
  margin-bottom: 0.75rem;
}

.lite-bfc9 {
  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 === */
.purple-b7c6 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.purple-b7c6 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.accordion-834b {
  list-style: none;
  margin: 1.5rem 0;
}

.accordion-834b li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.accordion-834b a {
  font-weight: 600;
}

.item_e26e {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.gallery_west_df33 {
  margin: 2.5rem 0;
}

.chip_west_97b1 {
  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;
}

.chip_west_97b1:hover {
  box-shadow: var(--shadow-lg);
}

.chip_west_97b1.under-dd89 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.background-old-6d07 {
  flex-shrink: 0;
}

.background-old-6d07 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);
}

.menu_left_c371 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.panel_6a46,
.caption-d753,
.bronze-3744 {
  width: 100%;
  margin: 1.5rem 0;
}

.module-525d {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.module-525d strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.backdrop_first_4ef8 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.backdrop_first_4ef8 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.modal-center-14bc {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.modal-center-14bc strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.item_dynamic_f873 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.title-d0ab {
  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;
}

.title-d0ab:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.title-d0ab.video-5668 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.title-d0ab .pattern_wide_15f1 {
  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;
}

.title-d0ab h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.bottom_166b {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.status-pressed-bddf {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.status-pressed-bddf label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.input-out-c2ff {
  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 === */
.progress_f24f {
  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;
}

.brown_603c {
  background-color: var(--primary-color);
  color: white;
}

.brown_603c:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.center_ce38 {
  background-color: var(--text-secondary);
  color: white;
}

.center_ce38:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.in_932b {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.in_932b:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.tooltip_08ed {
  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;
}

.tooltip_08ed:hover {
  background-color: var(--primary-dark);
}

.next-894a {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.content-15fc {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.wrapper-right-555c {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.alert_540a {
  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 === */
.full_7a1f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.icon_60a6 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.icon_60a6 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.layout_west_8cc8 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.backdrop-a64c {
  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;
}

.picture-e96e {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.breadcrumb_old_1b99 {
  list-style: none;
  counter-reset: rank-counter;
}

.breadcrumb_old_1b99 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.breadcrumb_old_1b99 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;
}

.wrapper_46f9 {
  list-style: none;
}

.wrapper_46f9 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.form_3366 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.notification-eb29 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.notification-eb29 .paragraph_e17e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.notification-eb29 .dropdown-374f {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.copper-bd01 {
  margin-top: 3rem;
}

.card-wide-6454 {
  width: 100%;
}

.search_gas_d7a7 {
  background-color: #fef3c7;
}

.nav_basic_c45e {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.tooltip_orange_eb6d {
  margin: 3rem 0;
}

.item_brown_fe85 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.north-0d21 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.north-0d21:hover {
  box-shadow: var(--shadow-lg);
}

.north-0d21.backdrop_4a49 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.info-focused-076a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.element-action-3c39 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.element-action-3c39 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.huge-f572 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.north-0d21 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.module_3ce4 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.light-b99a {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.bronze_7927 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.link_294c {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.huge-3cdd {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.label-3ddb {
  margin-top: 1rem;
}

/* === FAQ Section === */
.component_liquid_34a9 {
  max-width: 900px;
  margin: 0 auto;
}

.frame_orange_ff65 {
  margin: 2rem 0;
}

.avatar_00e1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.avatar_00e1 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.avatar_00e1 summary::-webkit-details-marker {
  display: none;
}

.avatar_00e1 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.item_white_7730 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.avatar_00e1[open] .item_white_7730 {
  transform: rotate(45deg);
}

.fresh-2db3 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.fresh-2db3 p:last-child {
  margin-bottom: 0;
}

.hover-under-9800 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.heading_tall_3919 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.rough_d573 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.rough_d573 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.rough_d573 .progress_f24f {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.backdrop_basic_2f26 {
  max-width: 900px;
  margin: 0 auto;
}

.button_c1d2 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.picture-full-89f2 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.picture-full-89f2.fn-success-9507 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.modal-7ebf {
  font-size: 3rem;
  line-height: 1;
}

.popup_8a89 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.text-bfee {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.hidden_326f,
.caption_38bf {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.hidden_326f h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.caption_38bf h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.text_fixed_1855,
.rough_a774 {
  margin: 1.5rem 0;
}

.text_fixed_1855 li,
.rough_a774 li {
  margin-bottom: 1rem;
}

.table_paper_cbab {
  margin: 3rem 0;
}

.panel-283f {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.panel-283f h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.panel-283f ol {
  margin: 1rem 0;
}

.panel-283f li {
  margin-bottom: 0.75rem;
}

.complex-3a73 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.fixed_6d11 {
  margin: 2rem 0;
}

.table_up_8b5d {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.over_3c04 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.picture_over_ad21 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.popup-medium-85f1 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.lower_958a {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.list_ec0b {
  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;
}

.list_ec0b img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.icon-small-c58d {
  flex: 1;
}

.icon-small-c58d h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.primary-c58e {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.out-460a p {
  margin-bottom: 1rem;
}

.solid-5756 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.static-6cea {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.orange-603e {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.orange-603e a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.link_next_cf23 h3 {
  margin-bottom: 1.5rem;
}

.fast_9634 {
  display: grid;
  gap: 2rem;
}

.bronze-36b0 {
  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;
}

.bronze-36b0 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.bronze-36b0 h4 {
  margin: 0 0 0.25rem;
}

.bronze-36b0 p {
  margin: 0;
  font-size: 0.9375rem;
}

.component-05f1 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.section_a851 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.section_a851 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.section_a851 ul {
  margin: 1.5rem 0;
}

.section_a851 li {
  margin-bottom: 0.75rem;
}

.column_bottom_bec1 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.soft-41ff {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.input_6a90 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.banner-mini-544f h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.banner-mini-544f p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.nav_yellow_8a25 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.nav_yellow_8a25 a {
  color: rgba(255, 255, 255, 0.8);
}

.message_right_4e74 {
  list-style: none;
}

.message_right_4e74 li {
  margin-bottom: 0.75rem;
}

.message_right_4e74 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.message_right_4e74 a:hover {
  color: white;
}

.outline-56bb {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.gradient-small-106c {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.complex-8a43 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.border_e9a7 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.title_stone_56b5 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .paper_765c {
    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;
  }

  .list_lite_7f72 {
    font-size: 1.5rem !important;
  }

  .pressed_766b {
    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 */
  .dim_8610,
  .texture-red-b15c,
  .silver-3152,
  .menu_left_c371,
  .info-focused-076a,
  .north-0d21,
  .fresh-2db3,
  .full-26c6,
  .element_7429,
  .sidebar_static_42ec {
    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 */
  .section-east-a2e0 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .module-c989 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .pattern-c0f2 {
    flex-shrink: 0;
  }

  .icon-small-c58d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .disabled_first_78a7,
  .down-2784 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .down-2784 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .element-4e06 {
    display: none;
  }

  /* Show mobile actions */
  .last_33b6 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .mask_a65b {
    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;
  }

  .mask_a65b svg {
    flex-shrink: 0;
  }

  .mask_a65b .under-183e {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .mask_a65b .cold-0c98 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .chip_e572 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .medium-90a2 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .mask_a65b:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .plasma_96eb {
    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;
  }

  .plasma_96eb.fn-active-9507 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .plasma_96eb li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .plasma_96eb li:last-child {
    border-bottom: none;
  }

  .plasma_96eb a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .hidden-blue-3e68 {
    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;
  }

  .hidden-blue-3e68 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .hidden-blue-3e68 li:last-child {
    border-bottom: none;
  }

  .hidden-blue-3e68 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .short_2231 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .title-fast-458b {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .hidden-4a0a,
  .pressed_64aa {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .hidden-4a0a {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .pressed_64aa {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .hidden-blue-3e68.fn-active-9507 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .gradient-6b7e {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .message_416b {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .plasma-8878 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .footer_red_5a45 {
    margin-top: 0;
  }

  /* Hero section */
  .footer_red_5a45 {
    padding: 2rem 0 1.5rem;
  }

  .pressed_766b {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .element_7429 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .breadcrumb_in_640a {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .soft_af34 {
    max-width: 100%;
    border-radius: 8px;
  }

  .description_stone_df0a {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .text-845c {
    padding: 1rem;
  }

  .new_36f8 {
    font-size: 1.5rem;
  }

  .form-b0da {
    font-size: 0.75rem;
  }

  .full-26c6 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .dropdown_smooth_0c30 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .dropdown_smooth_0c30 .progress_f24f {
    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 */
  .accent-5f85 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .chip_west_97b1 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .background-old-6d07 {
    margin-bottom: 1rem;
  }

  /* Author */
  .up-e34a {
    flex-direction: column;
  }

  .list_ec0b {
    flex-direction: column;
  }

  /* Quotes */
  .info-focused-076a {
    flex-direction: column;
  }

  /* Pros/Cons */
  .text-bfee {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .popup-medium-85f1 {
    flex-direction: column;
  }

  .popup-medium-85f1 .progress_f24f {
    width: 100%;
  }

  /* Version comparison */
  .item_dynamic_f873 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .full_7a1f {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .input_6a90 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .complex-8a43 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .box_66de,
  .caption-d753,
  .tooltip_63bb,
  .card-wide-6454,
  .panel_6a46,
  .bronze-3744 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .box_66de table,
  .caption-d753 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .input-out-c2ff {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .paper_765c {
    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;
  }

  .list_lite_7f72 {
    font-size: 1.25rem !important;
  }

  .pressed_766b {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .message_416b {
    position: fixed;
  }

  .plasma-8878 {
    padding: 0.625rem 0;
  }

  .hover_lower_3e1b img {
    height: 26px;
  }

  .hidden-blue-3e68 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .plasma_96eb {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .mask_a65b {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .mask_a65b svg {
    width: 18px;
    height: 18px;
  }

  .mask_a65b .under-183e {
    font-size: 0.7rem;
  }

  .mask_a65b .cold-0c98 {
    font-size: 0.65rem;
  }

  .hidden-4a0a,
  .pressed_64aa {
    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, .paper_765c, .widget_bright_f654, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .breadcrumb_in_640a {
    padding: 1rem;
  }

  .description_stone_df0a {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .text-845c {
    padding: 0.875rem;
  }

  .new_36f8 {
    font-size: 1.25rem;
  }

  .dropdown_smooth_0c30 .progress_f24f {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .pressed_766b {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .progress_f24f {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .next-894a {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .chip_west_97b1 {
    padding: 1rem;
  }

  .background-old-6d07 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .dim_8610,
  .frame-8643,
  .banner_3e0e,
  .label-pressed-1276 {
    padding: 1rem;
  }
}

@media print {
  .message_416b,
  .focus-east-b48f,
  .gradient-6b7e,
  .progress_f24f,
  .soft-41ff {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .paper_765c {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.grid-4f35 {
  margin-bottom: 3rem;
  text-align: center;
}

.list_lite_7f72 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.up_8d1a {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.aside_small_65f5,
.green_0838 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.active-ddf9 {
  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;
}

.active-ddf9:hover {
  transform: translateY(-5px);
}

.active-ddf9 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.active-ddf9 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.content-short-f605 {
  margin: 3rem 0;
}

.last_b72a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.form_0eb5 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.form_0eb5:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.heading-87b1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hover_down_d991 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.smooth_2953 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.outline-ae57 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.glass-7119 {
  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;
}

.glass-7119:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.glass-7119.paper_3c27 {
  border-left: 4px solid var(--primary-color);
}

.message-tall-4716 {
  flex-shrink: 0;
}

.message-tall-4716 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.south_117f {
  flex: 1;
}

.south_117f h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.notification-85b7 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.button_purple_cd92,
.container_3722,
.warm-ab1b {
  margin-bottom: 1.5rem;
}

.button_purple_cd92 h4,
.container_3722 h4,
.warm-ab1b h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.button_purple_cd92 ul,
.container_3722 ul,
.warm-ab1b ul {
  list-style: none;
  padding: 0;
}

.button_purple_cd92 li,
.container_3722 li,
.warm-ab1b li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.button_purple_cd92 li:before,
.container_3722 li:before,
.warm-ab1b li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.banner_8fae {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.banner_8fae 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;
}

.banner_8fae a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.tertiary_d544 { margin: 2rem 0; }
.rough-be19 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.rough-be19 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.header-6bb9 p { margin-bottom: 1rem; line-height: 1.7; }
.header-6bb9 strong { color: var(--text-primary); }
.header-6bb9 ul { list-style: none; padding-left: 0; }
.header-6bb9 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.header-6bb9 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.medium-6dfb { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.dropdown_liquid_3f6a { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.dropdown_liquid_3f6a:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.pagination_111b { font-size: 3rem; margin-bottom: 1rem; }
.dropdown_liquid_3f6a h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.dropdown_liquid_3f6a p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.column_d2a7 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.column_d2a7 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.black_3596 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.active_clean_f911 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.fixed_c535 { text-align: center; }
.accordion_631c { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.fast-55e9 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.row_motion_e0f8 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.video_outer_ddd7 { margin: 2rem 0; }
.gallery_fixed_95ed { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.gallery_fixed_95ed h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.gallery_fixed_95ed p, .gallery_fixed_95ed ul { line-height: 1.7; }
.gallery_fixed_95ed ul { list-style: none; padding-left: 0; }
.gallery_fixed_95ed ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.gallery_fixed_95ed ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.card_0223 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.mask-d3c5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.next-baeb { text-align: center; }
.last_994e { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.short-842e { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.search_next_d615 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.in-1084 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.silver_d116 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.silver_d116:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.silver_d116 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.silver_d116 p, .silver_d116 ul { line-height: 1.7; }
.silver_d116 ul { list-style: none; padding-left: 0; }
.silver_d116 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.silver_d116 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 8dd8 */
.promo-block-n0 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.3;
}
