/* ============================================
   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 */
.active-f2a7 p,
.input_gold_410d,
.shade-hard-ce13,
.middle-920c,
.module-53b3,
.right_fa16,
.primary_e818,
.logo-7ae9 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.component-28a0 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.component-28a0 > *,
.active_outer_00f6,
.active-f2a7,
.backdrop_glass_6d0a {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .component-28a0 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .component-28a0 {
    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 === */
.slider_555c {
  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 */
.slider_555c.accordion-9741 {
  box-shadow: var(--shadow-md);
}

.preview-3dd0 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.heading_warm_674d img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.shade_d109 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.button_8d85 {
  display: none;
}

/* Hide mobile actions on desktop */
.tall-d6aa {
  display: none;
}

.detail-66f4 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.detail-66f4 a:hover,
.detail-66f4 a.fn-active-6105 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.warm_3068 {
  margin-left: 1rem;
}

.caption-huge-44ee {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.paper-53e8,
.hover-paper-1a1b {
  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;
}

.paper-53e8 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.paper-53e8: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;
}

.hover-paper-1a1b {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.hover-paper-1a1b: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;
}

.paper-53e8 svg,
.hover-paper-1a1b svg {
  flex-shrink: 0;
}

.hard-c195 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.prev-6382 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.prev-6382::before,
.prev-6382::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.prev-6382::before {
  top: -7px;
}

.prev-6382::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.status-hard-2854 {
  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 === */
.paragraph-hovered-659b {
  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);
}

.over_39e8 {
  margin: 0 0 2rem;
  text-align: center;
}

.chip_0bd3 {
  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;
}

.chip_0bd3:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.surface_9158 {
  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);
}

.surface_9158 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.focus_7380 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.message-tall-12d2 {
  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;
}

.message-tall-12d2:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.description_7891 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.primary_527c {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.preview-purple-5da8 {
  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);
}

.preview-purple-5da8 .pro-a56f {
  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;
}

.preview-purple-5da8 .pro-a56f svg {
  flex-shrink: 0;
}

.preview-purple-5da8 .row-a118 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.preview-purple-5da8 .row-a118: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);
}

