/* ============================================
   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 */
.footer-cool-8e63 p,
.wood_a422,
.breadcrumb_prev_feb9,
.large-821a,
.focused_b94b,
.notice_c116,
.module_2701,
.layout-clean-b0c9 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.thumbnail-glass-9770 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.thumbnail-glass-9770 > *,
.nav-slow-7cdc,
.footer-cool-8e63,
.focus-full-fb92 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .thumbnail-glass-9770 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .thumbnail-glass-9770 {
    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 === */
.icon-4682 {
  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 */
.icon-4682.carousel-8f5a {
  box-shadow: var(--shadow-md);
}

.content_green_6cfb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.form_88d4 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.card_small_9535 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.light_a1eb {
  display: none;
}

/* Hide mobile actions on desktop */
.row-550d {
  display: none;
}

.over_924d a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.over_924d a:hover,
.over_924d a.fn-active-d5e3 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.container-dim-9483 {
  margin-left: 1rem;
}

.slider_complex_7b34 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.static_a360,
.content-5526 {
  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;
}

.static_a360 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.static_a360: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;
}

.content-5526 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.content-5526: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;
}

.static_a360 svg,
.content-5526 svg {
  flex-shrink: 0;
}

.slider_0994 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.summary_warm_2e40 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.summary_warm_2e40::before,
.summary_warm_2e40::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.summary_warm_2e40::before {
  top: -7px;
}

.summary_warm_2e40::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.pattern-middle-5759 {
  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 === */
.badge_stale_881c {
  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);
}

.silver-77ce {
  margin: 0 0 2rem;
  text-align: center;
}

.iron-cd21 {
  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;
}

.iron-cd21:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.detail_6b15 {
  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);
}

.detail_6b15 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.smooth_a5ee {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.link-ad69 {
  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;
}

.link-ad69:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.detail_liquid_c526 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hard_cf9e {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.backdrop-d07f {
  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);
}

.backdrop-d07f .hover_last_70c8 {
  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;
}

.backdrop-d07f .hover_last_70c8 svg {
  flex-shrink: 0;
}

.backdrop-d07f .block-easy-e62a {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.backdrop-d07f .block-easy-e62a: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);
}

