/* ============================================
   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 */
.box_under_ffa7 p,
.banner_f574,
.tertiary-724a,
.picture_in_d497,
.advanced-e630,
.title_medium_d8d4,
.surface-1a17,
.input-orange-d4e1 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.tertiary-upper-2caf {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.tertiary-upper-2caf > *,
.gradient-tall-15a5,
.box_under_ffa7,
.icon_large_fdc8 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .tertiary-upper-2caf {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .tertiary-upper-2caf {
    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 === */
.accent-3697 {
  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 */
.accent-3697.thumbnail-soft-6c9b {
  box-shadow: var(--shadow-md);
}

.feature-next-41b0 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.notice_a5d4 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.tooltip_bf55 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.pagination_d647 {
  display: none;
}

/* Hide mobile actions on desktop */
.badge-1633 {
  display: none;
}

.avatar_303b a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.avatar_303b a:hover,
.avatar_303b a.fn-active-de67 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.item-pressed-2079 {
  margin-left: 1rem;
}

.background-46bd {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.light_c2b0,
.thumbnail_fcd1 {
  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;
}

.light_c2b0 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.light_c2b0: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;
}

.thumbnail_fcd1 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.thumbnail_fcd1: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;
}

.light_c2b0 svg,
.thumbnail_fcd1 svg {
  flex-shrink: 0;
}

.tabs_soft_639d {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.focus-b086 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.focus-b086::before,
.focus-b086::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.focus-b086::before {
  top: -7px;
}

.focus-b086::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.hero-98f9 {
  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 === */
.under_5a1a {
  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);
}

.lite_c2ba {
  margin: 0 0 2rem;
  text-align: center;
}

.progress-stone-929c {
  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;
}

.progress-stone-929c:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.section_liquid_7a35 {
  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);
}

.section_liquid_7a35 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.hover_f866 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.dropdown_fb76 {
  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;
}

.dropdown_fb76:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.cool-cf26 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.down-f593 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.paper-f4fb {
  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);
}

.paper-f4fb .background-d813 {
  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;
}

.paper-f4fb .background-d813 svg {
  flex-shrink: 0;
}

.paper-f4fb .list-up-368b {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.paper-f4fb .list-up-368b: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);
}

.paper-f4fb .list_brown_022f {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.paper-f4fb .list_brown_022f: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) {
  .under_5a1a {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .progress-stone-929c {
    max-width: 100%;
  }

  .hover_f866 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .dropdown_fb76 {
    padding: 1rem;
  }

  .cool-cf26 {
    font-size: 1.5rem;
  }

  .down-f593 {
    font-size: 0.75rem;
  }

  .section_liquid_7a35 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .paper-f4fb {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .paper-f4fb .background-d813 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hover_f866 {
    grid-template-columns: 1fr;
  }
}

.description-white-069b {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.surface_green_0a6c {
  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 === */
.backdrop-up-370d {
  margin-bottom: 2.5rem;
}

.highlight_smooth_4390 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.description-white-069b {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.status_1035 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.right_dfcd {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.focused_3d19 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.wide-256d {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.right-5bde {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.old_1a0f {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pink-e947 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pink-e947 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.liquid-b73b {
  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);
}

.container-5178 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.dirty_a129 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.top_a17f {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.secondary-medium-ab55 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.badge-dynamic-76fb {
  display: grid;
  gap: 1rem;
}

.layout-e420 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.white-f5b8 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.carousel_brown_877a {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.feature-cd67 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.large_a2c2 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.layout_1b38 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.layout_1b38 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.banner_f574 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.module_stale_79a6 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.item_c868 {
  display: grid;
  gap: 2rem;
}

.dark_9fd9 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.right_dfcd {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.status_1035 {
  flex: 1;
}

.wide-256d {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.wide-256d a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.brown-8d35 {
  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;
}

.right-5bde {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.new-104a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.new-104a span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.out-34f3 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.out-34f3 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.summary-clean-732b {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.summary-clean-732b strong {
  display: block;
  margin-bottom: 0.75rem;
}

.summary-clean-732b ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.summary-clean-732b li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.wrapper_fast_9fd7 {
  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 === */
.outline-complex-fc8d {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.notification_simple_f351 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.light_e218 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.hard-738b h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.hard-738b ol {
  list-style: none;
  counter-reset: toc-counter;
}

.hard-738b ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.hard-738b 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;
}

.hard-738b ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.hard-738b ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.box_under_ffa7 {
  padding: 3rem 0 5rem;
}

.icon_large_fdc8 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.icon_large_fdc8.logo-hovered-687c {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.tertiary-724a {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.icon-90cc {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.tiny-1efa {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.tiny-1efa h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.warm_f068 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.column-1ea8 {
  text-align: center;
}

.accent_7397 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.media-iron-3811 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.element_focused_afe2 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.title_medium_d8d4 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.picture_in_d497 {
  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;
}

.picture_in_d497 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.picture_in_d497:hover {
  box-shadow: var(--shadow-lg);
}

.picture_in_d497.block_7a1c {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.picture_in_d497 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.picture_in_d497 ul {
  margin: 1rem 0;
}

.picture_in_d497 li {
  margin-bottom: 0.75rem;
}

.thick_6707 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.wood-b1f9 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.wood-b1f9 a {
  font-weight: 600;
}

/* === Data Tables === */
.sidebar-north-4f27 {
  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;
}

.sidebar-north-4f27 table {
  width: 100%;
  min-width: 600px;
}

.sidebar-north-4f27 thead {
  background-color: var(--primary-color);
  color: white;
}

.sidebar-north-4f27 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.sidebar-north-4f27 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-north-4f27 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.sidebar-north-4f27 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.stone_7208 {
  list-style: none;
  margin: 1.5rem 0;
}

.stone_7208 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.stone_7208 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.selected-14a0::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-de67::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 === */
.gallery_brown_f825 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.dim_1e0f {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.dim_1e0f img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.dim_1e0f strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.dim_1e0f span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.gallery_brown_f825 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.surface-1a17 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.surface-1a17::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.logo_glass_0107 {
  position: relative;
  margin-bottom: 3rem;
}

.element_inner_6c3e {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.element_inner_6c3e .form-ec58 {
  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;
}

.tag_simple_890f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.tag_simple_890f h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.tag_simple_890f ul {
  margin: 1rem 0;
}

.tag_simple_890f li {
  margin-bottom: 0.75rem;
}

.block-basic-146f {
  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 === */
.glass_1ffc {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.glass_1ffc h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.summary_small_9ee3 {
  list-style: none;
  margin: 1.5rem 0;
}

.summary_small_9ee3 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.summary_small_9ee3 a {
  font-weight: 600;
}

.tertiary-a929 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.input-orange-d4e1 {
  margin: 2.5rem 0;
}

.description_6933 {
  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;
}

.description_6933:hover {
  box-shadow: var(--shadow-lg);
}

.description_6933.first_11c2 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.mask-52eb {
  flex-shrink: 0;
}

.mask-52eb 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);
}

.item-9e31 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.row_7075,
.summary-green-7f9f,
.fluid_12d4 {
  width: 100%;
  margin: 1.5rem 0;
}

.block-c963 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.block-c963 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.texture-thick-b54b {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.texture-thick-b54b strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.item_cool_0aa3 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.item_cool_0aa3 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.banner-670e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.popup_action_c3da {
  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;
}

.popup_action_c3da:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.popup_action_c3da.liquid-1e7d {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.popup_action_c3da .hovered-f82f {
  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;
}

.popup_action_c3da h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.top_29ee {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.alert_1359 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.alert_1359 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.overlay-bc9c {
  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 === */
.background-d813 {
  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;
}

.list-up-368b {
  background-color: var(--primary-color);
  color: white;
}

.list-up-368b:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.list_brown_022f {
  background-color: var(--text-secondary);
  color: white;
}

.list_brown_022f:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.background_008c {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.background_008c:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.highlight_9ae6 {
  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;
}

.highlight_9ae6:hover {
  background-color: var(--primary-dark);
}

.stale_79f5 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.button-small-b2e4 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.alert-cold-9353 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.image_e206 {
  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 === */
.aside-complex-e7db {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.disabled_east_491b {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.disabled_east_491b h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.photo_c5be {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.cold-0032 {
  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;
}

.west_3ed3 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.green-6fb0 {
  list-style: none;
  counter-reset: rank-counter;
}

.green-6fb0 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.green-6fb0 li::before {
  content: counter(rank-counter);
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
}

.breadcrumb_over_52dc {
  list-style: none;
}

.breadcrumb_over_52dc li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.aside_f41b {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.alert-e2be {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.alert-e2be .layout_1292 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.alert-e2be .mini-cdb0 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.warm_59ea {
  margin-top: 3rem;
}

.article_f761 {
  width: 100%;
}

.dim_7704 {
  background-color: #fef3c7;
}

.layout-purple-c4f0 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.outline_5a72 {
  margin: 3rem 0;
}

.next_6b93 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.brown-376e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.brown-376e:hover {
  box-shadow: var(--shadow-lg);
}

.brown-376e.title-93f6 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.caption-gas-f522 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.overlay-stone-6c62 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.overlay-stone-6c62 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hover_mini_9de5 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.brown-376e blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.shadow-black-5bfb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.slider_5b2f {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.form-last-b154 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.top_2a01 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.status_c379 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.breadcrumb_clean_c67b {
  margin-top: 1rem;
}

/* === FAQ Section === */
.steel-f390 {
  max-width: 900px;
  margin: 0 auto;
}

.info_paper_0a46 {
  margin: 2rem 0;
}

.texture-green-f427 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.texture-green-f427 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.texture-green-f427 summary::-webkit-details-marker {
  display: none;
}

.texture-green-f427 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.gold_12d1 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.texture-green-f427[open] .gold_12d1 {
  transform: rotate(45deg);
}

.cold-9dd6 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.cold-9dd6 p:last-child {
  margin-bottom: 0;
}

.grid_029c {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.thumbnail-7484 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.mask_7f3f {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.mask_7f3f p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.mask_7f3f .background-d813 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.aside_rough_ffc1 {
  max-width: 900px;
  margin: 0 auto;
}

.list-5f3e {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.surface_white_9245 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.surface_white_9245.fn-success-de67 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.label-3a46 {
  font-size: 3rem;
  line-height: 1;
}

.disabled-9200 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.detail_9ee7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.action-5940,
.pink-dba4 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.action-5940 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.pink-dba4 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.avatar_b92e,
.icon-right-5069 {
  margin: 1.5rem 0;
}

.avatar_b92e li,
.icon-right-5069 li {
  margin-bottom: 1rem;
}

.article_d324 {
  margin: 3rem 0;
}

.container-0f18 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.container-0f18 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.container-0f18 ol {
  margin: 1rem 0;
}

.container-0f18 li {
  margin-bottom: 0.75rem;
}

.first-7261 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.rough-3fc7 {
  margin: 2rem 0;
}

.fluid_8f13 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.input_top_d9ee {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.iron_30f7 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.border_pink_9295 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.full_7959 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.card-b0d3 {
  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;
}

.card-b0d3 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.focused_3d19 {
  flex: 1;
}

.focused_3d19 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.gallery-huge-e958 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.block-short-6120 p {
  margin-bottom: 1rem;
}

.cool_2707 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.button_ad74 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.hard-b38e {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.hard-b38e a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.alert_3cf6 h3 {
  margin-bottom: 1.5rem;
}

.row_ad3a {
  display: grid;
  gap: 2rem;
}

.iron_0956 {
  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;
}

.iron_0956 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.iron_0956 h4 {
  margin: 0 0 0.25rem;
}

.iron_0956 p {
  margin: 0;
  font-size: 0.9375rem;
}

.current_5230 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.tag-7060 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.tag-7060 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.tag-7060 ul {
  margin: 1.5rem 0;
}

.tag-7060 li {
  margin-bottom: 0.75rem;
}

.secondary_tall_a16e {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.paragraph-9be5 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.menu_stale_d8b3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.gallery-orange-4840 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.gallery-orange-4840 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.static-a8c6 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.static-a8c6 a {
  color: rgba(255, 255, 255, 0.8);
}

.left_e2e6 {
  list-style: none;
}

.left_e2e6 li {
  margin-bottom: 0.75rem;
}

.left_e2e6 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.left_e2e6 a:hover {
  color: white;
}

.pagination-baa6 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.status-498c {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.narrow_cf25 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.row_8c91 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.background-east-7087 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .tertiary-upper-2caf {
    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;
  }

  .glass_6789 {
    font-size: 1.5rem !important;
  }

  .highlight_smooth_4390 {
    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 */
  .picture_in_d497,
  .advanced-e630,
  .tag_simple_890f,
  .item-9e31,
  .caption-gas-f522,
  .brown-376e,
  .cold-9dd6,
  .section_liquid_7a35,
  .banner_f574,
  .tertiary-724a {
    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 */
  .description-white-069b {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .status_1035 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .right_dfcd {
    flex-shrink: 0;
  }

  .focused_3d19 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .wide-256d,
  .right-5bde {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .right-5bde {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .tooltip_bf55 {
    display: none;
  }

  /* Show mobile actions */
  .badge-1633 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .frame-8fa7 {
    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;
  }

  .frame-8fa7 svg {
    flex-shrink: 0;
  }

  .frame-8fa7 .gallery_b1e2 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .frame-8fa7 .label-b2a4 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .motion_f1bf {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .element-fixed-da09 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .frame-8fa7:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .pagination_d647 {
    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;
  }

  .pagination_d647.fn-active-de67 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .pagination_d647 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .pagination_d647 li:last-child {
    border-bottom: none;
  }

  .pagination_d647 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .avatar_303b {
    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;
  }

  .avatar_303b li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .avatar_303b li:last-child {
    border-bottom: none;
  }

  .avatar_303b a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .item-pressed-2079 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .background-46bd {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .light_c2b0,
  .thumbnail_fcd1 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .light_c2b0 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .thumbnail_fcd1 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .avatar_303b.fn-active-de67 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .tabs_soft_639d {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .accent-3697 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .feature-next-41b0 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .hero-98f9 {
    margin-top: 0;
  }

  /* Hero section */
  .hero-98f9 {
    padding: 2rem 0 1.5rem;
  }

  .highlight_smooth_4390 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .banner_f574 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .under_5a1a {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .progress-stone-929c {
    max-width: 100%;
    border-radius: 8px;
  }

  .hover_f866 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .dropdown_fb76 {
    padding: 1rem;
  }

  .cool-cf26 {
    font-size: 1.5rem;
  }

  .down-f593 {
    font-size: 0.75rem;
  }

  .section_liquid_7a35 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .paper-f4fb {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .paper-f4fb .background-d813 {
    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 */
  .light_e218 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .description_6933 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .mask-52eb {
    margin-bottom: 1rem;
  }

  /* Author */
  .dark_9fd9 {
    flex-direction: column;
  }

  .card-b0d3 {
    flex-direction: column;
  }

  /* Quotes */
  .caption-gas-f522 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .detail_9ee7 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .border_pink_9295 {
    flex-direction: column;
  }

  .border_pink_9295 .background-d813 {
    width: 100%;
  }

  /* Version comparison */
  .banner-670e {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .aside-complex-e7db {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .menu_stale_d8b3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .narrow_cf25 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .sidebar-north-4f27,
  .summary-green-7f9f,
  .pattern-b142,
  .article_f761,
  .row_7075,
  .fluid_12d4 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sidebar-north-4f27 table,
  .summary-green-7f9f table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .overlay-bc9c {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .tertiary-upper-2caf {
    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;
  }

  .glass_6789 {
    font-size: 1.25rem !important;
  }

  .highlight_smooth_4390 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .accent-3697 {
    position: fixed;
  }

  .feature-next-41b0 {
    padding: 0.625rem 0;
  }

  .notice_a5d4 img {
    height: 26px;
  }

  .avatar_303b {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .pagination_d647 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .frame-8fa7 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .frame-8fa7 svg {
    width: 18px;
    height: 18px;
  }

  .frame-8fa7 .gallery_b1e2 {
    font-size: 0.7rem;
  }

  .frame-8fa7 .label-b2a4 {
    font-size: 0.65rem;
  }

  .light_c2b0,
  .thumbnail_fcd1 {
    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, .tertiary-upper-2caf, .gradient-tall-15a5, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .under_5a1a {
    padding: 1rem;
  }

  .hover_f866 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .dropdown_fb76 {
    padding: 0.875rem;
  }

  .cool-cf26 {
    font-size: 1.25rem;
  }

  .paper-f4fb .background-d813 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .highlight_smooth_4390 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .background-d813 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .stale_79f5 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .description_6933 {
    padding: 1rem;
  }

  .mask-52eb span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .picture_in_d497,
  .photo_5431,
  .surface_liquid_10dd,
  .texture_next_e72c {
    padding: 1rem;
  }
}

@media print {
  .accent-3697,
  .outline-complex-fc8d,
  .tabs_soft_639d,
  .background-d813,
  .paragraph-9be5 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .tertiary-upper-2caf {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.picture-pressed-e2fd {
  margin-bottom: 3rem;
  text-align: center;
}

.glass_6789 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.text_motion_b0bb {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.active_slow_cad6,
.status-white-a50e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.menu-bcbc {
  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;
}

.menu-bcbc:hover {
  transform: translateY(-5px);
}

.menu-bcbc strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.menu-bcbc span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.card-5d15 {
  margin: 3rem 0;
}

.sidebar_d580 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.label_fast_435c {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.label_fast_435c:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.layout_470b {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.summary_action_627d {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.tertiary_e4c7 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.left_6923 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.cold_1a8f {
  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;
}

.cold_1a8f:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.cold_1a8f.component_upper_e80b {
  border-left: 4px solid var(--primary-color);
}

.header-hot-d068 {
  flex-shrink: 0;
}

.header-hot-d068 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.primary-gold-b208 {
  flex: 1;
}

.primary-gold-b208 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.detail_c1d9 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.description-a627,
.thick_46fa,
.purple-9c8f {
  margin-bottom: 1.5rem;
}

.description-a627 h4,
.thick_46fa h4,
.purple-9c8f h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.description-a627 ul,
.thick_46fa ul,
.purple-9c8f ul {
  list-style: none;
  padding: 0;
}

.description-a627 li,
.thick_46fa li,
.purple-9c8f li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.description-a627 li:before,
.thick_46fa li:before,
.purple-9c8f li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.overlay-basic-a656 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.overlay-basic-a656 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;
}

.overlay-basic-a656 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.light_270a { margin: 2rem 0; }
.current_9068 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.current_9068 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.column-copper-f582 p { margin-bottom: 1rem; line-height: 1.7; }
.column-copper-f582 strong { color: var(--text-primary); }
.column-copper-f582 ul { list-style: none; padding-left: 0; }
.column-copper-f582 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.column-copper-f582 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.label-easy-997f { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.input-14f6 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.input-14f6:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.photo-steel-2f72 { font-size: 3rem; margin-bottom: 1rem; }
.input-14f6 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.input-14f6 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.notice_tiny_8984 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.notice_tiny_8984 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.column-4e8f { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.avatar-copper-d9eb { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.image_f8e0 { text-align: center; }
.button-d47f { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.avatar-eca8 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.thumbnail-0836 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.black-9d0f { margin: 2rem 0; }
.gallery-cfd0 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.gallery-cfd0 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.gallery-cfd0 p, .gallery-cfd0 ul { line-height: 1.7; }
.gallery-cfd0 ul { list-style: none; padding-left: 0; }
.gallery-cfd0 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.gallery-cfd0 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.shadow_complex_ed3c { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.article-west-484d { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.plasma-beab { text-align: center; }
.bright-d2bd { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.motion_b490 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.modal_fluid_8462 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.shadow-lite-45e6 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.fast_a379 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.fast_a379:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.fast_a379 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.fast_a379 p, .fast_a379 ul { line-height: 1.7; }
.fast_a379 ul { list-style: none; padding-left: 0; }
.fast_a379 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.fast_a379 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: da23 */
.widget-item-j0 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.3;
}
