/* ============================================
   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 */
.disabled-144a p,
.iron-a291,
.nav_basic_620e,
.stale_e6cb,
.aside-4aec,
.texture-selected-ddbf,
.picture-2de3,
.title_blue_b981 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.prev_6173 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.prev_6173 > *,
.section-full-2be8,
.disabled-144a,
.complex_9a3c {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .prev_6173 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .prev_6173 {
    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 === */
.notification_hot_38dc {
  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 */
.notification_hot_38dc.stale-f599 {
  box-shadow: var(--shadow-md);
}

.video-down-50ec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.component-silver-7efa img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.old-bb29 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.left-8821 {
  display: none;
}

/* Hide mobile actions on desktop */
.medium-3871 {
  display: none;
}

.heading-cool-3a71 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.heading-cool-3a71 a:hover,
.heading-cool-3a71 a.fn-active-ef09 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.button_steel_8ef2 {
  margin-left: 1rem;
}

.element-9b82 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.status_dark_3df8,
.shade_ec76 {
  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;
}

.status_dark_3df8 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.status_dark_3df8: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;
}

.shade_ec76 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.shade_ec76: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;
}

.status_dark_3df8 svg,
.shade_ec76 svg {
  flex-shrink: 0;
}

.tooltip_2261 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.dynamic-ff0c {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.dynamic-ff0c::before,
.dynamic-ff0c::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.dynamic-ff0c::before {
  top: -7px;
}

.dynamic-ff0c::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.hidden_clean_9906 {
  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 === */
.container-black-66a8 {
  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);
}

.background-center-c1de {
  margin: 0 0 2rem;
  text-align: center;
}

.detail_selected_993c {
  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;
}

.detail_selected_993c:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.summary_red_dd82 {
  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);
}

.summary_red_dd82 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.link_5969 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.highlight-fixed-40f6 {
  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;
}

.highlight-fixed-40f6:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.inner-d943 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.slider_5cc3 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.tabs_current_5db3 {
  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);
}

.tabs_current_5db3 .video_next_ac73 {
  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;
}

.tabs_current_5db3 .video_next_ac73 svg {
  flex-shrink: 0;
}

.tabs_current_5db3 .paragraph_b8c1 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.tabs_current_5db3 .paragraph_b8c1: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);
}

.tabs_current_5db3 .gas_1359 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.tabs_current_5db3 .gas_1359: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) {
  .container-black-66a8 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .detail_selected_993c {
    max-width: 100%;
  }

  .link_5969 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .highlight-fixed-40f6 {
    padding: 1rem;
  }

  .inner-d943 {
    font-size: 1.5rem;
  }

  .slider_5cc3 {
    font-size: 0.75rem;
  }

  .summary_red_dd82 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .tabs_current_5db3 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .tabs_current_5db3 .video_next_ac73 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .link_5969 {
    grid-template-columns: 1fr;
  }
}

