/* ============================================
   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 */
.pagination-bright-2786 p,
.active-d7e9,
.thumbnail-51d2,
.mask_out_47db,
.full-fc28,
.article_smooth_bd30,
.blue-d3c3,
.background-d8ef {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.complex-1682 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.complex-1682 > *,
.header_current_525d,
.pagination-bright-2786,
.wrapper-lower-e793 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .complex-1682 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .complex-1682 {
    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_selected_54af {
  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_selected_54af.highlight-3a6f {
  box-shadow: var(--shadow-md);
}

.banner_left_a3db {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.hard_8c81 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.picture-3fe6 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.liquid_9519 {
  display: none;
}

/* Hide mobile actions on desktop */
.photo_lower_e341 {
  display: none;
}

.pressed_4d47 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.pressed_4d47 a:hover,
.pressed_4d47 a.fn-active-81cb {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.active-in-a1ca {
  margin-left: 1rem;
}

.easy_bb53 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.hidden_west_d037,
.status_lower_9de8 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  color: white !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.hidden_west_d037 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.hidden_west_d037: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;
}

.status_lower_9de8 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.status_lower_9de8:hover {
  background: linear-gradient(135deg, #047857 0%, #065f46 100%);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  transform: translateY(-1px);
  text-decoration: none;
}

.hidden_west_d037 svg,
.status_lower_9de8 svg {
  flex-shrink: 0;
}

.info-beef {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.card_lower_05c5 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.card_lower_05c5::before,
.card_lower_05c5::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.card_lower_05c5::before {
  top: -7px;
}

.card_lower_05c5::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.breadcrumb-bf12 {
  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 === */
.widget-fa75 {
  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);
}

.center_6d56 {
  margin: 0 0 2rem;
  text-align: center;
}

.static-7e3d {
  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;
}

.static-7e3d:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.progress_794b {
  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);
}

.progress_794b strong {
  color: var(--primary-color);
  font-weight: 700;
}

.picture-0068 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.summary-de56 {
  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;
}

.summary-de56:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.footer-fda4 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.huge_b8c3 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.main-narrow-c46c {
  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);
}

.main-narrow-c46c .north_d046 {
  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;
}

.main-narrow-c46c .north_d046 svg {
  flex-shrink: 0;
}

.main-narrow-c46c .medium-c32b {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.main-narrow-c46c .medium-c32b: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);
}

.main-narrow-c46c .fresh_2650 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.main-narrow-c46c .fresh_2650: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) {
  .widget-fa75 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .static-7e3d {
    max-width: 100%;
  }

  .picture-0068 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .summary-de56 {
    padding: 1rem;
  }

  .footer-fda4 {
    font-size: 1.5rem;
  }

  .huge_b8c3 {
    font-size: 0.75rem;
  }

  .progress_794b {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .main-narrow-c46c {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .main-narrow-c46c .north_d046 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .picture-0068 {
    grid-template-columns: 1fr;
  }
}

.pagination_c0ba {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.content-outer-2b76 {
  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 === */
.down_cd3c {
  margin-bottom: 2.5rem;
}

.disabled_left_197c {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.pagination_c0ba {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.dropdown-tiny-136d {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pattern_west_9948 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.large-d8fc {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.orange-a51a {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.breadcrumb-silver-64f4 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.accordion-93b7 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.outer-0ace {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.outer-0ace svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.background-b162 {
  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);
}

.progress-a6d9 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.panel_green_1b65 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.right_22ec {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.bottom-f522 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.center_bb30 {
  display: grid;
  gap: 1rem;
}

.over_769b {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.panel_static_8c29 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.badge-b6cf {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.red_6cf0 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.down_fb37 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.shadow-last-8d83 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.shadow-last-8d83 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.active-d7e9 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.gallery_action_75d4 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.article-current-b4d2 {
  display: grid;
  gap: 2rem;
}

.tooltip-narrow-37f8 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.pattern_west_9948 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.dropdown-tiny-136d {
  flex: 1;
}

.orange-a51a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.orange-a51a a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.soft_2528 {
  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;
}

.breadcrumb-silver-64f4 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.blue-829f {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.blue-829f span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.shade_7d54 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.shade_7d54 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.primary_b26f {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.primary_b26f strong {
  display: block;
  margin-bottom: 0.75rem;
}

.primary_b26f ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.primary_b26f li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.form_bf17 {
  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 === */
.upper-d41b {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.box_blue_dce7 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.out-8404 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.shadow-easy-8b27 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.shadow-easy-8b27 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.shadow-easy-8b27 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.shadow-easy-8b27 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;
}

.shadow-easy-8b27 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.shadow-easy-8b27 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.pagination-bright-2786 {
  padding: 3rem 0 5rem;
}

.wrapper-lower-e793 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.wrapper-lower-e793.silver_c71a {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.thumbnail-51d2 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.slow-ff0e {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.wrapper_c53f {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.wrapper_c53f h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.section_advanced_d4e8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.filter-f253 {
  text-align: center;
}

.section_cold_eef0 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.right-588f {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.hero_center_8427 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.article_smooth_bd30 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.mask_out_47db {
  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;
}

.mask_out_47db * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.mask_out_47db:hover {
  box-shadow: var(--shadow-lg);
}

.mask_out_47db.under-6206 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.mask_out_47db h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.mask_out_47db ul {
  margin: 1rem 0;
}

.mask_out_47db li {
  margin-bottom: 0.75rem;
}

.huge-5a32 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.old-7862 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.old-7862 a {
  font-weight: 600;
}

/* === Data Tables === */
.module_e685 {
  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;
}

.module_e685 table {
  width: 100%;
  min-width: 600px;
}

.module_e685 thead {
  background-color: var(--primary-color);
  color: white;
}

.module_e685 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.module_e685 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.module_e685 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.module_e685 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.pro_6e77 {
  list-style: none;
  margin: 1.5rem 0;
}

.pro_6e77 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.pro_6e77 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.prev_24fe::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-81cb::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 === */
.picture-warm-dc5b {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.alert-red-8a0e {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.alert-red-8a0e img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.alert-red-8a0e strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.alert-red-8a0e span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.picture-warm-dc5b blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.blue-d3c3 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.blue-d3c3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.mini_f971 {
  position: relative;
  margin-bottom: 3rem;
}

.slider_fb3a {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.slider_fb3a .focus-glass-35e4 {
  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;
}

.section-thick-4bd6 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.section-thick-4bd6 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.section-thick-4bd6 ul {
  margin: 1rem 0;
}

.section-thick-4bd6 li {
  margin-bottom: 0.75rem;
}

.active_7480 {
  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 === */
.nav_dac3 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.nav_dac3 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.outer_4e20 {
  list-style: none;
  margin: 1.5rem 0;
}

.outer_4e20 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.outer_4e20 a {
  font-weight: 600;
}

.aside_8b82 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.background-d8ef {
  margin: 2.5rem 0;
}

.sidebar_4b6e {
  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;
}

.sidebar_4b6e:hover {
  box-shadow: var(--shadow-lg);
}

.sidebar_4b6e.popup_06ac {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.active_ac52 {
  flex-shrink: 0;
}

.active_ac52 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);
}

.focus_stale_5610 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.border_bb19,
.carousel-e48d,
.title_f486 {
  width: 100%;
  margin: 1.5rem 0;
}

.filter_pink_921f {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.filter_pink_921f strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.smooth-bf53 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.smooth-bf53 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.gold-66dc {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.gold-66dc strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.west_f483 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.tertiary-04ac {
  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;
}

.tertiary-04ac:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.tertiary-04ac.paragraph_b6ed {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.tertiary-04ac .slider-3532 {
  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;
}

.tertiary-04ac h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.fresh_4c24 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.prev_e925 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.prev_e925 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.widget-102b {
  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 === */
.north_d046 {
  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;
}

.medium-c32b {
  background-color: var(--primary-color);
  color: white;
}

.medium-c32b:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.fresh_2650 {
  background-color: var(--text-secondary);
  color: white;
}

.fresh_2650:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.gradient-new-af18 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.gradient-new-af18:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.label-5a6f {
  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;
}

.label-5a6f:hover {
  background-color: var(--primary-dark);
}

.current_e1ea {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.image_6e4f {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.progress_9a7f {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.iron-104e {
  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 === */
.primary-bronze-9723 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.button_hard_eb7c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.button_hard_eb7c h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.focused-dbcb {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.filter_75e2 {
  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;
}

.warm_bff4 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.tag-paper-84d3 {
  list-style: none;
  counter-reset: rank-counter;
}

.tag-paper-84d3 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.tag-paper-84d3 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;
}

.complex_8c49 {
  list-style: none;
}

.complex_8c49 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.thumbnail_7af2 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.black_b456 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.black_b456 .copper_759a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.black_b456 .info-7ff5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.block-cool-efb7 {
  margin-top: 3rem;
}

.dirty-5f22 {
  width: 100%;
}

.search_over_bc8a {
  background-color: #fef3c7;
}

.filter_b419 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.tooltip-easy-a04f {
  margin: 3rem 0;
}

.medium_e039 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.warm-0ba6 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.warm-0ba6:hover {
  box-shadow: var(--shadow-lg);
}

.warm-0ba6.caption-fast-782a {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.fluid-2ee4 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-over-8926 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.filter-over-8926 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.image_9dfb {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.warm-0ba6 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.paragraph-copper-6244 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.short-f985 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.gold-28fd {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.fresh_8548 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.current_06ed {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.hover-3a64 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.hard-b51c {
  max-width: 900px;
  margin: 0 auto;
}

.pagination_2c9d {
  margin: 2rem 0;
}

.grid-e447 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.grid-e447 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.grid-e447 summary::-webkit-details-marker {
  display: none;
}

.grid-e447 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.tiny-223b {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.grid-e447[open] .tiny-223b {
  transform: rotate(45deg);
}

.pattern_99de {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.pattern_99de p:last-child {
  margin-bottom: 0;
}

.active-west-9659 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.shadow-85ef {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.backdrop_active_1620 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.backdrop_active_1620 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.backdrop_active_1620 .north_d046 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.sidebar-8cd9 {
  max-width: 900px;
  margin: 0 auto;
}

.column_625a {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.banner_bottom_30e0 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.banner_bottom_30e0.fn-success-81cb {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.hero_tiny_b18f {
  font-size: 3rem;
  line-height: 1;
}

.container-short-10d7 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.badge-5f81 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.section_2330,
.thumbnail_e676 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.section_2330 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.thumbnail_e676 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.hover_4fc7,
.summary-last-ec63 {
  margin: 1.5rem 0;
}

.hover_4fc7 li,
.summary-last-ec63 li {
  margin-bottom: 1rem;
}

.module_cold_ebab {
  margin: 3rem 0;
}

.huge-f15b {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.huge-f15b h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.huge-f15b ol {
  margin: 1rem 0;
}

.huge-f15b li {
  margin-bottom: 0.75rem;
}

.top-cf8d {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.simple_977d {
  margin: 2rem 0;
}

.active_soft_3a0e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.menu-a9c6 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.hovered_224e {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.active_active_ab62 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.fluid_7f4e {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.badge-solid-7450 {
  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;
}

.badge-solid-7450 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.large-d8fc {
  flex: 1;
}

.large-d8fc h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.cold-dc39 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.shadow-purple-a5ef p {
  margin-bottom: 1rem;
}

.soft_b4fb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.secondary-inner-1806 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.disabled_ecba {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.disabled_ecba a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.right-ba9f h3 {
  margin-bottom: 1.5rem;
}

.button-6634 {
  display: grid;
  gap: 2rem;
}

.light-3181 {
  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;
}

.light-3181 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.light-3181 h4 {
  margin: 0 0 0.25rem;
}

.light-3181 p {
  margin: 0;
  font-size: 0.9375rem;
}

.hard-ad42 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.under-98e3 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.under-98e3 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.under-98e3 ul {
  margin: 1.5rem 0;
}

.under-98e3 li {
  margin-bottom: 0.75rem;
}

.widget-bcaf {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.logo_black_40e2 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.action_8b9d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.picture_8897 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.picture_8897 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.item-d0d7 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.item-d0d7 a {
  color: rgba(255, 255, 255, 0.8);
}

.filter_black_f970 {
  list-style: none;
}

.filter_black_f970 li {
  margin-bottom: 0.75rem;
}

.filter_black_f970 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.filter_black_f970 a:hover {
  color: white;
}

.dark_5138 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.menu-selected-d636 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.caption-cc83 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.overlay_3bcc {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.top-d4ff {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .complex-1682 {
    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;
  }

  .notice_advanced_70fa {
    font-size: 1.5rem !important;
  }

  .disabled_left_197c {
    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 */
  .mask_out_47db,
  .full-fc28,
  .section-thick-4bd6,
  .focus_stale_5610,
  .fluid-2ee4,
  .warm-0ba6,
  .pattern_99de,
  .progress_794b,
  .active-d7e9,
  .thumbnail-51d2 {
    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 */
  .pagination_c0ba {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .dropdown-tiny-136d {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .pattern_west_9948 {
    flex-shrink: 0;
  }

  .large-d8fc {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .orange-a51a,
  .breadcrumb-silver-64f4 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .breadcrumb-silver-64f4 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .picture-3fe6 {
    display: none;
  }

  /* Show mobile actions */
  .photo_lower_e341 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .description-liquid-4bbd {
    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;
  }

  .description-liquid-4bbd svg {
    flex-shrink: 0;
  }

  .description-liquid-4bbd .info_tiny_763f {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .description-liquid-4bbd .widget-970b {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .soft-9022 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .backdrop-7dee {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .description-liquid-4bbd:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .liquid_9519 {
    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;
  }

  .liquid_9519.fn-active-81cb {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .liquid_9519 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .liquid_9519 li:last-child {
    border-bottom: none;
  }

  .liquid_9519 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .pressed_4d47 {
    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;
  }

  .pressed_4d47 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .pressed_4d47 li:last-child {
    border-bottom: none;
  }

  .pressed_4d47 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .active-in-a1ca {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .easy_bb53 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .hidden_west_d037,
  .status_lower_9de8 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .hidden_west_d037 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .status_lower_9de8 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .pressed_4d47.fn-active-81cb {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .info-beef {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .slider_selected_54af {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .banner_left_a3db {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .breadcrumb-bf12 {
    margin-top: 0;
  }

  /* Hero section */
  .breadcrumb-bf12 {
    padding: 2rem 0 1.5rem;
  }

  .disabled_left_197c {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .active-d7e9 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .widget-fa75 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .static-7e3d {
    max-width: 100%;
    border-radius: 8px;
  }

  .picture-0068 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .summary-de56 {
    padding: 1rem;
  }

  .footer-fda4 {
    font-size: 1.5rem;
  }

  .huge_b8c3 {
    font-size: 0.75rem;
  }

  .progress_794b {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .main-narrow-c46c {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .main-narrow-c46c .north_d046 {
    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 */
  .out-8404 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .sidebar_4b6e {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .active_ac52 {
    margin-bottom: 1rem;
  }

  /* Author */
  .tooltip-narrow-37f8 {
    flex-direction: column;
  }

  .badge-solid-7450 {
    flex-direction: column;
  }

  /* Quotes */
  .fluid-2ee4 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .badge-5f81 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .active_active_ab62 {
    flex-direction: column;
  }

  .active_active_ab62 .north_d046 {
    width: 100%;
  }

  /* Version comparison */
  .west_f483 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .primary-bronze-9723 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .action_8b9d {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .caption-cc83 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .module_e685,
  .carousel-e48d,
  .content_down_7b3a,
  .dirty-5f22,
  .border_bb19,
  .title_f486 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .module_e685 table,
  .carousel-e48d table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .widget-102b {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .complex-1682 {
    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;
  }

  .notice_advanced_70fa {
    font-size: 1.25rem !important;
  }

  .disabled_left_197c {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .slider_selected_54af {
    position: fixed;
  }

  .banner_left_a3db {
    padding: 0.625rem 0;
  }

  .hard_8c81 img {
    height: 26px;
  }

  .pressed_4d47 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .liquid_9519 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .description-liquid-4bbd {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .description-liquid-4bbd svg {
    width: 18px;
    height: 18px;
  }

  .description-liquid-4bbd .info_tiny_763f {
    font-size: 0.7rem;
  }

  .description-liquid-4bbd .widget-970b {
    font-size: 0.65rem;
  }

  .hidden_west_d037,
  .status_lower_9de8 {
    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, .complex-1682, .header_current_525d, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .widget-fa75 {
    padding: 1rem;
  }

  .picture-0068 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .summary-de56 {
    padding: 0.875rem;
  }

  .footer-fda4 {
    font-size: 1.25rem;
  }

  .main-narrow-c46c .north_d046 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .disabled_left_197c {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .north_d046 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .current_e1ea {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .sidebar_4b6e {
    padding: 1rem;
  }

  .active_ac52 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .mask_out_47db,
  .pro_e865,
  .black_fa0c,
  .description-old-ba82 {
    padding: 1rem;
  }
}

@media print {
  .slider_selected_54af,
  .upper-d41b,
  .info-beef,
  .north_d046,
  .logo_black_40e2 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .complex-1682 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.gold-45a9 {
  margin-bottom: 3rem;
  text-align: center;
}

.notice_advanced_70fa {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.table_glass_33b1 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.layout-237d,
.pagination_387f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.background-b7f7 {
  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;
}

.background-b7f7:hover {
  transform: translateY(-5px);
}

.background-b7f7 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.background-b7f7 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.dropdown_9a39 {
  margin: 3rem 0;
}

.pattern_lite_ec02 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.wide-bee0 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.wide-bee0:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.main_thick_70da {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.shade-cc0d {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.main_3436 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.red-c9fc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.modal_a7ea {
  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;
}

.modal_a7ea:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.modal_a7ea.tooltip_purple_b460 {
  border-left: 4px solid var(--primary-color);
}

.title-focused-d4de {
  flex-shrink: 0;
}

.title-focused-d4de svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.nav-0d8e {
  flex: 1;
}

.nav-0d8e h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.mask_4d39 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.outer_12c8,
.center_ed15,
.border-e2bd {
  margin-bottom: 1.5rem;
}

.outer_12c8 h4,
.center_ed15 h4,
.border-e2bd h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.outer_12c8 ul,
.center_ed15 ul,
.border-e2bd ul {
  list-style: none;
  padding: 0;
}

.outer_12c8 li,
.center_ed15 li,
.border-e2bd li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.outer_12c8 li:before,
.center_ed15 li:before,
.border-e2bd li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.frame-brown-b13b {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.frame-brown-b13b 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;
}

.frame-brown-b13b a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.dark-c3d7 { margin: 2rem 0; }
.out-09ea { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.out-09ea h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.large-8a0c p { margin-bottom: 1rem; line-height: 1.7; }
.large-8a0c strong { color: var(--text-primary); }
.large-8a0c ul { list-style: none; padding-left: 0; }
.large-8a0c ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.large-8a0c ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.top-9bdc { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.block-4e1d { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.block-4e1d:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.paper-d36c { font-size: 3rem; margin-bottom: 1rem; }
.block-4e1d h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.block-4e1d p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.banner-right-e711 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.banner-right-e711 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.form_gas_3304 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.solid_2a82 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.black_f8c1 { text-align: center; }
.preview-red-a275 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.hover-a5f4 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.modal_dim_4621 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.tabs_8d62 { margin: 2rem 0; }
.fast_d7ee { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.fast_d7ee h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.fast_d7ee p, .fast_d7ee ul { line-height: 1.7; }
.fast_d7ee ul { list-style: none; padding-left: 0; }
.fast_d7ee ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.fast_d7ee ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.avatar-short-aaca { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.preview_east_f94a { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.hovered-3a24 { text-align: center; }
.avatar-7aee { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.action-fb72 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.tag_current_8d0c { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.shadow_e141 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.column-4184 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.column-4184:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.column-4184 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.column-4184 p, .column-4184 ul { line-height: 1.7; }
.column-4184 ul { list-style: none; padding-left: 0; }
.column-4184 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.column-4184 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: c504 */
.ghost-box-u1 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.2;
}
