/* ============================================
   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 */
.brown-baa5 p,
.widget-07e3,
.active-212e,
.short-5d6d,
.outline-orange-5804,
.dropdown_large_b4b7,
.short-3c3a,
.breadcrumb-fixed-5258 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.sort_6a3b {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.sort_6a3b > *,
.carousel_easy_c435,
.brown-baa5,
.summary-green-c4aa {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .sort_6a3b {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .sort_6a3b {
    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 === */
.cold_cf7e {
  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 */
.cold_cf7e.image-b280 {
  box-shadow: var(--shadow-md);
}

.banner-8380 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.avatar-621b img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.text-b2af {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.mask-39ce {
  display: none;
}

/* Hide mobile actions on desktop */
.form_dark_691d {
  display: none;
}

.icon-2efb a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.icon-2efb a:hover,
.icon-2efb a.fn-active-22ce {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.message_dbeb {
  margin-left: 1rem;
}

.avatar-47ac {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.dynamic_0705,
.static_ef42 {
  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;
}

.dynamic_0705 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.dynamic_0705: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;
}

.static_ef42 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.static_ef42: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;
}

.dynamic_0705 svg,
.static_ef42 svg {
  flex-shrink: 0;
}

.carousel_bright_1957 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.easy_fce1 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.easy_fce1::before,
.easy_fce1::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.easy_fce1::before {
  top: -7px;
}

.easy_fce1::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.warm-5325 {
  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 === */
.list_medium_78fa {
  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);
}

.shade_inner_4253 {
  margin: 0 0 2rem;
  text-align: center;
}

.link_purple_7d16 {
  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;
}

.link_purple_7d16:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.medium-1005 {
  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);
}

.medium-1005 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.top-3ca1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.popup-5508 {
  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;
}

.popup-5508:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.surface_current_ad79 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.purple_ca7e {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.disabled_6936 {
  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);
}

.disabled_6936 .shadow-ec0a {
  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;
}

.disabled_6936 .shadow-ec0a svg {
  flex-shrink: 0;
}

.disabled_6936 .west-af4a {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.disabled_6936 .west-af4a: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);
}

.disabled_6936 .module-c5ec {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.disabled_6936 .module-c5ec: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) {
  .list_medium_78fa {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .link_purple_7d16 {
    max-width: 100%;
  }

  .top-3ca1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .popup-5508 {
    padding: 1rem;
  }

  .surface_current_ad79 {
    font-size: 1.5rem;
  }

  .purple_ca7e {
    font-size: 0.75rem;
  }

  .medium-1005 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .disabled_6936 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .disabled_6936 .shadow-ec0a {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .top-3ca1 {
    grid-template-columns: 1fr;
  }
}

.aside_soft_733e {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.texture-wide-7649 {
  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 === */
.icon_37e8 {
  margin-bottom: 2.5rem;
}

.tooltip_bright_7108 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.aside_soft_733e {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.footer-static-4815 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.item-f33d {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.container_tall_e761 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.layout_3844 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.yellow_085c {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.liquid_bcf8 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.component_green_57fe {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.component_green_57fe svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.fluid_c39a {
  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);
}

.link_steel_b540 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.badge_8c81 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.slider-b61c {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.tertiary_e156 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.component-29b2 {
  display: grid;
  gap: 1rem;
}

.pressed_5664 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.layout_56e2 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.dropdown-8aa4 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.preview_first_7b51 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.thumbnail-c035 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.button_2c1f {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.button_2c1f p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.widget-07e3 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.secondary-050c {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.carousel_d0f3 {
  display: grid;
  gap: 2rem;
}

.left_0214 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.item-f33d {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.footer-static-4815 {
  flex: 1;
}

.layout_3844 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.layout_3844 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.search-soft-56a6 {
  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;
}

.yellow_085c {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.preview-center-21a4 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.preview-center-21a4 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.layout_left_80db {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.layout_left_80db a {
  font-size: 0.875rem;
  font-weight: 500;
}

.accent_liquid_8a53 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.accent_liquid_8a53 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.accent_liquid_8a53 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.accent_liquid_8a53 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.up_2ee2 {
  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 === */
.status-east-b93e {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.content-1d3c {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.article_3dfc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.clean-a104 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.clean-a104 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.clean-a104 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.clean-a104 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;
}

.clean-a104 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.clean-a104 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.brown-baa5 {
  padding: 3rem 0 5rem;
}

.summary-green-c4aa {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.summary-green-c4aa.table_mini_a4c7 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.active-212e {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.avatar_cb23 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.module-center-0ba5 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.module-center-0ba5 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.alert_large_fbfc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.bottom_6c27 {
  text-align: center;
}

.alert-light-5872 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.primary_9893 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.row_d041 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.dropdown_large_b4b7 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.short-5d6d {
  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;
}

.short-5d6d * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.short-5d6d:hover {
  box-shadow: var(--shadow-lg);
}

.short-5d6d.gradient-inner-7edf {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.short-5d6d h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.short-5d6d ul {
  margin: 1rem 0;
}

.short-5d6d li {
  margin-bottom: 0.75rem;
}

.middle_2ca3 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.clean-2acb {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.clean-2acb a {
  font-weight: 600;
}

/* === Data Tables === */
.smooth-91bd {
  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;
}

.smooth-91bd table {
  width: 100%;
  min-width: 600px;
}

.smooth-91bd thead {
  background-color: var(--primary-color);
  color: white;
}

.smooth-91bd th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.smooth-91bd td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.smooth-91bd tbody tr:hover {
  background-color: var(--bg-secondary);
}

.smooth-91bd tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.black_aa2d {
  list-style: none;
  margin: 1.5rem 0;
}

.black_aa2d li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.black_aa2d li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.lite_ed7e::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-22ce::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 === */
.tag_under_bf72 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.sort-d973 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.sort-d973 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.sort-d973 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.sort-d973 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tag_under_bf72 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.short-3c3a {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.short-3c3a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.description_down_85f4 {
  position: relative;
  margin-bottom: 3rem;
}

.pattern_bbd4 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.pattern_bbd4 .image_a1b2 {
  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;
}

.pro-2e15 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.pro-2e15 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.pro-2e15 ul {
  margin: 1rem 0;
}

.pro-2e15 li {
  margin-bottom: 0.75rem;
}

.silver-f4d6 {
  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 === */
.gas-538c {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.gas-538c h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.bright_2f4e {
  list-style: none;
  margin: 1.5rem 0;
}

.bright_2f4e li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.bright_2f4e a {
  font-weight: 600;
}

.layout-fluid-8b7b {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.breadcrumb-fixed-5258 {
  margin: 2.5rem 0;
}

.slow-003f {
  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;
}

.slow-003f:hover {
  box-shadow: var(--shadow-lg);
}

.slow-003f.fresh_987d {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.menu_complex_ccb1 {
  flex-shrink: 0;
}

.menu_complex_ccb1 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);
}

.element-active-577a h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.pressed-41bf,
.caption_fast_d720,
.wide-5b91 {
  width: 100%;
  margin: 1.5rem 0;
}

.item-a26e {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.item-a26e strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.motion-ec0f {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.motion-ec0f strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.tiny-b35b {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.tiny-b35b strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.filter_steel_60c1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.dark-14e7 {
  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;
}

.dark-14e7:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.dark-14e7.grid-tall-2e68 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.dark-14e7 .card-de48 {
  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;
}

.dark-14e7 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.shade-c812 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.label-f72c {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.label-f72c label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.in_455a {
  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 === */
.shadow-ec0a {
  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;
}

.west-af4a {
  background-color: var(--primary-color);
  color: white;
}

.west-af4a:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.module-c5ec {
  background-color: var(--text-secondary);
  color: white;
}

.module-c5ec:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.paragraph_de49 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.paragraph_de49:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.table-dcf6 {
  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;
}

.table-dcf6:hover {
  background-color: var(--primary-dark);
}

.modal-9668 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.tabs-copper-d534 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.popup-glass-3cbc {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.row_1341 {
  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 === */
.hard-44e5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.slow_f425 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.slow_f425 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.mask_7325 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.column-hot-208d {
  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;
}

.panel-7c59 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.image-small-4e71 {
  list-style: none;
  counter-reset: rank-counter;
}

.image-small-4e71 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.image-small-4e71 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;
}

.dropdown_bottom_ac52 {
  list-style: none;
}

.dropdown_bottom_ac52 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.footer-middle-1eab {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.progress-d403 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.progress-d403 .image-over-47f2 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.progress-d403 .shadow_gas_ecb2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.center_2175 {
  margin-top: 3rem;
}

.up-5ad6 {
  width: 100%;
}

.detail-edc4 {
  background-color: #fef3c7;
}

.photo_adf8 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.sidebar-bottom-cb96 {
  margin: 3rem 0;
}

.row-22ec {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.container-prev-0b8b {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.container-prev-0b8b:hover {
  box-shadow: var(--shadow-lg);
}

.container-prev-0b8b.dirty-4dff {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.block-29a2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.tabs_plasma_b408 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.tabs_plasma_b408 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.active_9107 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.container-prev-0b8b blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.shade_87a5 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.bottom_6351 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.gradient_06c5 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.box-9b9b {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.layout_center_ff6e {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.media_313b {
  margin-top: 1rem;
}

/* === FAQ Section === */
.hidden_c99a {
  max-width: 900px;
  margin: 0 auto;
}

.prev-fa63 {
  margin: 2rem 0;
}

.grid_tiny_d073 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.grid_tiny_d073 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.grid_tiny_d073 summary::-webkit-details-marker {
  display: none;
}

.grid_tiny_d073 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.breadcrumb_ed64 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.grid_tiny_d073[open] .breadcrumb_ed64 {
  transform: rotate(45deg);
}

.steel-f55e {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.steel-f55e p:last-child {
  margin-bottom: 0;
}

.notice-ff4d {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.title_smooth_067b {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.section_1e1a {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.section_1e1a p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.section_1e1a .shadow-ec0a {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.card-907d {
  max-width: 900px;
  margin: 0 auto;
}

.grid_3322 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.green_1e61 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.green_1e61.fn-success-22ce {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.lower-fd8d {
  font-size: 3rem;
  line-height: 1;
}

.label_6aec h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.yellow-f8f7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.filter-e5ed,
.shade_bottom_a49a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.filter-e5ed h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.shade_bottom_a49a h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.card-white-d537,
.accordion-gas-a1c3 {
  margin: 1.5rem 0;
}

.card-white-d537 li,
.accordion-gas-a1c3 li {
  margin-bottom: 1rem;
}

.preview_copper_ab70 {
  margin: 3rem 0;
}

.button-old-617c {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.button-old-617c h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.button-old-617c ol {
  margin: 1rem 0;
}

.button-old-617c li {
  margin-bottom: 0.75rem;
}

.aside_9ad7 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.layout-thick-dbc4 {
  margin: 2rem 0;
}

.warm_fc9e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.grid-hard-2188 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.item-west-abfb {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.background_lite_1dd2 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.accordion_yellow_c27d {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.pagination-hovered-34c9 {
  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;
}

.pagination-hovered-34c9 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.container_tall_e761 {
  flex: 1;
}

.container_tall_e761 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.layout-over-62b8 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.aside-center-027b p {
  margin-bottom: 1rem;
}

.active-fresh-a5c1 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.secondary_cf60 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.item_cf62 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.item_cf62 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.element_cc52 h3 {
  margin-bottom: 1.5rem;
}

.layout_stale_65a7 {
  display: grid;
  gap: 2rem;
}

.breadcrumb_df4e {
  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;
}

.breadcrumb_df4e img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.breadcrumb_df4e h4 {
  margin: 0 0 0.25rem;
}

.breadcrumb_df4e p {
  margin: 0;
  font-size: 0.9375rem;
}

.texture-fresh-7c14 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.huge-a6ec {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.huge-a6ec h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.huge-a6ec ul {
  margin: 1.5rem 0;
}

.huge-a6ec li {
  margin-bottom: 0.75rem;
}

.white-d0e8 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.small_88ee {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.cool_dc3f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.element-middle-955e h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.element-middle-955e p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.pattern_e866 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.pattern_e866 a {
  color: rgba(255, 255, 255, 0.8);
}

.backdrop-under-cae6 {
  list-style: none;
}

.backdrop-under-cae6 li {
  margin-bottom: 0.75rem;
}

.backdrop-under-cae6 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.backdrop-under-cae6 a:hover {
  color: white;
}

.summary_simple_fab4 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.background_dabd {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.outline_liquid_fc50 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.input-hard-b299 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.dropdown_916d {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .sort_6a3b {
    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;
  }

  .shade_hard_fdfb {
    font-size: 1.5rem !important;
  }

  .tooltip_bright_7108 {
    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 */
  .short-5d6d,
  .outline-orange-5804,
  .pro-2e15,
  .element-active-577a,
  .block-29a2,
  .container-prev-0b8b,
  .steel-f55e,
  .medium-1005,
  .widget-07e3,
  .active-212e {
    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 */
  .aside_soft_733e {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-static-4815 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .item-f33d {
    flex-shrink: 0;
  }

  .container_tall_e761 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .layout_3844,
  .yellow_085c {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .yellow_085c {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .text-b2af {
    display: none;
  }

  /* Show mobile actions */
  .form_dark_691d {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .tabs_motion_23d1 {
    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;
  }

  .tabs_motion_23d1 svg {
    flex-shrink: 0;
  }

  .tabs_motion_23d1 .basic_b4a7 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .tabs_motion_23d1 .copper_c666 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .surface_f860 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .large_541c {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .tabs_motion_23d1:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .mask-39ce {
    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;
  }

  .mask-39ce.fn-active-22ce {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mask-39ce li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .mask-39ce li:last-child {
    border-bottom: none;
  }

  .mask-39ce a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .icon-2efb {
    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;
  }

  .icon-2efb li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .icon-2efb li:last-child {
    border-bottom: none;
  }

  .icon-2efb a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .message_dbeb {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .avatar-47ac {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .dynamic_0705,
  .static_ef42 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .dynamic_0705 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .static_ef42 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .icon-2efb.fn-active-22ce {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .carousel_bright_1957 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .cold_cf7e {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .banner-8380 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .warm-5325 {
    margin-top: 0;
  }

  /* Hero section */
  .warm-5325 {
    padding: 2rem 0 1.5rem;
  }

  .tooltip_bright_7108 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .widget-07e3 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .list_medium_78fa {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .link_purple_7d16 {
    max-width: 100%;
    border-radius: 8px;
  }

  .top-3ca1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .popup-5508 {
    padding: 1rem;
  }

  .surface_current_ad79 {
    font-size: 1.5rem;
  }

  .purple_ca7e {
    font-size: 0.75rem;
  }

  .medium-1005 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .disabled_6936 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .disabled_6936 .shadow-ec0a {
    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 */
  .article_3dfc {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .slow-003f {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .menu_complex_ccb1 {
    margin-bottom: 1rem;
  }

  /* Author */
  .left_0214 {
    flex-direction: column;
  }

  .pagination-hovered-34c9 {
    flex-direction: column;
  }

  /* Quotes */
  .block-29a2 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .yellow-f8f7 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .background_lite_1dd2 {
    flex-direction: column;
  }

  .background_lite_1dd2 .shadow-ec0a {
    width: 100%;
  }

  /* Version comparison */
  .filter_steel_60c1 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .hard-44e5 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .cool_dc3f {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .outline_liquid_fc50 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .smooth-91bd,
  .caption_fast_d720,
  .mask_warm_9720,
  .up-5ad6,
  .pressed-41bf,
  .wide-5b91 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .smooth-91bd table,
  .caption_fast_d720 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .in_455a {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .sort_6a3b {
    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;
  }

  .shade_hard_fdfb {
    font-size: 1.25rem !important;
  }

  .tooltip_bright_7108 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .cold_cf7e {
    position: fixed;
  }

  .banner-8380 {
    padding: 0.625rem 0;
  }

  .avatar-621b img {
    height: 26px;
  }

  .icon-2efb {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .mask-39ce {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .tabs_motion_23d1 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .tabs_motion_23d1 svg {
    width: 18px;
    height: 18px;
  }

  .tabs_motion_23d1 .basic_b4a7 {
    font-size: 0.7rem;
  }

  .tabs_motion_23d1 .copper_c666 {
    font-size: 0.65rem;
  }

  .dynamic_0705,
  .static_ef42 {
    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, .sort_6a3b, .carousel_easy_c435, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .list_medium_78fa {
    padding: 1rem;
  }

  .top-3ca1 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .popup-5508 {
    padding: 0.875rem;
  }

  .surface_current_ad79 {
    font-size: 1.25rem;
  }

  .disabled_6936 .shadow-ec0a {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .tooltip_bright_7108 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .shadow-ec0a {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .modal-9668 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .slow-003f {
    padding: 1rem;
  }

  .menu_complex_ccb1 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .short-5d6d,
  .left_46c8,
  .simple_1531,
  .outline-smooth-1813 {
    padding: 1rem;
  }
}

@media print {
  .cold_cf7e,
  .status-east-b93e,
  .carousel_bright_1957,
  .shadow-ec0a,
  .small_88ee {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .sort_6a3b {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.gallery_75f2 {
  margin-bottom: 3rem;
  text-align: center;
}

.shade_hard_fdfb {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.thumbnail-bd69 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.thumbnail_dirty_4560,
.card-smooth-2ac0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.bright_c03f {
  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;
}

.bright_c03f:hover {
  transform: translateY(-5px);
}

.bright_c03f strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.bright_c03f span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.paragraph_9bec {
  margin: 3rem 0;
}

.description_thick_fb01 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.item-simple-804f {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.item-simple-804f:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.description-9103 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.over_76e7 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.status-liquid-be5b {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.column-last-ec2f {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.layout-pro-a8f4 {
  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;
}

.layout-pro-a8f4:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.layout-pro-a8f4.bright_fc0a {
  border-left: 4px solid var(--primary-color);
}

.tooltip_thick_8ee0 {
  flex-shrink: 0;
}

.tooltip_thick_8ee0 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.preview_bdf5 {
  flex: 1;
}

.preview_bdf5 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.gold-e34c {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.bottom_3eb0,
.photo-eb3d,
.backdrop_wood_291d {
  margin-bottom: 1.5rem;
}

.bottom_3eb0 h4,
.photo-eb3d h4,
.backdrop_wood_291d h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bottom_3eb0 ul,
.photo-eb3d ul,
.backdrop_wood_291d ul {
  list-style: none;
  padding: 0;
}

.bottom_3eb0 li,
.photo-eb3d li,
.backdrop_wood_291d li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.bottom_3eb0 li:before,
.photo-eb3d li:before,
.backdrop_wood_291d li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.stale_0be5 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.stale_0be5 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;
}

.stale_0be5 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.video_cool_dac4 { margin: 2rem 0; }
.avatar_stone_dd72 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.avatar_stone_dd72 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.footer-south-701b p { margin-bottom: 1rem; line-height: 1.7; }
.footer-south-701b strong { color: var(--text-primary); }
.footer-south-701b ul { list-style: none; padding-left: 0; }
.footer-south-701b ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.footer-south-701b ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.footer_3de1 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.clean_4707 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.clean_4707:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.accordion_b886 { font-size: 3rem; margin-bottom: 1rem; }
.clean_4707 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.clean_4707 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.search-7fd2 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.search-7fd2 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.feature_728e { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.detail-active-cff5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.over-78f9 { text-align: center; }
.list-28ef { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.box-upper-c0e1 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.surface_static_e654 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.container-next-35ae { margin: 2rem 0; }
.gradient_7707 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.gradient_7707 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.gradient_7707 p, .gradient_7707 ul { line-height: 1.7; }
.gradient_7707 ul { list-style: none; padding-left: 0; }
.gradient_7707 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.gradient_7707 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.top-ae51 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.grid-0814 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.iron-e0aa { text-align: center; }
.badge_pressed_3e00 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.gold-79b3 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.modal-0fe6 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.notification-warm-e7d1 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.static_e3c1 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.static_e3c1:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.static_e3c1 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.static_e3c1 p, .static_e3c1 ul { line-height: 1.7; }
.static_e3c1 ul { list-style: none; padding-left: 0; }
.static_e3c1 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.static_e3c1 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 84f9 */
.shadow-element-a1 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.1;
}