.tertiary_24f5 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.layout-9380 {
  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 === */
.header_cold_b497 {
  margin-bottom: 2.5rem;
}

.purple_f9a0 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.tertiary_24f5 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.tabs-mini-af3e {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.module-ac19 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.pro-1192 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.notice_89f3 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.outer-04b4 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.section_new_fd78 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.advanced-74bf {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.advanced-74bf svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.image_new_d753 {
  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);
}

.media-solid-8563 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.module-9027 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.avatar_warm_8947 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.paragraph-large-ace9 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.tabs-upper-5ee3 {
  display: grid;
  gap: 1rem;
}

.simple-465f {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.card-2628 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.focus_bb83 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.short-41c2 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.white_ed12 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.filter-out-5dde {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.filter-out-5dde p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.iron-a291 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.action_07ca {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.green-d24d {
  display: grid;
  gap: 2rem;
}

.gold-7ae1 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.module-ac19 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.tabs-mini-af3e {
  flex: 1;
}

.notice_89f3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.notice_89f3 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.gradient-9816 {
  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;
}

.outer-04b4 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.message-42e5 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.message-42e5 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.search-small-abc6 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.search-small-abc6 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.progress-dirty-1cf8 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.progress-dirty-1cf8 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.progress-dirty-1cf8 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.progress-dirty-1cf8 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.rough-341a {
  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 === */
.background_selected_3fc2 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.focused-e94a {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.breadcrumb_outer_f006 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.article-1e69 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.article-1e69 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.article-1e69 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.article-1e69 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;
}

.article-1e69 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.article-1e69 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.disabled-144a {
  padding: 3rem 0 5rem;
}

.complex_9a3c {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.complex_9a3c.hidden_a69a {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.nav_basic_620e {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.tag_under_bf94 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.modal-gas-f90b {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.modal-gas-f90b h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.motion_dd5f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.dirty-fda8 {
  text-align: center;
}

.left_90e4 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.secondary_db9d {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.pattern_bottom_c02a {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.texture-selected-ddbf {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.stale_e6cb {
  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;
}

.stale_e6cb * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.stale_e6cb:hover {
  box-shadow: var(--shadow-lg);
}

.stale_e6cb.card-6b60 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.stale_e6cb h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.stale_e6cb ul {
  margin: 1rem 0;
}

.stale_e6cb li {
  margin-bottom: 0.75rem;
}

.upper-b72f {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.label_a67c {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.label_a67c a {
  font-weight: 600;
}

/* === Data Tables === */
.copper_4aaa {
  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;
}

.copper_4aaa table {
  width: 100%;
  min-width: 600px;
}

.copper_4aaa thead {
  background-color: var(--primary-color);
  color: white;
}

.copper_4aaa th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.copper_4aaa td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.copper_4aaa tbody tr:hover {
  background-color: var(--bg-secondary);
}

.copper_4aaa tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.form_94b5 {
  list-style: none;
  margin: 1.5rem 0;
}

.form_94b5 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.form_94b5 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.white-c13f::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-ef09::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 === */
.soft-ec12 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.accordion_4667 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.accordion_4667 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.accordion_4667 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.accordion_4667 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.soft-ec12 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.picture-2de3 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.picture-2de3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.module_motion_bb99 {
  position: relative;
  margin-bottom: 3rem;
}

.out_5749 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.out_5749 .popup-9d79 {
  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;
}

.medium_e283 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.medium_e283 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.medium_e283 ul {
  margin: 1rem 0;
}

.medium_e283 li {
  margin-bottom: 0.75rem;
}

.article-f458 {
  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 === */
.shadow-d31f {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.shadow-d31f h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.mini_688f {
  list-style: none;
  margin: 1.5rem 0;
}

.mini_688f li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.mini_688f a {
  font-weight: 600;
}

.highlight-c4ef {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.title_blue_b981 {
  margin: 2.5rem 0;
}

.focused_7516 {
  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;
}

.focused_7516:hover {
  box-shadow: var(--shadow-lg);
}

.focused_7516.paper-27fe {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.gradient-c3b5 {
  flex-shrink: 0;
}

.gradient-c3b5 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);
}

.text-e188 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.row_medium_f51b,
.advanced-c79b,
.thumbnail_small_be76 {
  width: 100%;
  margin: 1.5rem 0;
}

.active-right-071b {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.active-right-071b strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.solid-64be {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.solid-64be strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.basic_6ef5 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.basic_6ef5 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.sidebar-plasma-aa05 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.box-836d {
  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;
}

.box-836d:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.box-836d.feature-large-64a3 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.box-836d .description_3610 {
  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;
}

.box-836d h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.image-f88a {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.left-cb07 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.left-cb07 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.down-2ba0 {
  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 === */
.video_next_ac73 {
  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;
}

.paragraph_b8c1 {
  background-color: var(--primary-color);
  color: white;
}

.paragraph_b8c1:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.gas_1359 {
  background-color: var(--text-secondary);
  color: white;
}

.gas_1359:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.header-red-99f6 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.header-red-99f6:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.pagination_d8f6 {
  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;
}

.pagination_d8f6:hover {
  background-color: var(--primary-dark);
}

.current-8858 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.backdrop_cool_d106 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.highlight-586b {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.summary_3d31 {
  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 === */
.tooltip_next_6d86 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.label-tall-7969 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.label-tall-7969 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.surface_slow_507f {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.aside-new-67ea {
  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;
}

.preview_in_c9e1 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.popup_30ad {
  list-style: none;
  counter-reset: rank-counter;
}

.popup_30ad li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.popup_30ad 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;
}

.aside_blue_cdf3 {
  list-style: none;
}

.aside_blue_cdf3 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.label_tall_87c3 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.tabs-black-d8c2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.tabs-black-d8c2 .accent_1ede {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.tabs-black-d8c2 .video_25b7 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.item_dark_d470 {
  margin-top: 3rem;
}

.out_9f6b {
  width: 100%;
}

.smooth_0bf1 {
  background-color: #fef3c7;
}

.panel-wood-25d9 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.input-steel-4f0b {
  margin: 3rem 0;
}

.preview_4187 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.wrapper-8075 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.wrapper-8075:hover {
  box-shadow: var(--shadow-lg);
}

.wrapper-8075.message_bright_b13b {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.block_40a5 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.tooltip_a7fd strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.tooltip_a7fd span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.focus_d3bb {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.wrapper-8075 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.tag_purple_40ed {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.primary-smooth-1cdd {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.right-bc03 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.soft_9e14 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.status-0161 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.sort-24bc {
  margin-top: 1rem;
}

/* === FAQ Section === */
.stale-2ebc {
  max-width: 900px;
  margin: 0 auto;
}

.in_c14f {
  margin: 2rem 0;
}

.border_8c98 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.border_8c98 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.border_8c98 summary::-webkit-details-marker {
  display: none;
}

.border_8c98 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.article-6505 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.border_8c98[open] .article-6505 {
  transform: rotate(45deg);
}

.pro_6525 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.pro_6525 p:last-child {
  margin-bottom: 0;
}

.paper-bd42 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.shadow_9ef5 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.block-1fb5 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.block-1fb5 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.block-1fb5 .video_next_ac73 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.tertiary_4b75 {
  max-width: 900px;
  margin: 0 auto;
}

.over_63c4 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.filter-1f61 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.filter-1f61.fn-success-ef09 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.alert-754c {
  font-size: 3rem;
  line-height: 1;
}

.photo-0f58 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.active_a63e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.silver-25ed,
.motion-f51f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.silver-25ed h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.motion-f51f h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.north_37ea,
.west_0c0e {
  margin: 1.5rem 0;
}

.north_37ea li,
.west_0c0e li {
  margin-bottom: 1rem;
}

.backdrop_335a {
  margin: 3rem 0;
}

.primary_a28a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.primary_a28a h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.primary_a28a ol {
  margin: 1rem 0;
}

.primary_a28a li {
  margin-bottom: 0.75rem;
}

.icon_05c3 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.mask-0c62 {
  margin: 2rem 0;
}

.filter_gas_7fc7 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.easy_4f10 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.sort_full_70ee {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.breadcrumb_d5df {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.image_d7d6 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.image_upper_3e95 {
  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;
}

.image_upper_3e95 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.pro-1192 {
  flex: 1;
}

.pro-1192 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.outline-rough-b663 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.block_dim_9cf8 p {
  margin-bottom: 1rem;
}

.accent_cd5b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.warm_01f5 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.soft-3b4e {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.soft-3b4e a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.overlay-025e h3 {
  margin-bottom: 1.5rem;
}

.notification_6c2a {
  display: grid;
  gap: 2rem;
}

.fixed_c6b8 {
  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;
}

.fixed_c6b8 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.fixed_c6b8 h4 {
  margin: 0 0 0.25rem;
}

.fixed_c6b8 p {
  margin: 0;
  font-size: 0.9375rem;
}

.top_f719 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.copper_d206 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.copper_d206 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.copper_d206 ul {
  margin: 1.5rem 0;
}

.copper_d206 li {
  margin-bottom: 0.75rem;
}

.hero-ef3b {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.pagination-ea2e {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.primary_light_642b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.column-7e51 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.column-7e51 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.input_focused_e190 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.input_focused_e190 a {
  color: rgba(255, 255, 255, 0.8);
}

.alert-113f {
  list-style: none;
}

.alert-113f li {
  margin-bottom: 0.75rem;
}

.alert-113f a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.alert-113f a:hover {
  color: white;
}

.tall_2df2 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.hot_0511 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.picture_stale_caf0 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.grid_focused_3b43 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sidebar-silver-fcd6 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .prev_6173 {
    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;
  }

  .advanced-856b {
    font-size: 1.5rem !important;
  }

  .purple_f9a0 {
    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 */
  .stale_e6cb,
  .aside-4aec,
  .medium_e283,
  .text-e188,
  .block_40a5,
  .wrapper-8075,
  .pro_6525,
  .summary_red_dd82,
  .iron-a291,
  .nav_basic_620e {
    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 */
  .tertiary_24f5 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .tabs-mini-af3e {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .module-ac19 {
    flex-shrink: 0;
  }

  .pro-1192 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .notice_89f3,
  .outer-04b4 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .outer-04b4 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .old-bb29 {
    display: none;
  }

  /* Show mobile actions */
  .medium-3871 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .lower-5eb1 {
    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;
  }

  .lower-5eb1 svg {
    flex-shrink: 0;
  }

  .lower-5eb1 .highlight-plasma-0eaa {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .lower-5eb1 .silver-c5d7 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .message-c7f6 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .tag-6bcc {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .lower-5eb1:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .left-8821 {
    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;
  }

  .left-8821.fn-active-ef09 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .left-8821 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .left-8821 li:last-child {
    border-bottom: none;
  }

  .left-8821 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .heading-cool-3a71 {
    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;
  }

  .heading-cool-3a71 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .heading-cool-3a71 li:last-child {
    border-bottom: none;
  }

  .heading-cool-3a71 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .button_steel_8ef2 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .element-9b82 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .status_dark_3df8,
  .shade_ec76 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .status_dark_3df8 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .shade_ec76 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .heading-cool-3a71.fn-active-ef09 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .tooltip_2261 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .notification_hot_38dc {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .video-down-50ec {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .hidden_clean_9906 {
    margin-top: 0;
  }

  /* Hero section */
  .hidden_clean_9906 {
    padding: 2rem 0 1.5rem;
  }

  .purple_f9a0 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .iron-a291 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .container-black-66a8 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .detail_selected_993c {
    max-width: 100%;
    border-radius: 8px;
  }

  .link_5969 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .highlight-fixed-40f6 {
    padding: 1rem;
  }

  .inner-d943 {
    font-size: 1.5rem;
  }

  .slider_5cc3 {
    font-size: 0.75rem;
  }

  .summary_red_dd82 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .tabs_current_5db3 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .tabs_current_5db3 .video_next_ac73 {
    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 */
  .breadcrumb_outer_f006 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .focused_7516 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .gradient-c3b5 {
    margin-bottom: 1rem;
  }

  /* Author */
  .gold-7ae1 {
    flex-direction: column;
  }

  .image_upper_3e95 {
    flex-direction: column;
  }

  /* Quotes */
  .block_40a5 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .active_a63e {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .breadcrumb_d5df {
    flex-direction: column;
  }

  .breadcrumb_d5df .video_next_ac73 {
    width: 100%;
  }

  /* Version comparison */
  .sidebar-plasma-aa05 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .tooltip_next_6d86 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .primary_light_642b {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .picture_stale_caf0 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .copper_4aaa,
  .advanced-c79b,
  .card_down_a66a,
  .out_9f6b,
  .row_medium_f51b,
  .thumbnail_small_be76 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .copper_4aaa table,
  .advanced-c79b table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .down-2ba0 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .prev_6173 {
    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;
  }

  .advanced-856b {
    font-size: 1.25rem !important;
  }

  .purple_f9a0 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .notification_hot_38dc {
    position: fixed;
  }

  .video-down-50ec {
    padding: 0.625rem 0;
  }

  .component-silver-7efa img {
    height: 26px;
  }

  .heading-cool-3a71 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .left-8821 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .lower-5eb1 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .lower-5eb1 svg {
    width: 18px;
    height: 18px;
  }

  .lower-5eb1 .highlight-plasma-0eaa {
    font-size: 0.7rem;
  }

  .lower-5eb1 .silver-c5d7 {
    font-size: 0.65rem;
  }

  .status_dark_3df8,
  .shade_ec76 {
    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, .prev_6173, .section-full-2be8, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .container-black-66a8 {
    padding: 1rem;
  }

  .link_5969 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .highlight-fixed-40f6 {
    padding: 0.875rem;
  }

  .inner-d943 {
    font-size: 1.25rem;
  }

  .tabs_current_5db3 .video_next_ac73 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .purple_f9a0 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .video_next_ac73 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .current-8858 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .focused_7516 {
    padding: 1rem;
  }

  .gradient-c3b5 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .stale_e6cb,
  .grid-large-3333,
  .border-db61,
  .text-d4be {
    padding: 1rem;
  }
}

@media print {
  .notification_hot_38dc,
  .background_selected_3fc2,
  .tooltip_2261,
  .video_next_ac73,
  .pagination-ea2e {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .prev_6173 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.pink-9aa3 {
  margin-bottom: 3rem;
  text-align: center;
}

.advanced-856b {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.preview_current_7700 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.notification-d8bb,
.disabled_0f17 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.liquid-67a3 {
  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;
}

.liquid-67a3:hover {
  transform: translateY(-5px);
}

.liquid-67a3 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.liquid-67a3 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.image_basic_d993 {
  margin: 3rem 0;
}

.white-50f9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.slow_5bd3 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.slow_5bd3:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.dropdown-thick-d9bd {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.input-last-99a5 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.light_4b61 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.card-north-9b99 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.pro_3c54 {
  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;
}

.pro_3c54:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.pro_3c54.card_c602 {
  border-left: 4px solid var(--primary-color);
}

.form_2381 {
  flex-shrink: 0;
}

.form_2381 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.west_6075 {
  flex: 1;
}

.west_6075 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.slider-brown-83d7 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hard-0f55,
.next-32ff,
.message_bottom_e0f6 {
  margin-bottom: 1.5rem;
}

.hard-0f55 h4,
.next-32ff h4,
.message_bottom_e0f6 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hard-0f55 ul,
.next-32ff ul,
.message_bottom_e0f6 ul {
  list-style: none;
  padding: 0;
}

.hard-0f55 li,
.next-32ff li,
.message_bottom_e0f6 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.hard-0f55 li:before,
.next-32ff li:before,
.message_bottom_e0f6 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.hard-f1ae {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hard-f1ae 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;
}

.hard-f1ae a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.item-tall-487a { margin: 2rem 0; }
.brown-2ffd { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.brown-2ffd h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.notification-e3eb p { margin-bottom: 1rem; line-height: 1.7; }
.notification-e3eb strong { color: var(--text-primary); }
.notification-e3eb ul { list-style: none; padding-left: 0; }
.notification-e3eb ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.notification-e3eb ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.pressed_b8cf { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.alert-7167 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.alert-7167:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.stale-e4be { font-size: 3rem; margin-bottom: 1rem; }
.alert-7167 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.alert-7167 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.footer-first-4c10 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.footer-first-4c10 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.hero-7fee { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.notice-north-8996 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.fast-af3a { text-align: center; }
.solid_8965 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.small-2795 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.thick-df5b { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.sort-6b3d { margin: 2rem 0; }
.progress-eb98 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.progress-eb98 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.progress-eb98 p, .progress-eb98 ul { line-height: 1.7; }
.progress-eb98 ul { list-style: none; padding-left: 0; }
.progress-eb98 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.progress-eb98 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.large_1b61 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.fixed-238a { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.gas_c223 { text-align: center; }
.sort-dynamic-c543 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.video-5c8e { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.progress_current_ce86 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.fast_55db { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.white_1de7 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.white_1de7:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.white_1de7 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.white_1de7 p, .white_1de7 ul { line-height: 1.7; }
.white_1de7 ul { list-style: none; padding-left: 0; }
.white_1de7 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.white_1de7 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: fd40 */
.phantom-card-q9 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.2;
}
