/* ============================================
   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 */
.avatar-5a99 p,
.tertiary-hard-c4f6,
.header-699f,
.overlay-0a26,
.bright-674b,
.description-down-d6de,
.gas-a564,
.shadow_action_7e09 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.yellow-ebe3 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.yellow-ebe3 > *,
.plasma-62b1,
.avatar-5a99,
.grid-8c72 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .yellow-ebe3 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .yellow-ebe3 {
    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 === */
.silver-213c {
  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 */
.silver-213c.wrapper-5820 {
  box-shadow: var(--shadow-md);
}

.badge-ae11 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.border_fast_cf59 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.hot-e427 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.badge_cafb {
  display: none;
}

/* Hide mobile actions on desktop */
.column_3c33 {
  display: none;
}

.item_iron_4a62 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.item_iron_4a62 a:hover,
.item_iron_4a62 a.fn-active-f4e4 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.card_2501 {
  margin-left: 1rem;
}

.disabled_d005 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.input-a46e,
.menu_bc6c {
  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;
}

.input-a46e {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.input-a46e: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;
}

.menu_bc6c {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.menu_bc6c: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;
}

.input-a46e svg,
.menu_bc6c svg {
  flex-shrink: 0;
}

.badge_plasma_07b0 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.header_down_d4b3 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.header_down_d4b3::before,
.header_down_d4b3::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.header_down_d4b3::before {
  top: -7px;
}

.header_down_d4b3::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.frame_gas_d805 {
  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 === */
.logo_b469 {
  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);
}

.element-stale-c975 {
  margin: 0 0 2rem;
  text-align: center;
}

.west_c79e {
  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;
}

.west_c79e:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.paragraph_b538 {
  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);
}

.paragraph_b538 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.complex-74d1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.plasma-5fe1 {
  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;
}

.plasma-5fe1:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.chip-white-5ca3 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.notification-center-7e2e {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.new_a3f4 {
  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);
}

.new_a3f4 .backdrop-plasma-7fb4 {
  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;
}

.new_a3f4 .backdrop-plasma-7fb4 svg {
  flex-shrink: 0;
}

.new_a3f4 .advanced_6446 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.new_a3f4 .advanced_6446: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);
}

.new_a3f4 .column_top_1b21 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.new_a3f4 .column_top_1b21: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) {
  .logo_b469 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .west_c79e {
    max-width: 100%;
  }

  .complex-74d1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .plasma-5fe1 {
    padding: 1rem;
  }

  .chip-white-5ca3 {
    font-size: 1.5rem;
  }

  .notification-center-7e2e {
    font-size: 0.75rem;
  }

  .paragraph_b538 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .new_a3f4 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .new_a3f4 .backdrop-plasma-7fb4 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .complex-74d1 {
    grid-template-columns: 1fr;
  }
}

