/* ============================================
   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 */
.smooth_9f93 p,
.tertiary-2b6b,
.box_7d1a,
.shadow_023b,
.chip-black-cfa1,
.advanced-67ab,
.first-63fb,
.hovered_92fb {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.popup-48ea {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.popup-48ea > *,
.gas-c1be,
.smooth_9f93,
.picture-92be {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .popup-48ea {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .popup-48ea {
    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 === */
.title_9fd7 {
  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 */
.title_9fd7.accordion_71a6 {
  box-shadow: var(--shadow-md);
}

.gas-a2a8 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.content-b68e img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.over-0ee3 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.image_9d77 {
  display: none;
}

/* Hide mobile actions on desktop */
.fixed-eb6a {
  display: none;
}

.modal_273d a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.modal_273d a:hover,
.modal_273d a.fn-active-18fd {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.block_complex_37dc {
  margin-left: 1rem;
}

.smooth-d221 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.shadow_8540,
.liquid-a7bf {
  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;
}

.shadow_8540 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.shadow_8540: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;
}

.liquid-a7bf {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.liquid-a7bf: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;
}

.shadow_8540 svg,
.liquid-a7bf svg {
  flex-shrink: 0;
}

.mini_bf35 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.tooltip_9986 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.tooltip_9986::before,
.tooltip_9986::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.tooltip_9986::before {
  top: -7px;
}

.tooltip_9986::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.component_7a5b {
  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 === */
.next-9f27 {
  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);
}

.overlay-out-c816 {
  margin: 0 0 2rem;
  text-align: center;
}

.outer-7be8 {
  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;
}

.outer-7be8:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.accordion_583f {
  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);
}

.accordion_583f strong {
  color: var(--primary-color);
  font-weight: 700;
}

.caption-eac9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature-orange-44d2 {
  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;
}

.feature-orange-44d2:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.smooth-5c33 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.text-active-cf21 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.bronze_5814 {
  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);
}

.bronze_5814 .wide-c2dc {
  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;
}

.bronze_5814 .wide-c2dc svg {
  flex-shrink: 0;
}

.bronze_5814 .outline-dcd7 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.bronze_5814 .outline-dcd7: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);
}

.bronze_5814 .tertiary_b568 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.bronze_5814 .tertiary_b568: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) {
  .next-9f27 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .outer-7be8 {
    max-width: 100%;
  }

  .caption-eac9 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .feature-orange-44d2 {
    padding: 1rem;
  }

  .smooth-5c33 {
    font-size: 1.5rem;
  }

  .text-active-cf21 {
    font-size: 0.75rem;
  }

  .accordion_583f {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .bronze_5814 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .bronze_5814 .wide-c2dc {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .caption-eac9 {
    grid-template-columns: 1fr;
  }
}

.hovered_0413 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.main-c60d {
  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 === */
.tag_complex_7fd2 {
  margin-bottom: 2.5rem;
}

.gold-3099 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.hovered_0413 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.status-a4fd {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bright-5caf {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.photo_bf31 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hidden-f13b {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.footer-5af6 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.header-active-a1d0 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.accordion-4581 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.accordion-4581 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.filter_steel_b63b {
  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);
}

.column-5958 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.hero_5734 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.lite-21df {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.out_bd84 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.pattern-brown-6053 {
  display: grid;
  gap: 1rem;
}

.title_bronze_8d62 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.grid_cold_7e2c {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.search_d53a {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.thick_7a7e {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.badge_1d3c {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.motion_2e58 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.motion_2e58 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.tertiary-2b6b {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.overlay-cool-c8d5 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.status_copper_4354 {
  display: grid;
  gap: 2rem;
}

.warm-21b3 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.bright-5caf {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.status-a4fd {
  flex: 1;
}

.hidden-f13b {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.hidden-f13b a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.basic_1c94 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
}

.footer-5af6 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.large_1d5d {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.large_1d5d span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.disabled-2317 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.disabled-2317 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.clean_69ab {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.clean_69ab strong {
  display: block;
  margin-bottom: 0.75rem;
}

.clean_69ab ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.clean_69ab li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.stale-b0d9 {
  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 === */
.first_25f9 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.static-9848 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.tabs_clean_e192 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.logo-plasma-b78e h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.logo-plasma-b78e ol {
  list-style: none;
  counter-reset: toc-counter;
}

.logo-plasma-b78e ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.logo-plasma-b78e 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;
}

.logo-plasma-b78e ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.logo-plasma-b78e ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.smooth_9f93 {
  padding: 3rem 0 5rem;
}

.picture-92be {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.picture-92be.current-f1b7 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.box_7d1a {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.detail-d94a {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.thick_2911 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.thick_2911 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.bottom-1cc9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.hovered-8f7a {
  text-align: center;
}

.module-a5c5 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hover-9a1e {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.overlay-complex-1e2d {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.advanced-67ab {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.shadow_023b {
  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;
}

.shadow_023b * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.shadow_023b:hover {
  box-shadow: var(--shadow-lg);
}

.shadow_023b.border_lower_0aac {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.shadow_023b h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.shadow_023b ul {
  margin: 1rem 0;
}

.shadow_023b li {
  margin-bottom: 0.75rem;
}

.block-fresh-28b9 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.light_5ed0 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.light_5ed0 a {
  font-weight: 600;
}

/* === Data Tables === */
.fixed-4501 {
  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;
}

.fixed-4501 table {
  width: 100%;
  min-width: 600px;
}

.fixed-4501 thead {
  background-color: var(--primary-color);
  color: white;
}

.fixed-4501 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.fixed-4501 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.fixed-4501 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.fixed-4501 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.info-right-3d99 {
  list-style: none;
  margin: 1.5rem 0;
}

.info-right-3d99 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.info-right-3d99 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.old-d204::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-18fd::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 === */
.popup-purple-acd6 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.center-0904 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.center-0904 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.center-0904 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.center-0904 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.popup-purple-acd6 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.first-63fb {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.first-63fb::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.component_5e23 {
  position: relative;
  margin-bottom: 3rem;
}

.card_active_3f8b {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.card_active_3f8b .form_plasma_9e99 {
  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;
}

.search-543d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.search-543d h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.search-543d ul {
  margin: 1rem 0;
}

.search-543d li {
  margin-bottom: 0.75rem;
}

.heading-basic-94fe {
  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 === */
.avatar-148c {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.avatar-148c h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.header_6041 {
  list-style: none;
  margin: 1.5rem 0;
}

.header_6041 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.header_6041 a {
  font-weight: 600;
}

.tag-short-4bb6 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.hovered_92fb {
  margin: 2.5rem 0;
}

.hard_2865 {
  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;
}

.hard_2865:hover {
  box-shadow: var(--shadow-lg);
}

.hard_2865.thumbnail-pro-d0cf {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.filter-steel-e3f5 {
  flex-shrink: 0;
}

.filter-steel-e3f5 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);
}

.green-daff h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.advanced_ef98,
.notice_95e1,
.article-f93b {
  width: 100%;
  margin: 1.5rem 0;
}

.brown-cfe1 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.brown-cfe1 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.module_fast_6101 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.module_fast_6101 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.backdrop_huge_8186 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.backdrop_huge_8186 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.huge-7a02 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.carousel_4ac5 {
  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;
}

.carousel_4ac5:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.carousel_4ac5.highlight-1272 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.carousel_4ac5 .surface_7da9 {
  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;
}

.carousel_4ac5 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.element_78a0 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.info-focused-556b {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.info-focused-556b label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.progress_adda {
  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 === */
.wide-c2dc {
  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;
}

.outline-dcd7 {
  background-color: var(--primary-color);
  color: white;
}

.outline-dcd7:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.tertiary_b568 {
  background-color: var(--text-secondary);
  color: white;
}

.tertiary_b568:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.thick_a9fc {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.thick_a9fc:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.prev-d2ac {
  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;
}

.prev-d2ac:hover {
  background-color: var(--primary-dark);
}

.narrow-55c7 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.icon_next_162d {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.left-1b34 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.wrapper-8e66 {
  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 === */
.glass_0a24 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.avatar_d144 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.avatar_d144 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.panel_hard_fc8d {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.filter-f46d {
  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;
}

.slow-0eff {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.component-544b {
  list-style: none;
  counter-reset: rank-counter;
}

.component-544b li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.component-544b 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;
}

.breadcrumb-mini-4bd7 {
  list-style: none;
}

.breadcrumb-mini-4bd7 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.out_4149 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.large_7b50 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.large_7b50 .progress_228d {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.large_7b50 .active-d45d {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.widget-action-12b4 {
  margin-top: 3rem;
}

.sidebar-6ba6 {
  width: 100%;
}

.lite-173e {
  background-color: #fef3c7;
}

.search_cold_8795 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.liquid_2c37 {
  margin: 3rem 0;
}

.stone_eab4 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.message_8f3c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.message_8f3c:hover {
  box-shadow: var(--shadow-lg);
}

.message_8f3c.tertiary-3f31 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.iron_b3b7 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.thumbnail_hard_bbad strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.thumbnail_hard_bbad span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.outline_db95 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.message_8f3c blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.footer-orange-f469 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.over_934e {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.widget_stale_b1ae {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.table-left-1a3c {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.footer_under_3817 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.picture-warm-e5e9 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.blue_38d2 {
  max-width: 900px;
  margin: 0 auto;
}

.green_201e {
  margin: 2rem 0;
}

.tag_e00d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.tag_e00d summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.tag_e00d summary::-webkit-details-marker {
  display: none;
}

.tag_e00d summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.preview_brown_35cb {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.tag_e00d[open] .preview_brown_35cb {
  transform: rotate(45deg);
}

.layout_68c4 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.layout_68c4 p:last-child {
  margin-bottom: 0;
}

.chip_old_9c44 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.texture_fd47 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.silver_7707 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.silver_7707 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.silver_7707 .wide-c2dc {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.box_2c82 {
  max-width: 900px;
  margin: 0 auto;
}

.row_solid_0e89 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hover_0372 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.hover_0372.fn-success-18fd {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.first-6a14 {
  font-size: 3rem;
  line-height: 1;
}

.dropdown-bb73 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.short_7e56 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.paragraph-aad1,
.outer_4695 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.paragraph-aad1 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.outer_4695 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.active_67c4,
.label_copper_4daf {
  margin: 1.5rem 0;
}

.active_67c4 li,
.label_copper_4daf li {
  margin-bottom: 1rem;
}

.red-3962 {
  margin: 3rem 0;
}

.grid_7afb {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.grid_7afb h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.grid_7afb ol {
  margin: 1rem 0;
}

.grid_7afb li {
  margin-bottom: 0.75rem;
}

.gallery_hot_4675 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.wrapper-0c59 {
  margin: 2rem 0;
}

.focus-in-3dcc {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.content-fresh-08fd {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.dirty-05ed {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.green-7376 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.mask_8dcb {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.wrapper-eb1a {
  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;
}

.wrapper-eb1a img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.photo_bf31 {
  flex: 1;
}

.photo_bf31 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.secondary-737c {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.tabs_7318 p {
  margin-bottom: 1rem;
}

.fluid_a678 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.footer-rough-e8f7 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.wood_cf39 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.wood_cf39 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.accent_inner_147d h3 {
  margin-bottom: 1.5rem;
}

.tabs_5bfb {
  display: grid;
  gap: 2rem;
}

.stone_e05c {
  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;
}

.stone_e05c img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.stone_e05c h4 {
  margin: 0 0 0.25rem;
}

.stone_e05c p {
  margin: 0;
  font-size: 0.9375rem;
}

.backdrop-f437 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.slider_new_b51c {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.slider_new_b51c h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.slider_new_b51c ul {
  margin: 1.5rem 0;
}

.slider_new_b51c li {
  margin-bottom: 0.75rem;
}

.hot-12b8 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.gallery_94c6 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.disabled-orange-a07e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.form_dac6 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.form_dac6 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.video_fast_73fe {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.video_fast_73fe a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb_60d3 {
  list-style: none;
}

.breadcrumb_60d3 li {
  margin-bottom: 0.75rem;
}

.breadcrumb_60d3 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.breadcrumb_60d3 a:hover {
  color: white;
}

.stale-b0fa {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.video_dim_bb80 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.overlay_2aec {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.highlight_dirty_f4f3 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.rough_263a {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .popup-48ea {
    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;
  }

  .nav_hard_b654 {
    font-size: 1.5rem !important;
  }

  .gold-3099 {
    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 */
  .shadow_023b,
  .chip-black-cfa1,
  .search-543d,
  .green-daff,
  .iron_b3b7,
  .message_8f3c,
  .layout_68c4,
  .accordion_583f,
  .tertiary-2b6b,
  .box_7d1a {
    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 */
  .hovered_0413 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .status-a4fd {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .bright-5caf {
    flex-shrink: 0;
  }

  .photo_bf31 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .hidden-f13b,
  .footer-5af6 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .footer-5af6 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .over-0ee3 {
    display: none;
  }

  /* Show mobile actions */
  .fixed-eb6a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .tiny-2336 {
    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;
  }

  .tiny-2336 svg {
    flex-shrink: 0;
  }

  .tiny-2336 .sidebar-last-2c7c {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .tiny-2336 .hover_eaf2 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .gas_b1f0 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .video_top_b927 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .tiny-2336:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .image_9d77 {
    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;
  }

  .image_9d77.fn-active-18fd {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .image_9d77 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .image_9d77 li:last-child {
    border-bottom: none;
  }

  .image_9d77 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .modal_273d {
    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;
  }

  .modal_273d li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .modal_273d li:last-child {
    border-bottom: none;
  }

  .modal_273d a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .block_complex_37dc {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .smooth-d221 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .shadow_8540,
  .liquid-a7bf {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .shadow_8540 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .liquid-a7bf {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .modal_273d.fn-active-18fd {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mini_bf35 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .title_9fd7 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .gas-a2a8 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .component_7a5b {
    margin-top: 0;
  }

  /* Hero section */
  .component_7a5b {
    padding: 2rem 0 1.5rem;
  }

  .gold-3099 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .tertiary-2b6b {
    font-size: 1rem;
  }

  /* Hero brand image */
  .next-9f27 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .outer-7be8 {
    max-width: 100%;
    border-radius: 8px;
  }

  .caption-eac9 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .feature-orange-44d2 {
    padding: 1rem;
  }

  .smooth-5c33 {
    font-size: 1.5rem;
  }

  .text-active-cf21 {
    font-size: 0.75rem;
  }

  .accordion_583f {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .bronze_5814 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .bronze_5814 .wide-c2dc {
    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 */
  .tabs_clean_e192 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .hard_2865 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .filter-steel-e3f5 {
    margin-bottom: 1rem;
  }

  /* Author */
  .warm-21b3 {
    flex-direction: column;
  }

  .wrapper-eb1a {
    flex-direction: column;
  }

  /* Quotes */
  .iron_b3b7 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .short_7e56 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .green-7376 {
    flex-direction: column;
  }

  .green-7376 .wide-c2dc {
    width: 100%;
  }

  /* Version comparison */
  .huge-7a02 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .glass_0a24 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .disabled-orange-a07e {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .overlay_2aec {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .fixed-4501,
  .notice_95e1,
  .fluid_e9a6,
  .sidebar-6ba6,
  .advanced_ef98,
  .article-f93b {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .fixed-4501 table,
  .notice_95e1 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .progress_adda {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .popup-48ea {
    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;
  }

  .nav_hard_b654 {
    font-size: 1.25rem !important;
  }

  .gold-3099 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .title_9fd7 {
    position: fixed;
  }

  .gas-a2a8 {
    padding: 0.625rem 0;
  }

  .content-b68e img {
    height: 26px;
  }

  .modal_273d {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .image_9d77 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .tiny-2336 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .tiny-2336 svg {
    width: 18px;
    height: 18px;
  }

  .tiny-2336 .sidebar-last-2c7c {
    font-size: 0.7rem;
  }

  .tiny-2336 .hover_eaf2 {
    font-size: 0.65rem;
  }

  .shadow_8540,
  .liquid-a7bf {
    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, .popup-48ea, .gas-c1be, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .next-9f27 {
    padding: 1rem;
  }

  .caption-eac9 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .feature-orange-44d2 {
    padding: 0.875rem;
  }

  .smooth-5c33 {
    font-size: 1.25rem;
  }

  .bronze_5814 .wide-c2dc {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .gold-3099 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .wide-c2dc {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .narrow-55c7 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .hard_2865 {
    padding: 1rem;
  }

  .filter-steel-e3f5 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .shadow_023b,
  .column_rough_b554,
  .avatar_3dc0,
  .content_down_9211 {
    padding: 1rem;
  }
}

@media print {
  .title_9fd7,
  .first_25f9,
  .mini_bf35,
  .wide-c2dc,
  .gallery_94c6 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .popup-48ea {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.element-839a {
  margin-bottom: 3rem;
  text-align: center;
}

.nav_hard_b654 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.photo_e1f2 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.video-plasma-6376,
.tooltip_hard_8bfd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.article-advanced-eb00 {
  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;
}

.article-advanced-eb00:hover {
  transform: translateY(-5px);
}

.article-advanced-eb00 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.article-advanced-eb00 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.chip-29ac {
  margin: 3rem 0;
}

.message_e2a9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.motion_47b6 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.motion_47b6:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.east-9f5a {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.current-0e4c {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.paragraph_basic_62b7 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.gold-c819 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.wide_3b85 {
  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;
}

.wide_3b85:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.wide_3b85.button_smooth_5708 {
  border-left: 4px solid var(--primary-color);
}

.tag-b5c5 {
  flex-shrink: 0;
}

.tag-b5c5 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.banner-a9a4 {
  flex: 1;
}

.banner-a9a4 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.search-4d10 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.mask-dim-76af,
.border-bright-cb1d,
.list-40fd {
  margin-bottom: 1.5rem;
}

.mask-dim-76af h4,
.border-bright-cb1d h4,
.list-40fd h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mask-dim-76af ul,
.border-bright-cb1d ul,
.list-40fd ul {
  list-style: none;
  padding: 0;
}

.mask-dim-76af li,
.border-bright-cb1d li,
.list-40fd li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.mask-dim-76af li:before,
.border-bright-cb1d li:before,
.list-40fd li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.stale_fef5 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.stale_fef5 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;
}

.stale_fef5 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.prev-86f2 { margin: 2rem 0; }
.logo_9e0c { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.logo_9e0c h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.tertiary-64e5 p { margin-bottom: 1rem; line-height: 1.7; }
.tertiary-64e5 strong { color: var(--text-primary); }
.tertiary-64e5 ul { list-style: none; padding-left: 0; }
.tertiary-64e5 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.tertiary-64e5 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.notice-eeba { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.message-left-99cf { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.message-left-99cf:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.search-b657 { font-size: 3rem; margin-bottom: 1rem; }
.message-left-99cf h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.message-left-99cf p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.icon_4d9f { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.icon_4d9f span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.box-north-1a36 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.content_green_2a89 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.border-2d7b { text-align: center; }
.active-fluid-52c8 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.basic_7214 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.box-center-17bc { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.bronze_7a49 { margin: 2rem 0; }
.focus_d367 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.focus_d367 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.focus_d367 p, .focus_d367 ul { line-height: 1.7; }
.focus_d367 ul { list-style: none; padding-left: 0; }
.focus_d367 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.focus_d367 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.grid_ddec { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.box_2b83 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.banner-bottom-2554 { text-align: center; }
.wrapper-light-aafc { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.layout-2813 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.cold-2e12 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.module_cold_44fd { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.pro-f3f4 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.pro-f3f4:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.pro-f3f4 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.pro-f3f4 p, .pro-f3f4 ul { line-height: 1.7; }
.pro-f3f4 ul { list-style: none; padding-left: 0; }
.pro-f3f4 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.pro-f3f4 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 6b04 */
.shadow-element-x2 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.2;
}
