/* ============================================
   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 */
.lower-3194 p,
.sidebar-lite-db3c,
.alert-70ee,
.action_817f,
.info_smooth_2f66,
.carousel-clean-694f,
.easy_e874,
.nav_68f4 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.mini_0769 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.mini_0769 > *,
.glass-d3d6,
.lower-3194,
.logo_5e65 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .mini_0769 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .mini_0769 {
    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 === */
.pressed_a170 {
  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 */
.pressed_a170.focus-cool-3a95 {
  box-shadow: var(--shadow-md);
}

.filter_d390 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.paragraph_copper_ea5a img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.paper_3870 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.sidebar_simple_8b09 {
  display: none;
}

/* Hide mobile actions on desktop */
.current-7666 {
  display: none;
}

.banner-pressed-55a2 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.banner-pressed-55a2 a:hover,
.banner-pressed-55a2 a.fn-active-ca6c {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.row_cold_a450 {
  margin-left: 1rem;
}

.heading_complex_2ef3 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.carousel-f5cc,
.info_large_3421 {
  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;
}

.carousel-f5cc {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.carousel-f5cc: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;
}

.info_large_3421 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.info_large_3421: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;
}

.carousel-f5cc svg,
.info_large_3421 svg {
  flex-shrink: 0;
}

.bottom-57d3 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.block_8ecf {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.block_8ecf::before,
.block_8ecf::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.block_8ecf::before {
  top: -7px;
}

.block_8ecf::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.wide_86c9 {
  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 === */
.alert-hard-3fa4 {
  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);
}

.highlight-68f0 {
  margin: 0 0 2rem;
  text-align: center;
}

.thumbnail-warm-ba7d {
  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;
}

.thumbnail-warm-ba7d:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.short_79dd {
  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);
}

.short_79dd strong {
  color: var(--primary-color);
  font-weight: 700;
}

.rough-5de2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.element-f1cb {
  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;
}

.element-f1cb:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.heading_orange_586c {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.description_black_a7d1 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.purple_d5ba {
  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);
}

.purple_d5ba .active_3b3e {
  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;
}

.purple_d5ba .active_3b3e svg {
  flex-shrink: 0;
}

.purple_d5ba .accent_3801 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.purple_d5ba .accent_3801: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);
}