.logo-advanced-98d6 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.modal_0d5a {
  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 === */
.hero_hovered_1285 {
  margin-bottom: 2.5rem;
}

.row-2ff9 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.logo-advanced-98d6 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.up_a534 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bright_df8a {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.menu-down-d38e {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.plasma_3611 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.footer-clean-1c5e {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.notice-fe74 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.input_410c {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.input_410c svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.main_2805 {
  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);
}

.list_east_1996 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.card-ee0e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.dim-6815 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.footer-c987 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.hidden-wide-d733 {
  display: grid;
  gap: 1rem;
}

.next_d1f3 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.medium_3b4f {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.item-3726 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.brown_8884 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.gold-1148 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.header-stone-da95 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.header-stone-da95 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.tertiary-hard-c4f6 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.thick_b600 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.banner-590a {
  display: grid;
  gap: 2rem;
}

.down-f24a {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.bright_df8a {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.up_a534 {
  flex: 1;
}

.plasma_3611 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.plasma_3611 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.motion_360b {
  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;
}

.footer-clean-1c5e {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.aside-5283 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.aside-5283 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.prev-ee36 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.prev-ee36 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.video_9ae9 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.video_9ae9 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.video_9ae9 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.video_9ae9 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.current-4639 {
  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 === */
.under-6712 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.widget_west_5e93 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.header_ea31 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pattern_6c64 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.pattern_6c64 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.pattern_6c64 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.pattern_6c64 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;
}

.pattern_6c64 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.pattern_6c64 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.avatar-5a99 {
  padding: 3rem 0 5rem;
}

.grid-8c72 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.grid-8c72.video_prev_8875 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.header-699f {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.title_under_2756 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.fresh_f245 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.fresh_f245 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.backdrop_dark_9365 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.search_short_803c {
  text-align: center;
}

.sort-6c33 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.item-blue-71e7 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.search-7d70 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.description-down-d6de {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.overlay-0a26 {
  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;
}

.overlay-0a26 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.overlay-0a26:hover {
  box-shadow: var(--shadow-lg);
}

.overlay-0a26.breadcrumb_a82c {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.overlay-0a26 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.overlay-0a26 ul {
  margin: 1rem 0;
}

.overlay-0a26 li {
  margin-bottom: 0.75rem;
}

.item_5acd {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.hero_ac92 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.hero_ac92 a {
  font-weight: 600;
}

/* === Data Tables === */
.lite-a70b {
  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;
}

.lite-a70b table {
  width: 100%;
  min-width: 600px;
}

.lite-a70b thead {
  background-color: var(--primary-color);
  color: white;
}

.lite-a70b th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.lite-a70b td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.lite-a70b tbody tr:hover {
  background-color: var(--bg-secondary);
}

.lite-a70b tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.module_action_53ed {
  list-style: none;
  margin: 1.5rem 0;
}

.module_action_53ed li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.module_action_53ed li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.section-right-099c::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-f4e4::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 === */
.tertiary_5855 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.border-paper-19cb {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.border-paper-19cb img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.border-paper-19cb strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.border-paper-19cb span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tertiary_5855 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.gas-a564 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.gas-a564::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.tall_a5f7 {
  position: relative;
  margin-bottom: 3rem;
}

.last_78c4 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.last_78c4 .gallery-307d {
  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;
}

.feature_warm_f9d7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.feature_warm_f9d7 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.feature_warm_f9d7 ul {
  margin: 1rem 0;
}

.feature_warm_f9d7 li {
  margin-bottom: 0.75rem;
}

.form-mini-23e9 {
  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 === */
.notification-df66 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.notification-df66 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.photo_fluid_8cd4 {
  list-style: none;
  margin: 1.5rem 0;
}

.photo_fluid_8cd4 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.photo_fluid_8cd4 a {
  font-weight: 600;
}

.mask-thick-f6ba {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.shadow_action_7e09 {
  margin: 2.5rem 0;
}

.mask-first-f88a {
  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;
}

.mask-first-f88a:hover {
  box-shadow: var(--shadow-lg);
}

.mask-first-f88a.preview_d430 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.pagination_6b40 {
  flex-shrink: 0;
}

.pagination_6b40 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);
}

.short_a8a4 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.backdrop-1fdf,
.footer_bc12,
.full_3da3 {
  width: 100%;
  margin: 1.5rem 0;
}

.breadcrumb_over_6986 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.breadcrumb_over_6986 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.wrapper-ec4f {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.wrapper-ec4f strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.detail_lower_41f4 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.detail_lower_41f4 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.last-38eb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.outer_eb71 {
  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;
}

.outer_eb71:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.outer_eb71.header_black_b64b {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.outer_eb71 .action-d33b {
  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;
}

.outer_eb71 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.pagination-f10d {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.avatar-7ec7 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.avatar-7ec7 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.secondary-a27d {
  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 === */
.backdrop-plasma-7fb4 {
  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;
}

.advanced_6446 {
  background-color: var(--primary-color);
  color: white;
}

.advanced_6446:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.column_top_1b21 {
  background-color: var(--text-secondary);
  color: white;
}

.column_top_1b21:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.pattern-e604 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.pattern-e604:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.outline-043b {
  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;
}

.outline-043b:hover {
  background-color: var(--primary-dark);
}

.hover-c295 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.dropdown_f800 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.hidden-fresh-ae00 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.down-3324 {
  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 === */
.focus-6ee1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.filter_center_2cf3 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.filter_center_2cf3 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.shadow_rough_53f4 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.link-d42b {
  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;
}

.gas_672e {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.pink_e916 {
  list-style: none;
  counter-reset: rank-counter;
}

.pink_e916 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.pink_e916 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;
}

.static-bf05 {
  list-style: none;
}

.static-bf05 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.banner_east_595b {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.hidden-44af {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hidden-44af .paragraph-pink-9677 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.hidden-44af .progress-huge-4ae7 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.tag_over_263d {
  margin-top: 3rem;
}

.south_1ea9 {
  width: 100%;
}

.overlay_selected_d83d {
  background-color: #fef3c7;
}

.black_ab74 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.filter_blue_84ab {
  margin: 3rem 0;
}

.orange_611c {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.medium-2adc {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.medium-2adc:hover {
  box-shadow: var(--shadow-lg);
}

.medium-2adc.accent_short_0118 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.notification-glass-17b6 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.background_00ac strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.background_00ac span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.easy-af10 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.medium-2adc blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.progress-copper-64eb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.button-short-9344 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.breadcrumb_fast_51a4 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.backdrop-steel-6b13 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.row-liquid-e862 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.dim_c1c7 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.alert_selected_c0a3 {
  max-width: 900px;
  margin: 0 auto;
}

.medium-a9eb {
  margin: 2rem 0;
}

.right_4b5f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.right_4b5f summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.right_4b5f summary::-webkit-details-marker {
  display: none;
}

.right_4b5f summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.accordion_db28 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.right_4b5f[open] .accordion_db28 {
  transform: rotate(45deg);
}

.header_cf01 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.header_cf01 p:last-child {
  margin-bottom: 0;
}

.gradient_e776 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.liquid-d51e {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.widget_basic_c22d {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.widget_basic_c22d p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.widget_basic_c22d .backdrop-plasma-7fb4 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.clean-92a5 {
  max-width: 900px;
  margin: 0 auto;
}

.module-0f88 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.pagination-warm-2d96 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.pagination-warm-2d96.fn-success-f4e4 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.modal_yellow_41bc {
  font-size: 3rem;
  line-height: 1;
}

.item_cold_c97c h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.tall_9b02 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.outer-1894,
.link_cfa3 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.outer-1894 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.link_cfa3 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.full-e9c7,
.dim-849a {
  margin: 1.5rem 0;
}

.full-e9c7 li,
.dim-849a li {
  margin-bottom: 1rem;
}

.content-complex-ddc6 {
  margin: 3rem 0;
}

.alert-d911 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.alert-d911 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.alert-d911 ol {
  margin: 1rem 0;
}

.alert-d911 li {
  margin-bottom: 0.75rem;
}

.cool-5c01 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.modal-b328 {
  margin: 2rem 0;
}

.panel-bac7 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.dropdown-cefe {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.focused_2617 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.popup_copper_9aa8 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.logo-steel-9598 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.input-6861 {
  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;
}

.input-6861 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.menu-down-d38e {
  flex: 1;
}

.menu-down-d38e h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.icon_purple_6f5b {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.border_ee54 p {
  margin-bottom: 1rem;
}

.photo_6cfc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.icon_35de {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.widget-dynamic-ff05 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.widget-dynamic-ff05 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.footer_last_e34a h3 {
  margin-bottom: 1.5rem;
}

.sidebar_9d1f {
  display: grid;
  gap: 2rem;
}

.button-af10 {
  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;
}

.button-af10 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.button-af10 h4 {
  margin: 0 0 0.25rem;
}

.button-af10 p {
  margin: 0;
  font-size: 0.9375rem;
}

.layout_277d {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.container-5a78 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.container-5a78 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.container-5a78 ul {
  margin: 1.5rem 0;
}

.container-5a78 li {
  margin-bottom: 0.75rem;
}

.gallery_clean_15e3 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.black-c516 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.text_1d85 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.sort_e422 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.sort_e422 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.widget-8f23 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.widget-8f23 a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb_south_6376 {
  list-style: none;
}

.breadcrumb_south_6376 li {
  margin-bottom: 0.75rem;
}

.breadcrumb_south_6376 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.breadcrumb_south_6376 a:hover {
  color: white;
}

.dropdown-113a {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.row-88a6 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.main-iron-1730 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.accent_9041 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.iron_5f11 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .yellow-ebe3 {
    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;
  }

  .carousel_white_38c1 {
    font-size: 1.5rem !important;
  }

  .row-2ff9 {
    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 */
  .overlay-0a26,
  .bright-674b,
  .feature_warm_f9d7,
  .short_a8a4,
  .notification-glass-17b6,
  .medium-2adc,
  .header_cf01,
  .paragraph_b538,
  .tertiary-hard-c4f6,
  .header-699f {
    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 */
  .logo-advanced-98d6 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .up_a534 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .bright_df8a {
    flex-shrink: 0;
  }

  .menu-down-d38e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .plasma_3611,
  .footer-clean-1c5e {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .footer-clean-1c5e {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .hot-e427 {
    display: none;
  }

  /* Show mobile actions */
  .column_3c33 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .smooth-f977 {
    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;
  }

  .smooth-f977 svg {
    flex-shrink: 0;
  }

  .smooth-f977 .sort_white_aad4 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .smooth-f977 .photo_wood_52ba {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .link-ada9 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .large-81a7 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .smooth-f977:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .badge_cafb {
    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;
  }

  .badge_cafb.fn-active-f4e4 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .badge_cafb li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .badge_cafb li:last-child {
    border-bottom: none;
  }

  .badge_cafb a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .item_iron_4a62 {
    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;
  }

  .item_iron_4a62 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .item_iron_4a62 li:last-child {
    border-bottom: none;
  }

  .item_iron_4a62 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .card_2501 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .disabled_d005 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .input-a46e,
  .menu_bc6c {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .input-a46e {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .menu_bc6c {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .item_iron_4a62.fn-active-f4e4 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .badge_plasma_07b0 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .silver-213c {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .badge-ae11 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .frame_gas_d805 {
    margin-top: 0;
  }

  /* Hero section */
  .frame_gas_d805 {
    padding: 2rem 0 1.5rem;
  }

  .row-2ff9 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .tertiary-hard-c4f6 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .logo_b469 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .west_c79e {
    max-width: 100%;
    border-radius: 8px;
  }

  .complex-74d1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .plasma-5fe1 {
    padding: 1rem;
  }

  .chip-white-5ca3 {
    font-size: 1.5rem;
  }

  .notification-center-7e2e {
    font-size: 0.75rem;
  }

  .paragraph_b538 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .new_a3f4 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .new_a3f4 .backdrop-plasma-7fb4 {
    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 */
  .header_ea31 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .mask-first-f88a {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .pagination_6b40 {
    margin-bottom: 1rem;
  }

  /* Author */
  .down-f24a {
    flex-direction: column;
  }

  .input-6861 {
    flex-direction: column;
  }

  /* Quotes */
  .notification-glass-17b6 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .tall_9b02 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .popup_copper_9aa8 {
    flex-direction: column;
  }

  .popup_copper_9aa8 .backdrop-plasma-7fb4 {
    width: 100%;
  }

  /* Version comparison */
  .last-38eb {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .focus-6ee1 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .text_1d85 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .main-iron-1730 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .lite-a70b,
  .footer_bc12,
  .primary_dc9f,
  .south_1ea9,
  .backdrop-1fdf,
  .full_3da3 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .lite-a70b table,
  .footer_bc12 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .secondary-a27d {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .yellow-ebe3 {
    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;
  }

  .carousel_white_38c1 {
    font-size: 1.25rem !important;
  }

  .row-2ff9 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .silver-213c {
    position: fixed;
  }

  .badge-ae11 {
    padding: 0.625rem 0;
  }

  .border_fast_cf59 img {
    height: 26px;
  }

  .item_iron_4a62 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .badge_cafb {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .smooth-f977 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .smooth-f977 svg {
    width: 18px;
    height: 18px;
  }

  .smooth-f977 .sort_white_aad4 {
    font-size: 0.7rem;
  }

  .smooth-f977 .photo_wood_52ba {
    font-size: 0.65rem;
  }

  .input-a46e,
  .menu_bc6c {
    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, .yellow-ebe3, .plasma-62b1, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .logo_b469 {
    padding: 1rem;
  }

  .complex-74d1 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .plasma-5fe1 {
    padding: 0.875rem;
  }

  .chip-white-5ca3 {
    font-size: 1.25rem;
  }

  .new_a3f4 .backdrop-plasma-7fb4 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .row-2ff9 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .backdrop-plasma-7fb4 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .hover-c295 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .mask-first-f88a {
    padding: 1rem;
  }

  .pagination_6b40 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .overlay-0a26,
  .purple_b8dd,
  .article-out-587e,
  .logo-11ca {
    padding: 1rem;
  }
}

@media print {
  .silver-213c,
  .under-6712,
  .badge_plasma_07b0,
  .backdrop-plasma-7fb4,
  .black-c516 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .yellow-ebe3 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.dynamic_3e34 {
  margin-bottom: 3rem;
  text-align: center;
}

.carousel_white_38c1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.dirty_dfb8 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.out_d574,
.panel-916d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.link_gold_ebe4 {
  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;
}

.link_gold_ebe4:hover {
  transform: translateY(-5px);
}

.link_gold_ebe4 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.link_gold_ebe4 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.tall_1323 {
  margin: 3rem 0;
}

.container_e621 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.pattern-5228 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.pattern-5228:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.highlight-top-967d {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.content-lite-a0e1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.accordion_prev_a691 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.west_cc35 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.aside-896b {
  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;
}

.aside-896b:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.aside-896b.shadow_active_a0b7 {
  border-left: 4px solid var(--primary-color);
}

.fixed-0166 {
  flex-shrink: 0;
}

.fixed-0166 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.short_07ff {
  flex: 1;
}

.short_07ff h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form_next_509f {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.basic-cc07,
.backdrop_5cf0,
.simple-9ccc {
  margin-bottom: 1.5rem;
}

.basic-cc07 h4,
.backdrop_5cf0 h4,
.simple-9ccc h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.basic-cc07 ul,
.backdrop_5cf0 ul,
.simple-9ccc ul {
  list-style: none;
  padding: 0;
}

.basic-cc07 li,
.backdrop_5cf0 li,
.simple-9ccc li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.basic-cc07 li:before,
.backdrop_5cf0 li:before,
.simple-9ccc li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.slider-motion-8e6b {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.slider-motion-8e6b 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;
}

.slider-motion-8e6b a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.module-center-1eb1 { margin: 2rem 0; }
.module-full-0cf3 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.module-full-0cf3 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.left_2108 p { margin-bottom: 1rem; line-height: 1.7; }
.left_2108 strong { color: var(--text-primary); }
.left_2108 ul { list-style: none; padding-left: 0; }
.left_2108 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.left_2108 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.label_right_de14 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.outline-547b { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.outline-547b:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.large-cbfc { font-size: 3rem; margin-bottom: 1rem; }
.outline-547b h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.outline-547b p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.red-ea28 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.red-ea28 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.grid-484c { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.caption_b435 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.message_cd84 { text-align: center; }
.media-27fb { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.detail_3a72 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.thumbnail-gas-d728 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.box_north_2c88 { margin: 2rem 0; }
.large_b6f9 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.large_b6f9 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.large_b6f9 p, .large_b6f9 ul { line-height: 1.7; }
.large_b6f9 ul { list-style: none; padding-left: 0; }
.large_b6f9 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.large_b6f9 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.cool-96b6 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.hover-hard-a682 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.slow-664d { text-align: center; }
.purple-3e83 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.cold_5cc4 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.tag_motion_0ace { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.green_93f6 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.notice_liquid_3998 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.notice_liquid_3998:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.notice_liquid_3998 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.notice_liquid_3998 p, .notice_liquid_3998 ul { line-height: 1.7; }
.notice_liquid_3998 ul { list-style: none; padding-left: 0; }
.notice_liquid_3998 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.notice_liquid_3998 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: cf11 */
.widget-item-p9 {
  padding: 0.1rem;
  font-size: 14px;
  line-height: 1.2;
}