.backdrop-d07f .white_9ff4 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.backdrop-d07f .white_9ff4: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) {
  .badge_stale_881c {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .iron-cd21 {
    max-width: 100%;
  }

  .smooth_a5ee {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .link-ad69 {
    padding: 1rem;
  }

  .detail_liquid_c526 {
    font-size: 1.5rem;
  }

  .hard_cf9e {
    font-size: 0.75rem;
  }

  .detail_6b15 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .backdrop-d07f {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .backdrop-d07f .hover_last_70c8 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .smooth_a5ee {
    grid-template-columns: 1fr;
  }
}

.nav_paper_4feb {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.selected-2e56 {
  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 === */
.gas-6641 {
  margin-bottom: 2.5rem;
}

.highlight-476b {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.nav_paper_4feb {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.media-solid-31c5 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.description_fast_c755 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.feature-1367 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.outline_dae8 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.backdrop-508c {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.hard_e847 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.sidebar-2484 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.sidebar-2484 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.search_feee {
  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);
}

.tag_d072 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.lite-19c4 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.avatar-0008 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.badge_07f2 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.mini_a193 {
  display: grid;
  gap: 1rem;
}

.main_cc07 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.picture_09c5 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.accent_blue_b928 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.shadow_84bc {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.steel_330d {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.slider_7ef6 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.slider_7ef6 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.wood_a422 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.shade_lower_33ab {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.south-95ec {
  display: grid;
  gap: 2rem;
}

.status-9346 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.description_fast_c755 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.media-solid-31c5 {
  flex: 1;
}

.outline_dae8 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.outline_dae8 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.message-thick-d140 {
  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;
}

.backdrop-508c {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.grid_b92a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.grid_b92a span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.hero-5113 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.hero-5113 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.hot_7f13 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.hot_7f13 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.hot_7f13 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hot_7f13 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.logo_pink_ecae {
  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 === */
.yellow-7abb {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.title-ddd3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.banner_8b58 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.stone_cfa1 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.stone_cfa1 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.stone_cfa1 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.stone_cfa1 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;
}

.stone_cfa1 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.stone_cfa1 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.footer-cool-8e63 {
  padding: 3rem 0 5rem;
}

.focus-full-fb92 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.focus-full-fb92.next_8be0 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.breadcrumb_prev_feb9 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.action-f57e {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.header_8d82 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.header_8d82 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.wood_6d2a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.smooth_0166 {
  text-align: center;
}

.green-c5ea {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.menu_78e7 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.module_ff7f {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.notice_c116 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.large-821a {
  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;
}

.large-821a * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.large-821a:hover {
  box-shadow: var(--shadow-lg);
}

.large-821a.secondary_ddd4 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.large-821a h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.large-821a ul {
  margin: 1rem 0;
}

.large-821a li {
  margin-bottom: 0.75rem;
}

.west_f3d9 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.hover-steel-2a0f {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.hover-steel-2a0f a {
  font-weight: 600;
}

/* === Data Tables === */
.narrow_6b3a {
  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;
}

.narrow_6b3a table {
  width: 100%;
  min-width: 600px;
}

.narrow_6b3a thead {
  background-color: var(--primary-color);
  color: white;
}

.narrow_6b3a th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.narrow_6b3a td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.narrow_6b3a tbody tr:hover {
  background-color: var(--bg-secondary);
}

.narrow_6b3a tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.overlay_outer_d24e {
  list-style: none;
  margin: 1.5rem 0;
}

.overlay_outer_d24e li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.overlay_outer_d24e li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.fixed-18af::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-d5e3::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 === */
.sidebar_liquid_9a08 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.row_west_c7fc {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.row_west_c7fc img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.row_west_c7fc strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.row_west_c7fc span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.sidebar_liquid_9a08 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.module_2701 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.module_2701::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.media_solid_ba92 {
  position: relative;
  margin-bottom: 3rem;
}

.primary-fast-cb65 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.primary-fast-cb65 .backdrop-bf7c {
  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;
}

.pagination-small-e000 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.pagination-small-e000 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.pagination-small-e000 ul {
  margin: 1rem 0;
}

.pagination-small-e000 li {
  margin-bottom: 0.75rem;
}

.pro_6ff3 {
  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 === */
.up-e158 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.up-e158 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.column_orange_20f3 {
  list-style: none;
  margin: 1.5rem 0;
}

.column_orange_20f3 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.column_orange_20f3 a {
  font-weight: 600;
}

.mask-d088 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.layout-clean-b0c9 {
  margin: 2.5rem 0;
}

.sort_5cf6 {
  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;
}

.sort_5cf6:hover {
  box-shadow: var(--shadow-lg);
}

.sort_5cf6.north_59b6 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.gradient_bronze_84f0 {
  flex-shrink: 0;
}

.gradient_bronze_84f0 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);
}

.accent-hot-08c3 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.shade_1ec6,
.picture_red_d4fa,
.detail_ea9c {
  width: 100%;
  margin: 1.5rem 0;
}

.main_old_67ee {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.main_old_67ee strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.fluid-b7b1 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.fluid-b7b1 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.frame-copper-9975 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.frame-copper-9975 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.footer-a742 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.logo-black-3d4b {
  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;
}

.logo-black-3d4b:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.logo-black-3d4b.disabled-active-7554 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.logo-black-3d4b .up-dd4a {
  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;
}

.logo-black-3d4b h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.slow_5b47 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.full_7b22 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.full_7b22 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.shadow-6d79 {
  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 === */
.hover_last_70c8 {
  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;
}

.block-easy-e62a {
  background-color: var(--primary-color);
  color: white;
}

.block-easy-e62a:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.white_9ff4 {
  background-color: var(--text-secondary);
  color: white;
}

.white_9ff4:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.tag_b4c1 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.tag_b4c1:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.accordion_rough_d92d {
  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;
}

.accordion_rough_d92d:hover {
  background-color: var(--primary-dark);
}

.white_45f8 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.slider_e462 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.table-7c01 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.logo-simple-7eb2 {
  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 === */
.item_paper_467c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.primary-5c2a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.primary-5c2a h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.icon-5c6b {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.border_66f2 {
  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;
}

.focused_cb11 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.center-d339 {
  list-style: none;
  counter-reset: rank-counter;
}

.center-d339 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.center-d339 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;
}

.button-42da {
  list-style: none;
}

.button-42da li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.upper-a3db {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.sidebar-tiny-fe16 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-tiny-fe16 .current_fa74 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.sidebar-tiny-fe16 .message-middle-dbef {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.summary-static-de0b {
  margin-top: 3rem;
}

.section-huge-9031 {
  width: 100%;
}

.overlay_out_277a {
  background-color: #fef3c7;
}

.advanced-ec62 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.focus_dd1e {
  margin: 3rem 0;
}

.video_b8e2 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.notice-59c7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.notice-59c7:hover {
  box-shadow: var(--shadow-lg);
}

.notice-59c7.texture_b28b {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.sort_wood_e68e {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.dropdown-2943 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.dropdown-2943 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.down_6028 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.notice-59c7 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.warm_3626 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.paragraph-0bfc {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.purple-ce4a {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.tertiary_medium_0a0a {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.table_f0fc {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.article_aea7 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.center-a003 {
  max-width: 900px;
  margin: 0 auto;
}

.modal-lower-9ba0 {
  margin: 2rem 0;
}

.upper_963e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.upper_963e summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.upper_963e summary::-webkit-details-marker {
  display: none;
}

.upper_963e summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.solid-d11e {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.upper_963e[open] .solid-d11e {
  transform: rotate(45deg);
}

.article_west_12a1 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.article_west_12a1 p:last-child {
  margin-bottom: 0;
}

.item-3073 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.caption-e176 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.primary-over-54fc {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.primary-over-54fc p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.primary-over-54fc .hover_last_70c8 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.west_4466 {
  max-width: 900px;
  margin: 0 auto;
}

.filter-yellow-27b9 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.info_top_b2a7 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.info_top_b2a7.fn-success-d5e3 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.over-3aa0 {
  font-size: 3rem;
  line-height: 1;
}

.background-tiny-c369 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.pro-6e19 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.button_next_d6d1,
.border_over_6fff {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.button_next_d6d1 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.border_over_6fff h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.list_2c1d,
.notification-center-3faf {
  margin: 1.5rem 0;
}

.list_2c1d li,
.notification-center-3faf li {
  margin-bottom: 1rem;
}

.clean_a00f {
  margin: 3rem 0;
}

.stale_6d07 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.stale_6d07 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.stale_6d07 ol {
  margin: 1rem 0;
}

.stale_6d07 li {
  margin-bottom: 0.75rem;
}

.modal-bronze-6be2 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.paper-4b58 {
  margin: 2rem 0;
}

.stone_6e87 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.search_a179 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.video_17d6 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.status-0aaa {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.solid_cbd6 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.description-cool-2f06 {
  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;
}

.description-cool-2f06 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.feature-1367 {
  flex: 1;
}

.feature-1367 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.summary-gold-2537 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.title_clean_4043 p {
  margin-bottom: 1rem;
}

.gradient-ed09 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.heading_middle_9988 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.primary_a451 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.primary_a451 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.dim_caaa h3 {
  margin-bottom: 1.5rem;
}

.caption-dbad {
  display: grid;
  gap: 2rem;
}

.filter-cold-f4ca {
  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;
}

.filter-cold-f4ca img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.filter-cold-f4ca h4 {
  margin: 0 0 0.25rem;
}

.filter-cold-f4ca p {
  margin: 0;
  font-size: 0.9375rem;
}

.overlay_00fa {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.basic-0226 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.basic-0226 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.basic-0226 ul {
  margin: 1.5rem 0;
}

.basic-0226 li {
  margin-bottom: 0.75rem;
}

.dim-ee08 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.column-a64c {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.tooltip_lite_8044 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer_gold_ba0c h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.footer_gold_ba0c p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.item-fixed-d3b1 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.item-fixed-d3b1 a {
  color: rgba(255, 255, 255, 0.8);
}

.gallery_2943 {
  list-style: none;
}

.gallery_2943 li {
  margin-bottom: 0.75rem;
}

.gallery_2943 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.gallery_2943 a:hover {
  color: white;
}

.input-49f7 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.plasma-30c5 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.aside_smooth_ee02 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.focus_61a7 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.north-1626 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .thumbnail-glass-9770 {
    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;
  }

  .container-next-d315 {
    font-size: 1.5rem !important;
  }

  .highlight-476b {
    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 */
  .large-821a,
  .focused_b94b,
  .pagination-small-e000,
  .accent-hot-08c3,
  .sort_wood_e68e,
  .notice-59c7,
  .article_west_12a1,
  .detail_6b15,
  .wood_a422,
  .breadcrumb_prev_feb9 {
    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 */
  .nav_paper_4feb {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .media-solid-31c5 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .description_fast_c755 {
    flex-shrink: 0;
  }

  .feature-1367 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .outline_dae8,
  .backdrop-508c {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .backdrop-508c {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .card_small_9535 {
    display: none;
  }

  /* Show mobile actions */
  .row-550d {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .light_6dff {
    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;
  }

  .light_6dff svg {
    flex-shrink: 0;
  }

  .light_6dff .status_static_6b34 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .light_6dff .large_8ec2 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .copper-8eab {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .primary-over-ebe8 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .light_6dff:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .light_a1eb {
    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;
  }

  .light_a1eb.fn-active-d5e3 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .light_a1eb li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .light_a1eb li:last-child {
    border-bottom: none;
  }

  .light_a1eb a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .over_924d {
    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;
  }

  .over_924d li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .over_924d li:last-child {
    border-bottom: none;
  }

  .over_924d a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .container-dim-9483 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .slider_complex_7b34 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .static_a360,
  .content-5526 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .static_a360 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .content-5526 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .over_924d.fn-active-d5e3 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .slider_0994 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .icon-4682 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .content_green_6cfb {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .pattern-middle-5759 {
    margin-top: 0;
  }

  /* Hero section */
  .pattern-middle-5759 {
    padding: 2rem 0 1.5rem;
  }

  .highlight-476b {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .wood_a422 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .badge_stale_881c {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .iron-cd21 {
    max-width: 100%;
    border-radius: 8px;
  }

  .smooth_a5ee {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .link-ad69 {
    padding: 1rem;
  }

  .detail_liquid_c526 {
    font-size: 1.5rem;
  }

  .hard_cf9e {
    font-size: 0.75rem;
  }

  .detail_6b15 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .backdrop-d07f {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .backdrop-d07f .hover_last_70c8 {
    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 */
  .banner_8b58 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .sort_5cf6 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .gradient_bronze_84f0 {
    margin-bottom: 1rem;
  }

  /* Author */
  .status-9346 {
    flex-direction: column;
  }

  .description-cool-2f06 {
    flex-direction: column;
  }

  /* Quotes */
  .sort_wood_e68e {
    flex-direction: column;
  }

  /* Pros/Cons */
  .pro-6e19 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .status-0aaa {
    flex-direction: column;
  }

  .status-0aaa .hover_last_70c8 {
    width: 100%;
  }

  /* Version comparison */
  .footer-a742 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .item_paper_467c {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .tooltip_lite_8044 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .aside_smooth_ee02 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .narrow_6b3a,
  .picture_red_d4fa,
  .gold-1369,
  .section-huge-9031,
  .shade_1ec6,
  .detail_ea9c {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .narrow_6b3a table,
  .picture_red_d4fa table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .shadow-6d79 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .thumbnail-glass-9770 {
    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;
  }

  .container-next-d315 {
    font-size: 1.25rem !important;
  }

  .highlight-476b {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .icon-4682 {
    position: fixed;
  }

  .content_green_6cfb {
    padding: 0.625rem 0;
  }

  .form_88d4 img {
    height: 26px;
  }

  .over_924d {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .light_a1eb {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .light_6dff {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .light_6dff svg {
    width: 18px;
    height: 18px;
  }

  .light_6dff .status_static_6b34 {
    font-size: 0.7rem;
  }

  .light_6dff .large_8ec2 {
    font-size: 0.65rem;
  }

  .static_a360,
  .content-5526 {
    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, .thumbnail-glass-9770, .nav-slow-7cdc, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .badge_stale_881c {
    padding: 1rem;
  }

  .smooth_a5ee {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .link-ad69 {
    padding: 0.875rem;
  }

  .detail_liquid_c526 {
    font-size: 1.25rem;
  }

  .backdrop-d07f .hover_last_70c8 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .highlight-476b {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .hover_last_70c8 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .white_45f8 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .sort_5cf6 {
    padding: 1rem;
  }

  .gradient_bronze_84f0 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .large-821a,
  .out-ec04,
  .fluid_f067,
  .dropdown-10c4 {
    padding: 1rem;
  }
}

@media print {
  .icon-4682,
  .yellow-7abb,
  .slider_0994,
  .hover_last_70c8,
  .column-a64c {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .thumbnail-glass-9770 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.picture_c47d {
  margin-bottom: 3rem;
  text-align: center;
}

.container-next-d315 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.search_purple_c696 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.background-8901,
.stale-0bca {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.hovered_8c35 {
  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;
}

.hovered_8c35:hover {
  transform: translateY(-5px);
}

.hovered_8c35 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.hovered_8c35 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.tooltip-copper-666f {
  margin: 3rem 0;
}

.dropdown_full_ff81 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.input_5a22 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.input_5a22:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.module-b7e4 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.huge_991f {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.status_under_d5e2 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.outline-88d4 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.carousel_0ea6 {
  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;
}

.carousel_0ea6:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.carousel_0ea6.texture_e5c3 {
  border-left: 4px solid var(--primary-color);
}

.article-2ad5 {
  flex-shrink: 0;
}

.article-2ad5 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.caption_c748 {
  flex: 1;
}

.caption_c748 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.thumbnail_1695 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.upper_c500,
.content_141d,
.feature_ddb0 {
  margin-bottom: 1.5rem;
}

.upper_c500 h4,
.content_141d h4,
.feature_ddb0 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.upper_c500 ul,
.content_141d ul,
.feature_ddb0 ul {
  list-style: none;
  padding: 0;
}

.upper_c500 li,
.content_141d li,
.feature_ddb0 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.upper_c500 li:before,
.content_141d li:before,
.feature_ddb0 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.red_ddd8 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.red_ddd8 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;
}

.red_ddd8 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.pagination_upper_29ca { margin: 2rem 0; }
.outline_bronze_b409 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.outline_bronze_b409 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.filter_tiny_c8d4 p { margin-bottom: 1rem; line-height: 1.7; }
.filter_tiny_c8d4 strong { color: var(--text-primary); }
.filter_tiny_c8d4 ul { list-style: none; padding-left: 0; }
.filter_tiny_c8d4 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.filter_tiny_c8d4 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.hero-static-153f { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.input-9ef9 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.input-9ef9:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.content-over-0fa4 { font-size: 3rem; margin-bottom: 1rem; }
.input-9ef9 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.input-9ef9 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.liquid_ac16 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.liquid_ac16 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.under-c92d { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.image-b8ce { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.secondary_last_aa73 { text-align: center; }
.motion-cfb0 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.thick_faa1 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.hovered_388e { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.highlight-68b6 { margin: 2rem 0; }
.banner_4135 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.banner_4135 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.banner_4135 p, .banner_4135 ul { line-height: 1.7; }
.banner_4135 ul { list-style: none; padding-left: 0; }
.banner_4135 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.banner_4135 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.status_d3b1 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.under_fd49 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.focused_771d { text-align: center; }
.backdrop_narrow_990b { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.thick-84d0 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.text-ecac { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.preview_ffc5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.article_warm_ace1 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.article_warm_ace1:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.article_warm_ace1 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.article_warm_ace1 p, .article_warm_ace1 ul { line-height: 1.7; }
.article_warm_ace1 ul { list-style: none; padding-left: 0; }
.article_warm_ace1 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.article_warm_ace1 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 77e4 */
.promo-block-b0 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.3;
}
