/* ============================================
   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 */
.container_bottom_48a3 p,
.badge_pro_ad96,
.top-1856,
.shade_1e1b,
.surface-cool-bb74,
.container_current_960f,
.module-dynamic-255f,
.copper-5672 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.card-320e {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.card-320e > *,
.alert-static-ba1a,
.container_bottom_48a3,
.header-a96b {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .card-320e {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .card-320e {
    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 === */
.secondary_0188 {
  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 */
.secondary_0188.black-f498 {
  box-shadow: var(--shadow-md);
}

.notification-smooth-9c91 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.menu-7fd5 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.tall-450a {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.center-0232 {
  display: none;
}

/* Hide mobile actions on desktop */
.menu-upper-3b82 {
  display: none;
}

.breadcrumb-bright-65a9 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.breadcrumb-bright-65a9 a:hover,
.breadcrumb-bright-65a9 a.fn-active-1758 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.article-cc76 {
  margin-left: 1rem;
}

.logo-bronze-e8f0 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.gradient_e304,
.picture_7197 {
  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;
}

.gradient_e304 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.gradient_e304: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;
}

.picture_7197 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.picture_7197: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;
}

.gradient_e304 svg,
.picture_7197 svg {
  flex-shrink: 0;
}

.smooth_4c94 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.tooltip_ba07 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.tooltip_ba07::before,
.tooltip_ba07::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.tooltip_ba07::before {
  top: -7px;
}

.tooltip_ba07::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.primary-purple-1bc7 {
  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 === */
.hot-49f8 {
  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);
}

.simple_fd62 {
  margin: 0 0 2rem;
  text-align: center;
}

.column-pro-0cd1 {
  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;
}

.column-pro-0cd1:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.search_4c15 {
  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);
}

.search_4c15 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.texture-3c1e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.center-604b {
  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;
}

.center-604b:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.badge_7343 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tiny-ae33 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.shade_ca0f {
  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);
}

.shade_ca0f .up-a6d6 {
  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;
}

.shade_ca0f .up-a6d6 svg {
  flex-shrink: 0;
}

.shade_ca0f .smooth_f0bc {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.shade_ca0f .smooth_f0bc: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);
}

.shade_ca0f .preview_25b4 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.shade_ca0f .preview_25b4: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) {
  .hot-49f8 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .column-pro-0cd1 {
    max-width: 100%;
  }

  .texture-3c1e {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .center-604b {
    padding: 1rem;
  }

  .badge_7343 {
    font-size: 1.5rem;
  }

  .tiny-ae33 {
    font-size: 0.75rem;
  }

  .search_4c15 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .shade_ca0f {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .shade_ca0f .up-a6d6 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .texture-3c1e {
    grid-template-columns: 1fr;
  }
}

.link_next_fdea {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.alert_prev_0057 {
  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 === */
.widget_ae10 {
  margin-bottom: 2.5rem;
}

.green-9901 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.link_next_fdea {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.motion_41fc {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.button-mini-d180 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.fresh_89ec {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.solid_830d {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.container_medium_9800 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.filter-gold-7dd9 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tertiary_paper_7cab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tertiary_paper_7cab svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.popup_prev_09eb {
  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);
}

.focus-1328 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.motion-d075 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.grid_f0c5 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.gradient_thick_0692 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.container-glass-0218 {
  display: grid;
  gap: 1rem;
}

.footer-1932 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.current-57fc {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.pink-e5c2 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.texture-2f95 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.preview_ed6e {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.pink_6075 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.pink_6075 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.badge_pro_ad96 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.surface_822d {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.breadcrumb-fad9 {
  display: grid;
  gap: 2rem;
}

.carousel-5417 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.button-mini-d180 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.motion_41fc {
  flex: 1;
}

.solid_830d {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.solid_830d a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.article_54f7 {
  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;
}

.container_medium_9800 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.chip_next_3c01 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.chip_next_3c01 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.fixed_8cd2 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.fixed_8cd2 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.element_smooth_a68f {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.element_smooth_a68f strong {
  display: block;
  margin-bottom: 0.75rem;
}

.element_smooth_a68f ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.element_smooth_a68f li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.prev_a6d9 {
  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 === */
.feature-narrow-fbdc {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.label-bottom-6e27 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.tooltip-1cc5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.in-095e h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.in-095e ol {
  list-style: none;
  counter-reset: toc-counter;
}

.in-095e ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.in-095e 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;
}

.in-095e ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.in-095e ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.container_bottom_48a3 {
  padding: 3rem 0 5rem;
}

.header-a96b {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.header-a96b.carousel_8418 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.top-1856 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.action_788e {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.feature_old_beaf {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.feature_old_beaf h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.center-9e5f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.pressed_bee7 {
  text-align: center;
}

.filter_1a86 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.action_d322 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.content_82b1 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.container_current_960f {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.shade_1e1b {
  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;
}

.shade_1e1b * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.shade_1e1b:hover {
  box-shadow: var(--shadow-lg);
}

.shade_1e1b.tall_d0d6 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.shade_1e1b h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.shade_1e1b ul {
  margin: 1rem 0;
}

.shade_1e1b li {
  margin-bottom: 0.75rem;
}

.chip-f1fc {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.hard_852d {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.hard_852d a {
  font-weight: 600;
}

/* === Data Tables === */
.glass-4786 {
  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;
}

.glass-4786 table {
  width: 100%;
  min-width: 600px;
}

.glass-4786 thead {
  background-color: var(--primary-color);
  color: white;
}

.glass-4786 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.glass-4786 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.glass-4786 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.glass-4786 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.chip-liquid-7f86 {
  list-style: none;
  margin: 1.5rem 0;
}

.chip-liquid-7f86 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.chip-liquid-7f86 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.thumbnail_25b1::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-1758::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 === */
.active_da60 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.grid-31a6 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.grid-31a6 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.grid-31a6 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.grid-31a6 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.active_da60 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.module-dynamic-255f {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.module-dynamic-255f::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.pro-4099 {
  position: relative;
  margin-bottom: 3rem;
}

.new_2730 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.new_2730 .down_54d1 {
  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;
}

.detail_south_8059 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.detail_south_8059 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.detail_south_8059 ul {
  margin: 1rem 0;
}

.detail_south_8059 li {
  margin-bottom: 0.75rem;
}

.media-pro-e9a1 {
  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 === */
.small_c38b {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.small_c38b h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.carousel-short-b981 {
  list-style: none;
  margin: 1.5rem 0;
}

.carousel-short-b981 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.carousel-short-b981 a {
  font-weight: 600;
}

.small-c023 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.copper-5672 {
  margin: 2.5rem 0;
}

.article_dim_0037 {
  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;
}

.article_dim_0037:hover {
  box-shadow: var(--shadow-lg);
}

.article_dim_0037.light_f23e {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.module_bce3 {
  flex-shrink: 0;
}

.module_bce3 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);
}

.chip_9c72 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.silver_7ad7,
.dropdown_cdbc,
.gallery-bafd {
  width: 100%;
  margin: 1.5rem 0;
}

.main-03a5 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.main-03a5 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.steel_adf5 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.steel_adf5 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.hovered_6568 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.hovered_6568 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.footer_41b8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.bottom-ae2b {
  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;
}

.bottom-ae2b:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.bottom-ae2b.message-d349 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.bottom-ae2b .heading_2f8c {
  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;
}

.bottom-ae2b h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.chip_cc69 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.huge-cf80 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.huge-cf80 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.chip_1db0 {
  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 === */
.up-a6d6 {
  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;
}

.smooth_f0bc {
  background-color: var(--primary-color);
  color: white;
}

.smooth_f0bc:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.preview_25b4 {
  background-color: var(--text-secondary);
  color: white;
}

.preview_25b4:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.center_ba72 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.center_ba72:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.filter_697f {
  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;
}

.filter_697f:hover {
  background-color: var(--primary-dark);
}

.smooth-3f14 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.nav-97a0 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.focus-old-889f {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.label-b978 {
  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 === */
.shade-top-d57f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.list_0a06 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.list_0a06 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.slider-basic-8ab8 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.aside_large_16fc {
  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;
}

.section-slow-fa11 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.thick_5cdd {
  list-style: none;
  counter-reset: rank-counter;
}

.thick_5cdd li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.thick_5cdd 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;
}

.highlight_ec24 {
  list-style: none;
}

.highlight_ec24 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.accent-84db {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.left_692b {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.left_692b .dim_9e25 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.left_692b .notice-pressed-cda4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.layout-paper-1925 {
  margin-top: 3rem;
}

.heading_small_eab1 {
  width: 100%;
}

.tiny-6c3d {
  background-color: #fef3c7;
}

.fluid_6875 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.wrapper_soft_2d79 {
  margin: 3rem 0;
}

.cool_4497 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.inner-485d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.inner-485d:hover {
  box-shadow: var(--shadow-lg);
}

.inner-485d.west_09a1 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.alert_left_a885 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.module-d565 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.module-d565 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.middle_9faf {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.inner-485d blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.caption-small-8493 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pagination-4a01 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.aside-6365 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.rough-c261 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.carousel-e2cc {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.avatar_8a47 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.highlight_dark_7898 {
  max-width: 900px;
  margin: 0 auto;
}

.sort_pink_8a17 {
  margin: 2rem 0;
}

.detail-dynamic-3798 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.detail-dynamic-3798 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.detail-dynamic-3798 summary::-webkit-details-marker {
  display: none;
}

.detail-dynamic-3798 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.plasma_6c53 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.detail-dynamic-3798[open] .plasma_6c53 {
  transform: rotate(45deg);
}

.sidebar_4ced {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.sidebar_4ced p:last-child {
  margin-bottom: 0;
}

.section_thick_7171 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.progress_3613 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.caption-cold-fed3 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.caption-cold-fed3 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.caption-cold-fed3 .up-a6d6 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.accent_9025 {
  max-width: 900px;
  margin: 0 auto;
}

.primary-5f92 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.module-dim-0c4d {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.module-dim-0c4d.fn-success-1758 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.next-422c {
  font-size: 3rem;
  line-height: 1;
}

.avatar-be2c h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.large-56b9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.black_a158,
.border_bottom_7f3d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.black_a158 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.border_bottom_7f3d h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.left_b2a6,
.text-bcf6 {
  margin: 1.5rem 0;
}

.left_b2a6 li,
.text-bcf6 li {
  margin-bottom: 1rem;
}

.warm-6e61 {
  margin: 3rem 0;
}

.card-solid-4a6c {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.card-solid-4a6c h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.card-solid-4a6c ol {
  margin: 1rem 0;
}

.card-solid-4a6c li {
  margin-bottom: 0.75rem;
}

.widget_orange_2ab9 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.outline_35a6 {
  margin: 2rem 0;
}

.image_6e6a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.blue-367c {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.clean-243f {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.light-cb05 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.lite-1e46 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.popup-d166 {
  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;
}

.popup-d166 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.fresh_89ec {
  flex: 1;
}

.fresh_89ec h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.component_full_042f {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.menu-hard-cecf p {
  margin-bottom: 1rem;
}

.menu-62a1 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.caption_1749 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.tag-3d0d {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.tag-3d0d a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.simple-49d1 h3 {
  margin-bottom: 1.5rem;
}

.alert_32d9 {
  display: grid;
  gap: 2rem;
}

.row-6ee5 {
  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;
}

.row-6ee5 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.row-6ee5 h4 {
  margin: 0 0 0.25rem;
}

.row-6ee5 p {
  margin: 0;
  font-size: 0.9375rem;
}

.highlight_fixed_fd19 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.up_a0bd {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.up_a0bd h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.up_a0bd ul {
  margin: 1.5rem 0;
}

.up_a0bd li {
  margin-bottom: 0.75rem;
}

.tertiary-down-c977 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.pressed-e756 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.layout-dynamic-85c3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.menu_d927 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.menu_d927 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.south-bc42 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.south-bc42 a {
  color: rgba(255, 255, 255, 0.8);
}

.input-green-2c1b {
  list-style: none;
}

.input-green-2c1b li {
  margin-bottom: 0.75rem;
}

.input-green-2c1b a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.input-green-2c1b a:hover {
  color: white;
}

.filter-advanced-9493 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.article-1d60 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.tooltip_fbca {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.pagination-clean-843c {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sort_over_596b {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .card-320e {
    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;
  }

  .card-52ad {
    font-size: 1.5rem !important;
  }

  .green-9901 {
    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 */
  .shade_1e1b,
  .surface-cool-bb74,
  .detail_south_8059,
  .chip_9c72,
  .alert_left_a885,
  .inner-485d,
  .sidebar_4ced,
  .search_4c15,
  .badge_pro_ad96,
  .top-1856 {
    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 */
  .link_next_fdea {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .motion_41fc {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .button-mini-d180 {
    flex-shrink: 0;
  }

  .fresh_89ec {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .solid_830d,
  .container_medium_9800 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .container_medium_9800 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .tall-450a {
    display: none;
  }

  /* Show mobile actions */
  .menu-upper-3b82 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .fluid_73d7 {
    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;
  }

  .fluid_73d7 svg {
    flex-shrink: 0;
  }

  .fluid_73d7 .background_8199 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .fluid_73d7 .brown-fcb7 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .secondary-dcc5 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .avatar-8a0b {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .fluid_73d7:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .center-0232 {
    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;
  }

  .center-0232.fn-active-1758 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .center-0232 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .center-0232 li:last-child {
    border-bottom: none;
  }

  .center-0232 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .breadcrumb-bright-65a9 {
    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;
  }

  .breadcrumb-bright-65a9 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .breadcrumb-bright-65a9 li:last-child {
    border-bottom: none;
  }

  .breadcrumb-bright-65a9 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .article-cc76 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .logo-bronze-e8f0 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .gradient_e304,
  .picture_7197 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .gradient_e304 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .picture_7197 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .breadcrumb-bright-65a9.fn-active-1758 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .smooth_4c94 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .secondary_0188 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .notification-smooth-9c91 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .primary-purple-1bc7 {
    margin-top: 0;
  }

  /* Hero section */
  .primary-purple-1bc7 {
    padding: 2rem 0 1.5rem;
  }

  .green-9901 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .badge_pro_ad96 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .hot-49f8 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .column-pro-0cd1 {
    max-width: 100%;
    border-radius: 8px;
  }

  .texture-3c1e {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .center-604b {
    padding: 1rem;
  }

  .badge_7343 {
    font-size: 1.5rem;
  }

  .tiny-ae33 {
    font-size: 0.75rem;
  }

  .search_4c15 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .shade_ca0f {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .shade_ca0f .up-a6d6 {
    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 */
  .tooltip-1cc5 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .article_dim_0037 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .module_bce3 {
    margin-bottom: 1rem;
  }

  /* Author */
  .carousel-5417 {
    flex-direction: column;
  }

  .popup-d166 {
    flex-direction: column;
  }

  /* Quotes */
  .alert_left_a885 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .large-56b9 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .light-cb05 {
    flex-direction: column;
  }

  .light-cb05 .up-a6d6 {
    width: 100%;
  }

  /* Version comparison */
  .footer_41b8 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .shade-top-d57f {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .layout-dynamic-85c3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tooltip_fbca {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .glass-4786,
  .dropdown_cdbc,
  .short_17a3,
  .heading_small_eab1,
  .silver_7ad7,
  .gallery-bafd {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .glass-4786 table,
  .dropdown_cdbc table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .chip_1db0 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .card-320e {
    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;
  }

  .card-52ad {
    font-size: 1.25rem !important;
  }

  .green-9901 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .secondary_0188 {
    position: fixed;
  }

  .notification-smooth-9c91 {
    padding: 0.625rem 0;
  }

  .menu-7fd5 img {
    height: 26px;
  }

  .breadcrumb-bright-65a9 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .center-0232 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .fluid_73d7 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .fluid_73d7 svg {
    width: 18px;
    height: 18px;
  }

  .fluid_73d7 .background_8199 {
    font-size: 0.7rem;
  }

  .fluid_73d7 .brown-fcb7 {
    font-size: 0.65rem;
  }

  .gradient_e304,
  .picture_7197 {
    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, .card-320e, .alert-static-ba1a, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .hot-49f8 {
    padding: 1rem;
  }

  .texture-3c1e {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .center-604b {
    padding: 0.875rem;
  }

  .badge_7343 {
    font-size: 1.25rem;
  }

  .shade_ca0f .up-a6d6 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .green-9901 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .up-a6d6 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .smooth-3f14 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .article_dim_0037 {
    padding: 1rem;
  }

  .module_bce3 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .shade_1e1b,
  .green_e108,
  .alert-pro-c7f3,
  .bottom_ab79 {
    padding: 1rem;
  }
}

@media print {
  .secondary_0188,
  .feature-narrow-fbdc,
  .smooth_4c94,
  .up-a6d6,
  .pressed-e756 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .card-320e {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.logo_in_33eb {
  margin-bottom: 3rem;
  text-align: center;
}

.card-52ad {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.tooltip_8125 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.bronze-df39,
.tag-6394 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.badge_d843 {
  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;
}

.badge_d843:hover {
  transform: translateY(-5px);
}

.badge_d843 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.badge_d843 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.title-68de {
  margin: 3rem 0;
}

.background-last-4f11 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.text-38af {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.text-38af:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.fast-ba37 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.right-c105 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.soft-abde {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.form_ad97 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.next_68b8 {
  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;
}

.next_68b8:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.next_68b8.tag_pro_c840 {
  border-left: 4px solid var(--primary-color);
}

.box-0acf {
  flex-shrink: 0;
}

.box-0acf svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.mini-0435 {
  flex: 1;
}

.mini-0435 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.tall_a699 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.pagination-prev-be27,
.primary-5557,
.stale_d7bd {
  margin-bottom: 1.5rem;
}

.pagination-prev-be27 h4,
.primary-5557 h4,
.stale_d7bd h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination-prev-be27 ul,
.primary-5557 ul,
.stale_d7bd ul {
  list-style: none;
  padding: 0;
}

.pagination-prev-be27 li,
.primary-5557 li,
.stale_d7bd li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.pagination-prev-be27 li:before,
.primary-5557 li:before,
.stale_d7bd li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.orange_5ca7 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.orange_5ca7 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;
}

.orange_5ca7 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.detail_mini_9e2d { margin: 2rem 0; }
.message-63dd { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.message-63dd h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.panel-fresh-ba10 p { margin-bottom: 1rem; line-height: 1.7; }
.panel-fresh-ba10 strong { color: var(--text-primary); }
.panel-fresh-ba10 ul { list-style: none; padding-left: 0; }
.panel-fresh-ba10 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.panel-fresh-ba10 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.title_left_fbe6 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.chip_17a9 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.chip_17a9:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.chip_out_5377 { font-size: 3rem; margin-bottom: 1rem; }
.chip_17a9 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.chip_17a9 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.last_3693 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.last_3693 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.black_7187 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.frame_motion_4a98 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.search-97be { text-align: center; }
.new-a6f7 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.yellow_11e4 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.dim-8621 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.article_3de2 { margin: 2rem 0; }
.pressed-0d28 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.pressed-0d28 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.pressed-0d28 p, .pressed-0d28 ul { line-height: 1.7; }
.pressed-0d28 ul { list-style: none; padding-left: 0; }
.pressed-0d28 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.pressed-0d28 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.highlight_8272 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.next-496a { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.modal-basic-23be { text-align: center; }
.inner-cec8 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.button_pink_4524 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.tabs-static-f659 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.middle_29d4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.soft-532b { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.soft-532b:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.soft-532b h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.soft-532b p, .soft-532b ul { line-height: 1.7; }
.soft-532b ul { list-style: none; padding-left: 0; }
.soft-532b ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.soft-532b ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 754d */
.widget-item-z1 {
  padding: 0.1rem;
  font-size: 14px;
  line-height: 1.3;
}
