/* ============================================
   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 */
.active-23bc p,
.pressed_c3bf,
.basic_ea95,
.plasma-0390,
.east-7b2a,
.slider-orange-7147,
.aside_aa8b,
.blue_3ccb {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.tertiary-cd9d {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.tertiary-cd9d > *,
.breadcrumb_1da2,
.active-23bc,
.tabs-179b {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .tertiary-cd9d {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .tertiary-cd9d {
    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 === */
.new-866b {
  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 */
.new-866b.item-brown-3a74 {
  box-shadow: var(--shadow-md);
}

.header-liquid-6550 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.header_409b img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.menu-south-e7f9 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.aside-rough-0598 {
  display: none;
}

/* Hide mobile actions on desktop */
.menu_lower_acab {
  display: none;
}

.grid_da20 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.grid_da20 a:hover,
.grid_da20 a.fn-active-5e00 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.primary_in_e1e3 {
  margin-left: 1rem;
}

.section-easy-c4ff {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.text_cool_6399,
.lite-38b8 {
  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;
}

.text_cool_6399 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.text_cool_6399: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;
}

.lite-38b8 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.lite-38b8: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;
}

.text_cool_6399 svg,
.lite-38b8 svg {
  flex-shrink: 0;
}

.out_cb5f {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.purple-1d1c {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.purple-1d1c::before,
.purple-1d1c::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.purple-1d1c::before {
  top: -7px;
}

.purple-1d1c::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.inner-8e71 {
  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 === */
.pagination_bronze_91c0 {
  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);
}

.list-orange-1408 {
  margin: 0 0 2rem;
  text-align: center;
}

.upper_12a6 {
  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;
}

.upper_12a6:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.texture-hot-400e {
  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);
}

.texture-hot-400e strong {
  color: var(--primary-color);
  font-weight: 700;
}

.title_active_748f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.layout_6052 {
  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;
}

.layout_6052:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.shade_dae4 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.huge-3a9d {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.hover_gas_bd67 {
  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);
}

.hover_gas_bd67 .backdrop-3307 {
  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;
}

.hover_gas_bd67 .backdrop-3307 svg {
  flex-shrink: 0;
}

.hover_gas_bd67 .popup_thick_1b5a {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.hover_gas_bd67 .popup_thick_1b5a: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);
}

.hover_gas_bd67 .modal_right_39d8 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.hover_gas_bd67 .modal_right_39d8: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) {
  .pagination_bronze_91c0 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .upper_12a6 {
    max-width: 100%;
  }

  .title_active_748f {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .layout_6052 {
    padding: 1rem;
  }

  .shade_dae4 {
    font-size: 1.5rem;
  }

  .huge-3a9d {
    font-size: 0.75rem;
  }

  .texture-hot-400e {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .hover_gas_bd67 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .hover_gas_bd67 .backdrop-3307 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .title_active_748f {
    grid-template-columns: 1fr;
  }
}

.caption-68e8 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.article_west_fcf1 {
  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 === */
.cold_f580 {
  margin-bottom: 2.5rem;
}

.caption_purple_ccb9 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.caption-68e8 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.label_pressed_e18d {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.component-d0fc {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.accent-center-df5b {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.carousel-f96a {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.main_hard_a619 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.layout-2009 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.message-aa79 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.message-aa79 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.highlight-1d12 {
  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);
}

.smooth_ba0a {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.highlight_3aa4 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.glass-25dd {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.component_fast_07b7 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.thumbnail-short-3dd2 {
  display: grid;
  gap: 1rem;
}

.alert-8b68 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.center_d1dc {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.hovered-0fad {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.solid_a344 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.chip-slow-f242 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.hidden_18bb {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.hidden_18bb p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.pressed_c3bf {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.gold_67d0 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.slider-8d02 {
  display: grid;
  gap: 2rem;
}

.gold-f9a9 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.component-d0fc {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.label_pressed_e18d {
  flex: 1;
}

.carousel-f96a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.carousel-f96a a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.gold_ed8c {
  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;
}

.main_hard_a619 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.frame_d77e {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.frame_d77e span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.fixed_b6d4 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.fixed_b6d4 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.picture_top_a2b5 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.picture_top_a2b5 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.picture_top_a2b5 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.picture_top_a2b5 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.grid-dim-1d8c {
  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 === */
.image-3912 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.footer_c9b9 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.hidden-089b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.action-4131 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.action-4131 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.action-4131 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.action-4131 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;
}

.action-4131 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.action-4131 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.active-23bc {
  padding: 3rem 0 5rem;
}

.tabs-179b {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.tabs-179b.shadow-cool-1e3a {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.basic_ea95 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.tabs-ebfc {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.tabs_current_7048 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.tabs_current_7048 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.hover_cool_62c5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.fluid-9ae5 {
  text-align: center;
}

.grid_slow_e1ee {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.link_669d {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.bright-2d61 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.slider-orange-7147 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.plasma-0390 {
  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;
}

.plasma-0390 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.plasma-0390:hover {
  box-shadow: var(--shadow-lg);
}

.plasma-0390.photo-b096 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.plasma-0390 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.plasma-0390 ul {
  margin: 1rem 0;
}

.plasma-0390 li {
  margin-bottom: 0.75rem;
}

.orange-a2ee {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.container_8687 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.container_8687 a {
  font-weight: 600;
}

/* === Data Tables === */
.old-d8ef {
  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;
}

.old-d8ef table {
  width: 100%;
  min-width: 600px;
}

.old-d8ef thead {
  background-color: var(--primary-color);
  color: white;
}

.old-d8ef th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.old-d8ef td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.old-d8ef tbody tr:hover {
  background-color: var(--bg-secondary);
}

.old-d8ef tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.element_a2da {
  list-style: none;
  margin: 1.5rem 0;
}

.element_a2da li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.element_a2da li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.under-88f1::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-5e00::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 === */
.steel-aa0b {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.solid-fb23 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.solid-fb23 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.solid-fb23 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.solid-fb23 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.steel-aa0b blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.aside_aa8b {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.aside_aa8b::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.popup-3101 {
  position: relative;
  margin-bottom: 3rem;
}

.hidden-20ee {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.hidden-20ee .light_65ea {
  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;
}

.background-0991 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.background-0991 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.background-0991 ul {
  margin: 1rem 0;
}

.background-0991 li {
  margin-bottom: 0.75rem;
}

.iron-55e1 {
  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 === */
.dropdown-c195 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.dropdown-c195 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.element-6679 {
  list-style: none;
  margin: 1.5rem 0;
}

.element-6679 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.element-6679 a {
  font-weight: 600;
}

.shade_down_0b67 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.blue_3ccb {
  margin: 2.5rem 0;
}

.middle_187f {
  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;
}

.middle_187f:hover {
  box-shadow: var(--shadow-lg);
}

.middle_187f.brown-deeb {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.pressed-130d {
  flex-shrink: 0;
}

.pressed-130d 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);
}

.grid-mini-5708 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.complex-f025,
.paragraph_06af,
.glass_6e18 {
  width: 100%;
  margin: 1.5rem 0;
}

.gold-0a2d {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.gold-0a2d strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.wrapper-7aaf {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.wrapper-7aaf strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.main-42c8 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.main-42c8 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.yellow_8b2f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.menu_30da {
  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;
}

.menu_30da:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.menu_30da.element_static_69b0 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.menu_30da .text_0183 {
  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;
}

.menu_30da h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.slider_inner_246e {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.text-lite-d64e {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.text-lite-d64e label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.slow-5990 {
  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-3307 {
  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;
}

.popup_thick_1b5a {
  background-color: var(--primary-color);
  color: white;
}

.popup_thick_1b5a:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.modal_right_39d8 {
  background-color: var(--text-secondary);
  color: white;
}

.modal_right_39d8:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.status-a6d7 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.status-a6d7:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.aside_a33c {
  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;
}

.aside_a33c:hover {
  background-color: var(--primary-dark);
}

.section-narrow-a9dc {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.layout-b480 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.background-fast-e126 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.link-outer-3c4c {
  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 === */
.info-704f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.container-pressed-77a1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.container-pressed-77a1 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.disabled_left_b40e {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.progress_9d4c {
  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;
}

.east_e35a {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.dropdown_stale_57ea {
  list-style: none;
  counter-reset: rank-counter;
}

.dropdown_stale_57ea li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.dropdown_stale_57ea li::before {
  content: counter(rank-counter);
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
}

.highlight_9ff0 {
  list-style: none;
}

.highlight_9ff0 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.tiny-25ff {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.picture-326b {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.picture-326b .medium_bd21 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.picture-326b .narrow-129a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.dark-847a {
  margin-top: 3rem;
}

.motion-b3fb {
  width: 100%;
}

.north_07e9 {
  background-color: #fef3c7;
}

.backdrop_smooth_d654 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.accent_pink_e26f {
  margin: 3rem 0;
}

.content-afce {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.east-144f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.east-144f:hover {
  box-shadow: var(--shadow-lg);
}

.east-144f.over_2b13 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.disabled-07ac {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.article-7613 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.article-7613 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.notification-glass-8ddc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.east-144f blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.pattern_c44d {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.wood_bc0b {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.overlay_current_85d6 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.sort-gas-d0c5 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.feature-ed4d {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.tiny-3116 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.tall_4e16 {
  max-width: 900px;
  margin: 0 auto;
}

.dropdown-7c2e {
  margin: 2rem 0;
}

.chip_f7de {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.chip_f7de summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.chip_f7de summary::-webkit-details-marker {
  display: none;
}

.chip_f7de summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.tiny_8787 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.chip_f7de[open] .tiny_8787 {
  transform: rotate(45deg);
}

.solid-a6cb {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.solid-a6cb p:last-child {
  margin-bottom: 0;
}

.image-7674 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.middle_6c65 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.active_0808 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.active_0808 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.active_0808 .backdrop-3307 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.popup_static_17c9 {
  max-width: 900px;
  margin: 0 auto;
}

.active-92cd {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.solid-7286 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.solid-7286.fn-success-5e00 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.gallery-yellow-b7ac {
  font-size: 3rem;
  line-height: 1;
}

.mask-4202 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.tiny_10c7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.dark_7682,
.west_cb17 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.dark_7682 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.west_cb17 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.bronze_3640,
.filter-a039 {
  margin: 1.5rem 0;
}

.bronze_3640 li,
.filter-a039 li {
  margin-bottom: 1rem;
}

.breadcrumb_715c {
  margin: 3rem 0;
}

.wood-52a1 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.wood-52a1 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.wood-52a1 ol {
  margin: 1rem 0;
}

.wood-52a1 li {
  margin-bottom: 0.75rem;
}

.plasma-2d64 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.summary-2ace {
  margin: 2rem 0;
}

.box-7fb0 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.detail_df72 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.steel-7204 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.image-advanced-1030 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.focus-085e {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.component_center_e88f {
  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;
}

.component_center_e88f img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.accent-center-df5b {
  flex: 1;
}

.accent-center-df5b h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.down_843f {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.thick-8396 p {
  margin-bottom: 1rem;
}

.small-3226 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.alert_0eb7 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.frame_fa0f {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.frame_fa0f a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.gallery_glass_320c h3 {
  margin-bottom: 1.5rem;
}

.widget_4af1 {
  display: grid;
  gap: 2rem;
}

.highlight_warm_73df {
  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;
}

.highlight_warm_73df img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.highlight_warm_73df h4 {
  margin: 0 0 0.25rem;
}

.highlight_warm_73df p {
  margin: 0;
  font-size: 0.9375rem;
}

.avatar_plasma_5330 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.tertiary-9d04 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.tertiary-9d04 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.tertiary-9d04 ul {
  margin: 1.5rem 0;
}

.tertiary-9d04 li {
  margin-bottom: 0.75rem;
}

.gas-6f7b {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.solid-f9df {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.action-e461 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.purple-c21d h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.purple-c21d p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.chip_medium_35ed {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.chip_medium_35ed a {
  color: rgba(255, 255, 255, 0.8);
}

.wood-f637 {
  list-style: none;
}

.wood-f637 li {
  margin-bottom: 0.75rem;
}

.wood-f637 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.wood-f637 a:hover {
  color: white;
}

.picture-cee1 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.black_9f28 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.sort-stale-b7e2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.column_cold_dbd5 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.dirty_dedb {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .tertiary-cd9d {
    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;
  }

  .status_tiny_471d {
    font-size: 1.5rem !important;
  }

  .caption_purple_ccb9 {
    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 */
  .plasma-0390,
  .east-7b2a,
  .background-0991,
  .grid-mini-5708,
  .disabled-07ac,
  .east-144f,
  .solid-a6cb,
  .texture-hot-400e,
  .pressed_c3bf,
  .basic_ea95 {
    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 */
  .caption-68e8 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .label_pressed_e18d {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .component-d0fc {
    flex-shrink: 0;
  }

  .accent-center-df5b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .carousel-f96a,
  .main_hard_a619 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .main_hard_a619 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .menu-south-e7f9 {
    display: none;
  }

  /* Show mobile actions */
  .menu_lower_acab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .title_cdb0 {
    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;
  }

  .title_cdb0 svg {
    flex-shrink: 0;
  }

  .title_cdb0 .paper-2fe3 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .title_cdb0 .plasma-719f {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .column-6327 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .paper_a651 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .title_cdb0:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .aside-rough-0598 {
    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;
  }

  .aside-rough-0598.fn-active-5e00 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .aside-rough-0598 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .aside-rough-0598 li:last-child {
    border-bottom: none;
  }

  .aside-rough-0598 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .grid_da20 {
    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;
  }

  .grid_da20 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .grid_da20 li:last-child {
    border-bottom: none;
  }

  .grid_da20 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .primary_in_e1e3 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .section-easy-c4ff {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .text_cool_6399,
  .lite-38b8 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .text_cool_6399 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .lite-38b8 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .grid_da20.fn-active-5e00 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .out_cb5f {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .new-866b {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .header-liquid-6550 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .inner-8e71 {
    margin-top: 0;
  }

  /* Hero section */
  .inner-8e71 {
    padding: 2rem 0 1.5rem;
  }

  .caption_purple_ccb9 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .pressed_c3bf {
    font-size: 1rem;
  }

  /* Hero brand image */
  .pagination_bronze_91c0 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .upper_12a6 {
    max-width: 100%;
    border-radius: 8px;
  }

  .title_active_748f {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .layout_6052 {
    padding: 1rem;
  }

  .shade_dae4 {
    font-size: 1.5rem;
  }

  .huge-3a9d {
    font-size: 0.75rem;
  }

  .texture-hot-400e {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .hover_gas_bd67 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .hover_gas_bd67 .backdrop-3307 {
    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 */
  .hidden-089b {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .middle_187f {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .pressed-130d {
    margin-bottom: 1rem;
  }

  /* Author */
  .gold-f9a9 {
    flex-direction: column;
  }

  .component_center_e88f {
    flex-direction: column;
  }

  /* Quotes */
  .disabled-07ac {
    flex-direction: column;
  }

  /* Pros/Cons */
  .tiny_10c7 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .image-advanced-1030 {
    flex-direction: column;
  }

  .image-advanced-1030 .backdrop-3307 {
    width: 100%;
  }

  /* Version comparison */
  .yellow_8b2f {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .info-704f {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .action-e461 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sort-stale-b7e2 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .old-d8ef,
  .paragraph_06af,
  .stone-9456,
  .motion-b3fb,
  .complex-f025,
  .glass_6e18 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .old-d8ef table,
  .paragraph_06af table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .slow-5990 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .tertiary-cd9d {
    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;
  }

  .status_tiny_471d {
    font-size: 1.25rem !important;
  }

  .caption_purple_ccb9 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .new-866b {
    position: fixed;
  }

  .header-liquid-6550 {
    padding: 0.625rem 0;
  }

  .header_409b img {
    height: 26px;
  }

  .grid_da20 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .aside-rough-0598 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .title_cdb0 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .title_cdb0 svg {
    width: 18px;
    height: 18px;
  }

  .title_cdb0 .paper-2fe3 {
    font-size: 0.7rem;
  }

  .title_cdb0 .plasma-719f {
    font-size: 0.65rem;
  }

  .text_cool_6399,
  .lite-38b8 {
    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, .tertiary-cd9d, .breadcrumb_1da2, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .pagination_bronze_91c0 {
    padding: 1rem;
  }

  .title_active_748f {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .layout_6052 {
    padding: 0.875rem;
  }

  .shade_dae4 {
    font-size: 1.25rem;
  }

  .hover_gas_bd67 .backdrop-3307 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .caption_purple_ccb9 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .backdrop-3307 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .section-narrow-a9dc {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .middle_187f {
    padding: 1rem;
  }

  .pressed-130d span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .plasma-0390,
  .detail-solid-82bb,
  .shade-a1b8,
  .widget-6a75 {
    padding: 1rem;
  }
}

@media print {
  .new-866b,
  .image-3912,
  .out_cb5f,
  .backdrop-3307,
  .solid-f9df {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .tertiary-cd9d {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.form_small_b662 {
  margin-bottom: 3rem;
  text-align: center;
}

.status_tiny_471d {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.steel_d8bc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.upper_7c2c,
.breadcrumb_short_8a92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.under-bdb6 {
  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;
}

.under-bdb6:hover {
  transform: translateY(-5px);
}

.under-bdb6 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.under-bdb6 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.light_23a2 {
  margin: 3rem 0;
}

.down-36c0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.medium_42e1 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.medium_42e1:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.overlay-cold-cd14 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.top_46c8 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.carousel_easy_2988 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.smooth-fa54 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.pattern-7a41 {
  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;
}

.pattern-7a41:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.pattern-7a41.module_south_fd02 {
  border-left: 4px solid var(--primary-color);
}

.prev_fc50 {
  flex-shrink: 0;
}

.prev_fc50 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.description-db4f {
  flex: 1;
}

.description-db4f h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.main_hard_b018 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.block-7f04,
.center-f76f,
.banner-0100 {
  margin-bottom: 1.5rem;
}

.block-7f04 h4,
.center-f76f h4,
.banner-0100 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.block-7f04 ul,
.center-f76f ul,
.banner-0100 ul {
  list-style: none;
  padding: 0;
}

.block-7f04 li,
.center-f76f li,
.banner-0100 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.block-7f04 li:before,
.center-f76f li:before,
.banner-0100 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.video-2d05 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.video-2d05 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;
}

.video-2d05 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.plasma-aa55 { margin: 2rem 0; }
.tertiary_fc03 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.tertiary_fc03 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.container-fc75 p { margin-bottom: 1rem; line-height: 1.7; }
.container-fc75 strong { color: var(--text-primary); }
.container-fc75 ul { list-style: none; padding-left: 0; }
.container-fc75 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.container-fc75 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.out-03bc { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.top_8696 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.top_8696:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.detail_9f40 { font-size: 3rem; margin-bottom: 1rem; }
.top_8696 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.top_8696 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.input-glass-b75d { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.input-glass-b75d span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.article_in_8ea8 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.content-2761 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.tabs-697f { text-align: center; }
.overlay_28d1 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.green-7489 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.middle_e032 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.card_thick_8616 { margin: 2rem 0; }
.smooth-00ec { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.smooth-00ec h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.smooth-00ec p, .smooth-00ec ul { line-height: 1.7; }
.smooth-00ec ul { list-style: none; padding-left: 0; }
.smooth-00ec ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.smooth-00ec ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.large-e9fe { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.hovered-b9ec { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.texture_8dc7 { text-align: center; }
.blue-6ff0 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.fresh_4f37 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.box_warm_9d55 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.fast-5b35 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.modal_liquid_7f72 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.modal_liquid_7f72:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.modal_liquid_7f72 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.modal_liquid_7f72 p, .modal_liquid_7f72 ul { line-height: 1.7; }
.modal_liquid_7f72 ul { list-style: none; padding-left: 0; }
.modal_liquid_7f72 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.modal_liquid_7f72 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: a41a */
.ghost-box-r4 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.0;
}