.purple_d5ba .gradient_black_8735 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.purple_d5ba .gradient_black_8735: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) {
  .alert-hard-3fa4 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .thumbnail-warm-ba7d {
    max-width: 100%;
  }

  .rough-5de2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .element-f1cb {
    padding: 1rem;
  }

  .heading_orange_586c {
    font-size: 1.5rem;
  }

  .description_black_a7d1 {
    font-size: 0.75rem;
  }

  .short_79dd {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .purple_d5ba {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .purple_d5ba .active_3b3e {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .rough-5de2 {
    grid-template-columns: 1fr;
  }
}

.soft-cb1d {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.container-2992 {
  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 === */
.up-c057 {
  margin-bottom: 2.5rem;
}

.tag-555e {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.soft-cb1d {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.steel-a6f8 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.background-8748 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.texture-ef06 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hard-293e {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.mask-pro-70a5 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.link-9faa {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.photo-fluid-c6a9 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.photo-fluid-c6a9 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.feature_short_d2ca {
  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);
}

.advanced-02fe {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.filter-a4be {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.last_a142 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.progress_0e7d {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.shadow_red_ac33 {
  display: grid;
  gap: 1rem;
}

.complex-8962 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.chip-hovered-4092 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.notification-dirty-e256 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.short-452d {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.action_d3f3 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.main_5d86 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.main_5d86 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.sidebar-lite-db3c {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.inner_920a {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.thumbnail-soft-baff {
  display: grid;
  gap: 2rem;
}

.accordion-56e9 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.background-8748 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.steel-a6f8 {
  flex: 1;
}

.hard-293e {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.hard-293e a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.link-south-5cdc {
  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;
}

.mask-pro-70a5 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.left_8ac8 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.left_8ac8 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.lite-ac23 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.lite-ac23 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.content_b197 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.content_b197 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.content_b197 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.content_b197 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.shade_current_5707 {
  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 === */
.sort_30b0 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.gradient-tall-95d2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.liquid_3453 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.smooth_fd3e h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.smooth_fd3e ol {
  list-style: none;
  counter-reset: toc-counter;
}

.smooth_fd3e ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.smooth_fd3e 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;
}

.smooth_fd3e ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.smooth_fd3e ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.lower-3194 {
  padding: 3rem 0 5rem;
}

.logo_5e65 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.logo_5e65.surface_f693 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.alert-70ee {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.item_bd7e {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.in-c189 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.in-c189 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.text-5eac {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.backdrop-61cd {
  text-align: center;
}

.video-bronze-f3e0 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.inner-2f70 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.huge_6537 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.carousel-clean-694f {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.action_817f {
  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;
}

.action_817f * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.action_817f:hover {
  box-shadow: var(--shadow-lg);
}

.action_817f.texture-3fb5 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.action_817f h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.action_817f ul {
  margin: 1rem 0;
}

.action_817f li {
  margin-bottom: 0.75rem;
}

.hidden_east_dde2 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.texture-basic-7a0d {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.texture-basic-7a0d a {
  font-weight: 600;
}

/* === Data Tables === */
.footer_static_551e {
  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;
}

.footer_static_551e table {
  width: 100%;
  min-width: 600px;
}

.footer_static_551e thead {
  background-color: var(--primary-color);
  color: white;
}

.footer_static_551e th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.footer_static_551e td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.footer_static_551e tbody tr:hover {
  background-color: var(--bg-secondary);
}

.footer_static_551e tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.detail_c481 {
  list-style: none;
  margin: 1.5rem 0;
}

.detail_c481 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.detail_c481 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.component-under-ba90::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-ca6c::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 === */
.dim_865c {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.content_up_6f3d {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.content_up_6f3d img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.content_up_6f3d strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.content_up_6f3d span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.dim_865c blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.easy_e874 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.easy_e874::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.gas_a5f0 {
  position: relative;
  margin-bottom: 3rem;
}

.right-1e0d {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.right-1e0d .active-3bbd {
  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;
}

.hard-02b2 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.hard-02b2 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.hard-02b2 ul {
  margin: 1rem 0;
}

.hard-02b2 li {
  margin-bottom: 0.75rem;
}

.row-cfe6 {
  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 === */
.main-in-888d {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.main-in-888d h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.preview_paper_bb47 {
  list-style: none;
  margin: 1.5rem 0;
}

.preview_paper_bb47 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.preview_paper_bb47 a {
  font-weight: 600;
}

.message-cold-c9e3 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.nav_68f4 {
  margin: 2.5rem 0;
}

.status_last_eff2 {
  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;
}

.status_last_eff2:hover {
  box-shadow: var(--shadow-lg);
}

.status_last_eff2.active_bronze_cdae {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.texture_brown_ef96 {
  flex-shrink: 0;
}

.texture_brown_ef96 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);
}

.heading-f590 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.alert_static_3a23,
.solid_9cfa,
.image_b307 {
  width: 100%;
  margin: 1.5rem 0;
}

.sort-4aa6 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.sort-4aa6 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.grid_fb62 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.grid_fb62 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.left-58c4 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.left-58c4 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.picture-hard-21ae {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.icon_old_d67b {
  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;
}

.icon_old_d67b:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.icon_old_d67b.active_111f {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.icon_old_d67b .plasma-4c22 {
  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;
}

.icon_old_d67b h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.notification_focused_90f0 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.carousel-dirty-7bef {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.carousel-dirty-7bef label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.purple-8cab {
  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 === */
.active_3b3e {
  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;
}

.accent_3801 {
  background-color: var(--primary-color);
  color: white;
}

.accent_3801:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.gradient_black_8735 {
  background-color: var(--text-secondary);
  color: white;
}

.gradient_black_8735:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.over-0472 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.over-0472:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.dirty-4a9d {
  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;
}

.dirty-4a9d:hover {
  background-color: var(--primary-dark);
}

.fast-279e {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.orange_3144 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.notice_small_640a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.active_1249 {
  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 === */
.table_huge_2ec7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.logo_c77f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.logo_c77f h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.current_8a23 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.outline_12f0 {
  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;
}

.thick_9442 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.accordion-over-1dee {
  list-style: none;
  counter-reset: rank-counter;
}

.accordion-over-1dee li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.accordion-over-1dee 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;
}

.steel_7f7e {
  list-style: none;
}

.steel_7f7e li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.tiny_8495 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.content_dc2e {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.content_dc2e .grid_8863 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.content_dc2e .description_1abc {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.progress_small_50b7 {
  margin-top: 3rem;
}

.outline-1572 {
  width: 100%;
}

.pressed_8690 {
  background-color: #fef3c7;
}

.backdrop-left-65ec {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.surface_7d19 {
  margin: 3rem 0;
}

.breadcrumb_124c {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.layout-1ad1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.layout-1ad1:hover {
  box-shadow: var(--shadow-lg);
}

.layout-1ad1.primary-active-6ec2 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.soft-180c {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.layout_146a strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.layout_146a span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.north_489e {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.layout-1ad1 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.progress-5141 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.breadcrumb-complex-83ff {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.iron-1112 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.alert-b2cb {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.pattern-6cf5 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.panel-f9b8 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.status_f9b2 {
  max-width: 900px;
  margin: 0 auto;
}

.row_thick_ea5a {
  margin: 2rem 0;
}

.blue-e888 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.blue-e888 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.blue-e888 summary::-webkit-details-marker {
  display: none;
}

.blue-e888 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.chip_glass_b9ff {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.blue-e888[open] .chip_glass_b9ff {
  transform: rotate(45deg);
}

.element-590d {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.element-590d p:last-child {
  margin-bottom: 0;
}

.purple-25cd {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.out-01db {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.input-lower-bff9 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.input-lower-bff9 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.input-lower-bff9 .active_3b3e {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.blue-270f {
  max-width: 900px;
  margin: 0 auto;
}

.aside_34dd {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.column_hot_cf5a {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.column_hot_cf5a.fn-success-ca6c {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.red_db4e {
  font-size: 3rem;
  line-height: 1;
}

.liquid-f077 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.fluid-cb6f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.paragraph-center-3bfd,
.filter_013d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.paragraph-center-3bfd h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.filter_013d h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.white_ea1c,
.card-337b {
  margin: 1.5rem 0;
}

.white_ea1c li,
.card-337b li {
  margin-bottom: 1rem;
}

.thumbnail_middle_bfee {
  margin: 3rem 0;
}

.center-6056 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.center-6056 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.center-6056 ol {
  margin: 1rem 0;
}

.center-6056 li {
  margin-bottom: 0.75rem;
}

.backdrop_7cf8 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.surface_155e {
  margin: 2rem 0;
}

.first_580c {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.right_eb9c {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.header-97e6 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.heading-first-a3da {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.status_9a2f {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.search_ad34 {
  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;
}

.search_ad34 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.texture-ef06 {
  flex: 1;
}

.texture-ef06 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.progress-pro-e4ea {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.prev_7727 p {
  margin-bottom: 1rem;
}

.last_b3f5 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.hard_2c3f {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.sidebar-lower-5fa0 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.sidebar-lower-5fa0 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.heading-9009 h3 {
  margin-bottom: 1.5rem;
}

.paragraph_last_0e20 {
  display: grid;
  gap: 2rem;
}

.avatar_fc71 {
  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;
}

.avatar_fc71 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.avatar_fc71 h4 {
  margin: 0 0 0.25rem;
}

.avatar_fc71 p {
  margin: 0;
  font-size: 0.9375rem;
}

.backdrop_first_d076 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.icon_9273 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.icon_9273 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.icon_9273 ul {
  margin: 1.5rem 0;
}

.icon_9273 li {
  margin-bottom: 0.75rem;
}

.dark_52c7 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.footer_brown_f0ef {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.basic_a956 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.pressed_516d h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.pressed_516d p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.module_83f9 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.module_83f9 a {
  color: rgba(255, 255, 255, 0.8);
}

.thick_686e {
  list-style: none;
}

.thick_686e li {
  margin-bottom: 0.75rem;
}

.thick_686e a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.thick_686e a:hover {
  color: white;
}

.chip_top_c6c4 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.notification_e6f4 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.row-5d32 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.input-blue-f48f {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.iron-42e3 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .mini_0769 {
    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;
  }

  .notification_3973 {
    font-size: 1.5rem !important;
  }

  .tag-555e {
    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 */
  .action_817f,
  .info_smooth_2f66,
  .hard-02b2,
  .heading-f590,
  .soft-180c,
  .layout-1ad1,
  .element-590d,
  .short_79dd,
  .sidebar-lite-db3c,
  .alert-70ee {
    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 */
  .soft-cb1d {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .steel-a6f8 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .background-8748 {
    flex-shrink: 0;
  }

  .texture-ef06 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .hard-293e,
  .mask-pro-70a5 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .mask-pro-70a5 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .paper_3870 {
    display: none;
  }

  /* Show mobile actions */
  .current-7666 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .column_hovered_d2a3 {
    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;
  }

  .column_hovered_d2a3 svg {
    flex-shrink: 0;
  }

  .column_hovered_d2a3 .in-f4e4 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .column_hovered_d2a3 .slider_d435 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .status-east-0f4d {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .dynamic_d521 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .column_hovered_d2a3:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .sidebar_simple_8b09 {
    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;
  }

  .sidebar_simple_8b09.fn-active-ca6c {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .sidebar_simple_8b09 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .sidebar_simple_8b09 li:last-child {
    border-bottom: none;
  }

  .sidebar_simple_8b09 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .banner-pressed-55a2 {
    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;
  }

  .banner-pressed-55a2 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .banner-pressed-55a2 li:last-child {
    border-bottom: none;
  }

  .banner-pressed-55a2 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .row_cold_a450 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .heading_complex_2ef3 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .carousel-f5cc,
  .info_large_3421 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .carousel-f5cc {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .info_large_3421 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .banner-pressed-55a2.fn-active-ca6c {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .bottom-57d3 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .pressed_a170 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .filter_d390 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .wide_86c9 {
    margin-top: 0;
  }

  /* Hero section */
  .wide_86c9 {
    padding: 2rem 0 1.5rem;
  }

  .tag-555e {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .sidebar-lite-db3c {
    font-size: 1rem;
  }

  /* Hero brand image */
  .alert-hard-3fa4 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .thumbnail-warm-ba7d {
    max-width: 100%;
    border-radius: 8px;
  }

  .rough-5de2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .element-f1cb {
    padding: 1rem;
  }

  .heading_orange_586c {
    font-size: 1.5rem;
  }

  .description_black_a7d1 {
    font-size: 0.75rem;
  }

  .short_79dd {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .purple_d5ba {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .purple_d5ba .active_3b3e {
    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 */
  .liquid_3453 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .status_last_eff2 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .texture_brown_ef96 {
    margin-bottom: 1rem;
  }

  /* Author */
  .accordion-56e9 {
    flex-direction: column;
  }

  .search_ad34 {
    flex-direction: column;
  }

  /* Quotes */
  .soft-180c {
    flex-direction: column;
  }

  /* Pros/Cons */
  .fluid-cb6f {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .heading-first-a3da {
    flex-direction: column;
  }

  .heading-first-a3da .active_3b3e {
    width: 100%;
  }

  /* Version comparison */
  .picture-hard-21ae {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .table_huge_2ec7 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .basic_a956 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .row-5d32 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .footer_static_551e,
  .solid_9cfa,
  .preview-0093,
  .outline-1572,
  .alert_static_3a23,
  .image_b307 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .footer_static_551e table,
  .solid_9cfa table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .purple-8cab {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .mini_0769 {
    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;
  }

  .notification_3973 {
    font-size: 1.25rem !important;
  }

  .tag-555e {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .pressed_a170 {
    position: fixed;
  }

  .filter_d390 {
    padding: 0.625rem 0;
  }

  .paragraph_copper_ea5a img {
    height: 26px;
  }

  .banner-pressed-55a2 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .sidebar_simple_8b09 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .column_hovered_d2a3 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .column_hovered_d2a3 svg {
    width: 18px;
    height: 18px;
  }

  .column_hovered_d2a3 .in-f4e4 {
    font-size: 0.7rem;
  }

  .column_hovered_d2a3 .slider_d435 {
    font-size: 0.65rem;
  }

  .carousel-f5cc,
  .info_large_3421 {
    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, .mini_0769, .glass-d3d6, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .alert-hard-3fa4 {
    padding: 1rem;
  }

  .rough-5de2 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .element-f1cb {
    padding: 0.875rem;
  }

  .heading_orange_586c {
    font-size: 1.25rem;
  }

  .purple_d5ba .active_3b3e {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .tag-555e {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .active_3b3e {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .fast-279e {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .status_last_eff2 {
    padding: 1rem;
  }

  .texture_brown_ef96 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .action_817f,
  .left_6997,
  .progress_upper_4f0b,
  .title_complex_abe8 {
    padding: 1rem;
  }
}

@media print {
  .pressed_a170,
  .sort_30b0,
  .bottom-57d3,
  .active_3b3e,
  .footer_brown_f0ef {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .mini_0769 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.image_bccc {
  margin-bottom: 3rem;
  text-align: center;
}

.notification_3973 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.fresh_6eec {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.row_iron_1ed8,
.overlay_8b8d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.pattern_47d5 {
  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;
}

.pattern_47d5:hover {
  transform: translateY(-5px);
}

.pattern_47d5 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.pattern_47d5 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.detail_d339 {
  margin: 3rem 0;
}

.icon-18d2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.plasma-e0ad {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.plasma-e0ad:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.dark_307e {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pagination-silver-a09c {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.basic_a884 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.static-bba7 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.outline-brown-9f57 {
  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;
}

.outline-brown-9f57:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.outline-brown-9f57.button-white-9039 {
  border-left: 4px solid var(--primary-color);
}

.active-clean-ecbf {
  flex-shrink: 0;
}

.active-clean-ecbf svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.down-bcdf {
  flex: 1;
}

.down-bcdf h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.cool-615e {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.tooltip-hard-d2b4,
.north-1d20,
.narrow_15ee {
  margin-bottom: 1.5rem;
}

.tooltip-hard-d2b4 h4,
.north-1d20 h4,
.narrow_15ee h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tooltip-hard-d2b4 ul,
.north-1d20 ul,
.narrow_15ee ul {
  list-style: none;
  padding: 0;
}

.tooltip-hard-d2b4 li,
.north-1d20 li,
.narrow_15ee li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.tooltip-hard-d2b4 li:before,
.north-1d20 li:before,
.narrow_15ee li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.sidebar_e198 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.sidebar_e198 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;
}

.sidebar_e198 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.logo_north_5611 { margin: 2rem 0; }
.section_short_8a01 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.section_short_8a01 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.white_c54c p { margin-bottom: 1rem; line-height: 1.7; }
.white_c54c strong { color: var(--text-primary); }
.white_c54c ul { list-style: none; padding-left: 0; }
.white_c54c ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.white_c54c ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.detail-a4c8 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.frame-9c5f { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.frame-9c5f:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.thick-4b19 { font-size: 3rem; margin-bottom: 1rem; }
.frame-9c5f h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.frame-9c5f p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.dim_ff6e { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.dim_ff6e span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.alert-complex-2f96 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.panel-wood-249e { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.solid-660f { text-align: center; }
.badge_cool_b8ce { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.item-5676 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.search_f601 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.new_86bb { margin: 2rem 0; }
.rough_14e8 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.rough_14e8 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.rough_14e8 p, .rough_14e8 ul { line-height: 1.7; }
.rough_14e8 ul { list-style: none; padding-left: 0; }
.rough_14e8 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.rough_14e8 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.message_south_c5c5 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.backdrop-7e08 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.up_db1a { text-align: center; }
.copper_fb58 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.solid-1cc6 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.main-1472 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.short_48ee { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.surface-bb42 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.surface-bb42:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.surface-bb42 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.surface-bb42 p, .surface-bb42 ul { line-height: 1.7; }
.surface-bb42 ul { list-style: none; padding-left: 0; }
.surface-bb42 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.surface-bb42 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 1265 */
.widget-item-t5 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.0;
}