.preview-purple-5da8 .sidebar_9df3 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.preview-purple-5da8 .sidebar_9df3: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) {
  .paragraph-hovered-659b {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .chip_0bd3 {
    max-width: 100%;
  }

  .focus_7380 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .message-tall-12d2 {
    padding: 1rem;
  }

  .description_7891 {
    font-size: 1.5rem;
  }

  .primary_527c {
    font-size: 0.75rem;
  }

  .surface_9158 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .preview-purple-5da8 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .preview-purple-5da8 .pro-a56f {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .focus_7380 {
    grid-template-columns: 1fr;
  }
}

.green_d2d1 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.pattern-plasma-c25d {
  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 === */
.gallery_fixed_a6af {
  margin-bottom: 2.5rem;
}

.preview_1bd5 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.green_d2d1 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.video_tiny_f239 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.last-b087 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.overlay-yellow-2e82 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.border_plasma_b17d {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.east_d599 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.shadow-brown-cd0a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.slider_solid_ad43 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.slider_solid_ad43 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.west_8687 {
  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);
}

.wrapper_b481 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.logo_257e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.feature_1eac {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.fluid_0a03 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.detail-cool-3861 {
  display: grid;
  gap: 1rem;
}

.slow-6be4 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.lower_6dc3 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.slider_2bb7 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.notification-middle-1df7 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.tooltip-active-43c3 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.secondary_hot_3c05 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.secondary_hot_3c05 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.input_gold_410d {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.header_f635 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.photo-5801 {
  display: grid;
  gap: 2rem;
}

.message-wide-5e40 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.last-b087 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.video_tiny_f239 {
  flex: 1;
}

.border_plasma_b17d {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.border_plasma_b17d a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.section_fast_88d7 {
  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;
}

.east_d599 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.under_e2d0 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.under_e2d0 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.gradient-fccd {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.gradient-fccd a {
  font-size: 0.875rem;
  font-weight: 500;
}

.panel-a3f9 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.panel-a3f9 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.panel-a3f9 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.panel-a3f9 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.tag-outer-742b {
  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 === */
.iron_9c08 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.under-32a9 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.white-363b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.fluid_a644 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.fluid_a644 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.fluid_a644 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.fluid_a644 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;
}

.fluid_a644 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.fluid_a644 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.active-f2a7 {
  padding: 3rem 0 5rem;
}

.backdrop_glass_6d0a {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.backdrop_glass_6d0a.filter_orange_ac8f {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.shade-hard-ce13 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.section_hot_045b {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.current_b5aa {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.current_b5aa h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.fast-cbc4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-brown-0c51 {
  text-align: center;
}

.detail-ce09 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.soft_ecea {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.avatar-cold-9489 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.right_fa16 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.middle-920c {
  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;
}

.middle-920c * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.middle-920c:hover {
  box-shadow: var(--shadow-lg);
}

.middle-920c.bright_c7bb {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.middle-920c h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.middle-920c ul {
  margin: 1rem 0;
}

.middle-920c li {
  margin-bottom: 0.75rem;
}

.message_6abc {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.tabs-3d50 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.tabs-3d50 a {
  font-weight: 600;
}

/* === Data Tables === */
.gallery_stale_04be {
  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;
}

.gallery_stale_04be table {
  width: 100%;
  min-width: 600px;
}

.gallery_stale_04be thead {
  background-color: var(--primary-color);
  color: white;
}

.gallery_stale_04be th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.gallery_stale_04be td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.gallery_stale_04be tbody tr:hover {
  background-color: var(--bg-secondary);
}

.gallery_stale_04be tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.footer_3fa7 {
  list-style: none;
  margin: 1.5rem 0;
}

.footer_3fa7 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.footer_3fa7 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.container_clean_60e0::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-6105::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 === */
.white-f469 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.tertiary-plasma-6489 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.tertiary-plasma-6489 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.tertiary-plasma-6489 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.tertiary-plasma-6489 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.white-f469 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.primary_e818 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.primary_e818::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.grid-south-c47b {
  position: relative;
  margin-bottom: 3rem;
}

.outer_f3e5 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.outer_f3e5 .secondary-mini-bf17 {
  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;
}

.gradient-6483 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.gradient-6483 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.gradient-6483 ul {
  margin: 1rem 0;
}

.gradient-6483 li {
  margin-bottom: 0.75rem;
}

.tertiary_prev_f5b3 {
  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 === */
.media_light_1b54 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.media_light_1b54 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.basic-cda0 {
  list-style: none;
  margin: 1.5rem 0;
}

.basic-cda0 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.basic-cda0 a {
  font-weight: 600;
}

.carousel-small-564e {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.logo-7ae9 {
  margin: 2.5rem 0;
}

.smooth_c18a {
  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;
}

.smooth_c18a:hover {
  box-shadow: var(--shadow-lg);
}

.smooth_c18a.fixed-e8f1 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.overlay-plasma-9634 {
  flex-shrink: 0;
}

.overlay-plasma-9634 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);
}

.notification-upper-7215 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.secondary-3ce4,
.thick-db47,
.left_2de3 {
  width: 100%;
  margin: 1.5rem 0;
}

.row_b755 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.row_b755 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.item_active_5cd8 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.item_active_5cd8 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.block-7694 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.block-7694 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.nav-in-1525 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.heading_024a {
  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;
}

.heading_024a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.heading_024a.hidden-d767 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.heading_024a .full_7928 {
  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;
}

.heading_024a h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.element-blue-5a30 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.info_purple_06b3 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.info_purple_06b3 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.stone-87d9 {
  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 === */
.pro-a56f {
  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;
}

.row-a118 {
  background-color: var(--primary-color);
  color: white;
}

.row-a118:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.sidebar_9df3 {
  background-color: var(--text-secondary);
  color: white;
}

.sidebar_9df3:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.popup_rough_b090 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.popup_rough_b090:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.carousel-ccec {
  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;
}

.carousel-ccec:hover {
  background-color: var(--primary-dark);
}

.summary-middle-9bcd {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.active_e937 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.hover_motion_5538 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.cold_29e8 {
  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 === */
.basic-37e8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.input-dark-4210 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.input-dark-4210 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.highlight-bottom-4505 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.silver_0438 {
  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;
}

.avatar-bronze-4dab {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.north_b83c {
  list-style: none;
  counter-reset: rank-counter;
}

.north_b83c li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.north_b83c 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;
}

.gradient_4613 {
  list-style: none;
}

.gradient_4613 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.progress_tiny_932d {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.small-ea85 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.small-ea85 .status_yellow_3211 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.small-ea85 .surface_lower_771e {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.text-4ace {
  margin-top: 3rem;
}

.backdrop-6319 {
  width: 100%;
}

.hidden_4e3a {
  background-color: #fef3c7;
}

.frame-b80c {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.widget_prev_18bc {
  margin: 3rem 0;
}

.tooltip_705f {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.highlight_purple_8d17 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.highlight_purple_8d17:hover {
  box-shadow: var(--shadow-lg);
}

.highlight_purple_8d17.section-3deb {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.section_center_7554 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.column-884f strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.column-884f span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.slider-right-8b40 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.highlight_purple_8d17 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.dark_1835 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.photo_dim_3592 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.lower_eecd {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.purple-9e36 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.next_012f {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.pink-8719 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.frame_rough_7df5 {
  max-width: 900px;
  margin: 0 auto;
}

.row-upper-9d5c {
  margin: 2rem 0;
}

.text-f8bf {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.text-f8bf summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.text-f8bf summary::-webkit-details-marker {
  display: none;
}

.text-f8bf summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.caption_8346 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.text-f8bf[open] .caption_8346 {
  transform: rotate(45deg);
}

.pressed_f862 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.pressed_f862 p:last-child {
  margin-bottom: 0;
}

.form-79ad {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.surface-top-3a22 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.shadow-6cd7 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.shadow-6cd7 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.shadow-6cd7 .pro-a56f {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.focused-e5c6 {
  max-width: 900px;
  margin: 0 auto;
}

.east_21d2 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.text-down-5e36 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.text-down-5e36.fn-success-6105 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.shade-center-9f54 {
  font-size: 3rem;
  line-height: 1;
}

.caption-fb1d h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.info_black_7bc3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.button-e466,
.media-27ed {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.button-e466 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.media-27ed h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.logo-e88e,
.banner_static_8caa {
  margin: 1.5rem 0;
}

.logo-e88e li,
.banner_static_8caa li {
  margin-bottom: 1rem;
}

.element-up-dba1 {
  margin: 3rem 0;
}

.chip-purple-98c6 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.chip-purple-98c6 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.chip-purple-98c6 ol {
  margin: 1rem 0;
}

.chip-purple-98c6 li {
  margin-bottom: 0.75rem;
}

.outline_hot_832a {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.tabs_brown_c09e {
  margin: 2rem 0;
}

.avatar_dd1b {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.middle-c49e {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.article_4ed2 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.green-8908 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.notice-next-dcf5 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.pressed_854d {
  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;
}

.pressed_854d img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.overlay-yellow-2e82 {
  flex: 1;
}

.overlay-yellow-2e82 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.pattern-cd56 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.sidebar-1ca5 p {
  margin-bottom: 1rem;
}

.upper_dbd4 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.stone_e4eb {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.iron_2f28 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.iron_2f28 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.shade_b506 h3 {
  margin-bottom: 1.5rem;
}

.block-basic-a80f {
  display: grid;
  gap: 2rem;
}

.secondary_hard_010b {
  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;
}

.secondary_hard_010b img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.secondary_hard_010b h4 {
  margin: 0 0 0.25rem;
}

.secondary_hard_010b p {
  margin: 0;
  font-size: 0.9375rem;
}

.cold-abdf {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.grid-f90f {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.grid-f90f h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.grid-f90f ul {
  margin: 1.5rem 0;
}

.grid-f90f li {
  margin-bottom: 0.75rem;
}

.east-8c36 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.prev-6bc3 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.box_ca54 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.modal_wood_d7c3 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.modal_wood_d7c3 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.tertiary_dirty_bdaa {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.tertiary_dirty_bdaa a {
  color: rgba(255, 255, 255, 0.8);
}

.cool-9ecd {
  list-style: none;
}

.cool-9ecd li {
  margin-bottom: 0.75rem;
}

.cool-9ecd a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.cool-9ecd a:hover {
  color: white;
}

.red-c834 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.filter-6f64 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.nav_4f63 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.input_green_b330 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.notification_pro_6574 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .component-28a0 {
    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;
  }

  .box-red-4bfe {
    font-size: 1.5rem !important;
  }

  .preview_1bd5 {
    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 */
  .middle-920c,
  .module-53b3,
  .gradient-6483,
  .notification-upper-7215,
  .section_center_7554,
  .highlight_purple_8d17,
  .pressed_f862,
  .surface_9158,
  .input_gold_410d,
  .shade-hard-ce13 {
    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 */
  .green_d2d1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .video_tiny_f239 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .last-b087 {
    flex-shrink: 0;
  }

  .overlay-yellow-2e82 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .border_plasma_b17d,
  .east_d599 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .east_d599 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .shade_d109 {
    display: none;
  }

  /* Show mobile actions */
  .tall-d6aa {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .liquid-360a {
    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;
  }

  .liquid-360a svg {
    flex-shrink: 0;
  }

  .liquid-360a .plasma_67f2 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .liquid-360a .progress_2055 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .feature-aed8 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .video_inner_db7d {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .liquid-360a:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .button_8d85 {
    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;
  }

  .button_8d85.fn-active-6105 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .button_8d85 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .button_8d85 li:last-child {
    border-bottom: none;
  }

  .button_8d85 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .detail-66f4 {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background-color: var(--bg-primary);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-height: calc(100vh - 65px);
    overflow-y: auto;
    gap: 0;
  }

  .detail-66f4 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .detail-66f4 li:last-child {
    border-bottom: none;
  }

  .detail-66f4 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .warm_3068 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .caption-huge-44ee {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .paper-53e8,
  .hover-paper-1a1b {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .paper-53e8 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .hover-paper-1a1b {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .detail-66f4.fn-active-6105 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hard-c195 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .slider_555c {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .preview-3dd0 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .status-hard-2854 {
    margin-top: 0;
  }

  /* Hero section */
  .status-hard-2854 {
    padding: 2rem 0 1.5rem;
  }

  .preview_1bd5 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .input_gold_410d {
    font-size: 1rem;
  }

  /* Hero brand image */
  .paragraph-hovered-659b {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .chip_0bd3 {
    max-width: 100%;
    border-radius: 8px;
  }

  .focus_7380 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .message-tall-12d2 {
    padding: 1rem;
  }

  .description_7891 {
    font-size: 1.5rem;
  }

  .primary_527c {
    font-size: 0.75rem;
  }

  .surface_9158 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .preview-purple-5da8 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .preview-purple-5da8 .pro-a56f {
    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 */
  .white-363b {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .smooth_c18a {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .overlay-plasma-9634 {
    margin-bottom: 1rem;
  }

  /* Author */
  .message-wide-5e40 {
    flex-direction: column;
  }

  .pressed_854d {
    flex-direction: column;
  }

  /* Quotes */
  .section_center_7554 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .info_black_7bc3 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .green-8908 {
    flex-direction: column;
  }

  .green-8908 .pro-a56f {
    width: 100%;
  }

  /* Version comparison */
  .nav-in-1525 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .basic-37e8 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .box_ca54 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nav_4f63 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .gallery_stale_04be,
  .thick-db47,
  .footer-next-3f21,
  .backdrop-6319,
  .secondary-3ce4,
  .left_2de3 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .gallery_stale_04be table,
  .thick-db47 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .stone-87d9 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .component-28a0 {
    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;
  }

  .box-red-4bfe {
    font-size: 1.25rem !important;
  }

  .preview_1bd5 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .slider_555c {
    position: fixed;
  }

  .preview-3dd0 {
    padding: 0.625rem 0;
  }

  .heading_warm_674d img {
    height: 26px;
  }

  .detail-66f4 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .button_8d85 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .liquid-360a {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .liquid-360a svg {
    width: 18px;
    height: 18px;
  }

  .liquid-360a .plasma_67f2 {
    font-size: 0.7rem;
  }

  .liquid-360a .progress_2055 {
    font-size: 0.65rem;
  }

  .paper-53e8,
  .hover-paper-1a1b {
    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, .component-28a0, .active_outer_00f6, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .paragraph-hovered-659b {
    padding: 1rem;
  }

  .focus_7380 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .message-tall-12d2 {
    padding: 0.875rem;
  }

  .description_7891 {
    font-size: 1.25rem;
  }

  .preview-purple-5da8 .pro-a56f {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .preview_1bd5 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .pro-a56f {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .summary-middle-9bcd {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .smooth_c18a {
    padding: 1rem;
  }

  .overlay-plasma-9634 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .middle-920c,
  .widget_focused_68d8,
  .highlight-west-27da,
  .purple-d73d {
    padding: 1rem;
  }
}

@media print {
  .slider_555c,
  .iron_9c08,
  .hard-c195,
  .pro-a56f,
  .prev-6bc3 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .component-28a0 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.accent_basic_a6eb {
  margin-bottom: 3rem;
  text-align: center;
}

.box-red-4bfe {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.column-down-8ade {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.fast-7d8f,
.badge-bac3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.selected-4128 {
  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;
}

.selected-4128:hover {
  transform: translateY(-5px);
}

.selected-4128 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.selected-4128 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.paper_c4cb {
  margin: 3rem 0;
}

.nav-narrow-9c46 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero_cool_49f2 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.hero_cool_49f2:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.pressed-4f9d {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pattern_4845 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.hero-pink-95f3 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.complex-66c6 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.column-de00 {
  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;
}

.column-de00:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.column-de00.copper-4127 {
  border-left: 4px solid var(--primary-color);
}

.bottom_186a {
  flex-shrink: 0;
}

.bottom_186a svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.liquid_9116 {
  flex: 1;
}

.liquid_9116 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.nav_wide_5d42 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.summary-cool-f10e,
.silver_a09c,
.dropdown_stale_db75 {
  margin-bottom: 1.5rem;
}

.summary-cool-f10e h4,
.silver_a09c h4,
.dropdown_stale_db75 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.summary-cool-f10e ul,
.silver_a09c ul,
.dropdown_stale_db75 ul {
  list-style: none;
  padding: 0;
}

.summary-cool-f10e li,
.silver_a09c li,
.dropdown_stale_db75 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.summary-cool-f10e li:before,
.silver_a09c li:before,
.dropdown_stale_db75 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.paragraph-163a {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.paragraph-163a 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;
}

.paragraph-163a a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.card-first-6a23 { margin: 2rem 0; }
.link_d8d1 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.link_d8d1 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.menu-east-9f7c p { margin-bottom: 1rem; line-height: 1.7; }
.menu-east-9f7c strong { color: var(--text-primary); }
.menu-east-9f7c ul { list-style: none; padding-left: 0; }
.menu-east-9f7c ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.menu-east-9f7c ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.mini_fe2f { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.modal_8f54 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.modal_8f54:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.button-4e91 { font-size: 3rem; margin-bottom: 1rem; }
.modal_8f54 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.modal_8f54 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.huge-6e81 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.huge-6e81 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.wide-2fa4 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.popup_8a58 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.search_17a6 { text-align: center; }
.form_slow_931d { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.focus_gold_f988 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.fixed-4233 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.surface_c41f { margin: 2rem 0; }
.background-hard-cf32 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.background-hard-cf32 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.background-hard-cf32 p, .background-hard-cf32 ul { line-height: 1.7; }
.background-hard-cf32 ul { list-style: none; padding-left: 0; }
.background-hard-cf32 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.background-hard-cf32 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.tall-8a52 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.form_21c8 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.backdrop-5ebe { text-align: center; }
.gold-9f59 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.plasma_4a71 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.badge_753b { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.filter-c15d { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.simple-884e { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.simple-884e:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.simple-884e h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.simple-884e p, .simple-884e ul { line-height: 1.7; }
.simple-884e ul { list-style: none; padding-left: 0; }
.simple-884e ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.simple-884e ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: ba3f */
.shadow-element-s8 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.3;
}
