/* ============================================
   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 */
.caption-gold-1c7c p,
.gas-39f8,
.label_bright_fcaa,
.lower_d566,
.search-c822,
.dim_dc6a,
.message_next_eb11,
.primary-3707 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.shade-last-2568 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.shade-last-2568 > *,
.chip-fast-e30f,
.caption-gold-1c7c,
.in-65f6 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .shade-last-2568 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .shade-last-2568 {
    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 === */
.out_e9b3 {
  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 */
.out_e9b3.hovered_2544 {
  box-shadow: var(--shadow-md);
}

.chip-8fa6 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.active-3ff0 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.article-clean-06f0 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.preview-c561 {
  display: none;
}

/* Hide mobile actions on desktop */
.nav-cbcf {
  display: none;
}

.search_static_8712 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.search_static_8712 a:hover,
.search_static_8712 a.fn-active-1ca6 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.advanced-1fb9 {
  margin-left: 1rem;
}

.hovered_e8c1 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.summary_last_4765,
.caption_8628 {
  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;
}

.summary_last_4765 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.summary_last_4765: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;
}

.caption_8628 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.caption_8628: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;
}

.summary_last_4765 svg,
.caption_8628 svg {
  flex-shrink: 0;
}

.highlight_52ca {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.overlay_wood_96fe {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.overlay_wood_96fe::before,
.overlay_wood_96fe::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.overlay_wood_96fe::before {
  top: -7px;
}

.overlay_wood_96fe::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.description-e295 {
  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 === */
.picture_green_7e19 {
  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);
}

.old-789b {
  margin: 0 0 2rem;
  text-align: center;
}

.list-27a0 {
  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;
}

.list-27a0:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.selected_3449 {
  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);
}

.selected_3449 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.south_6870 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.gas_660f {
  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;
}

.gas_660f:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.primary-light-4248 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.dim_f8d5 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.picture-soft-1144 {
  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);
}

.picture-soft-1144 .box_424f {
  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;
}

.picture-soft-1144 .box_424f svg {
  flex-shrink: 0;
}

.picture-soft-1144 .article_bf37 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.picture-soft-1144 .article_bf37: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);
}

.picture-soft-1144 .column-9134 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.picture-soft-1144 .column-9134: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) {
  .picture_green_7e19 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .list-27a0 {
    max-width: 100%;
  }

  .south_6870 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .gas_660f {
    padding: 1rem;
  }

  .primary-light-4248 {
    font-size: 1.5rem;
  }

  .dim_f8d5 {
    font-size: 0.75rem;
  }

  .selected_3449 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .picture-soft-1144 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .picture-soft-1144 .box_424f {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .south_6870 {
    grid-template-columns: 1fr;
  }
}

.mask_1f9c {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.under-5de9 {
  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 === */
.summary-5311 {
  margin-bottom: 2.5rem;
}

.section-2706 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.mask_1f9c {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.soft-5454 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.soft_5146 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.header-hard-e636 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dropdown_1dc4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.complex-a9d3 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.thick_c6f2 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.label-orange-b3ea {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.label-orange-b3ea svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.large-2c0a {
  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);
}

.status-next-d0dd {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.heading-d20a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.notice_brown_bfa0 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.dim-6c98 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.old_25e2 {
  display: grid;
  gap: 1rem;
}

.panel_e78a {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.sort-bab0 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.status-17de {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.west-eea7 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.video_upper_6d51 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.breadcrumb-white-6250 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.breadcrumb-white-6250 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.gas-39f8 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.medium_9f3d {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.sort_a7c1 {
  display: grid;
  gap: 2rem;
}

.next-2c2c {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.soft_5146 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.soft-5454 {
  flex: 1;
}

.dropdown_1dc4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.dropdown_1dc4 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.status-ef44 {
  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;
}

.complex-a9d3 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.status-steel-15e8 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.status-steel-15e8 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.info-fresh-c422 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.info-fresh-c422 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.up-16a4 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.up-16a4 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.up-16a4 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.up-16a4 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.layout-south-516b {
  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 === */
.frame_199b {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.media_current_0ea6 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.highlight-bright-1601 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.white_8f35 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.white_8f35 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.white_8f35 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.white_8f35 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;
}

.white_8f35 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.white_8f35 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.caption-gold-1c7c {
  padding: 3rem 0 5rem;
}

.in-65f6 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.in-65f6.wood_347a {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.label_bright_fcaa {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.center-6fd4 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.stale-eb75 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.stale-eb75 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.glass_d622 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.large_91d5 {
  text-align: center;
}

.panel-6c72 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.description_eb35 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.summary-a457 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.dim_dc6a {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.lower_d566 {
  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;
}

.lower_d566 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.lower_d566:hover {
  box-shadow: var(--shadow-lg);
}

.lower_d566.message_2fcf {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.lower_d566 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.lower_d566 ul {
  margin: 1rem 0;
}

.lower_d566 li {
  margin-bottom: 0.75rem;
}

.active_495e {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.link-smooth-c01d {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.link-smooth-c01d a {
  font-weight: 600;
}

/* === Data Tables === */
.banner_selected_3e59 {
  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;
}

.banner_selected_3e59 table {
  width: 100%;
  min-width: 600px;
}

.banner_selected_3e59 thead {
  background-color: var(--primary-color);
  color: white;
}

.banner_selected_3e59 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.banner_selected_3e59 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.banner_selected_3e59 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.banner_selected_3e59 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.dropdown_huge_5840 {
  list-style: none;
  margin: 1.5rem 0;
}

.dropdown_huge_5840 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.dropdown_huge_5840 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.badge_54f7::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-1ca6::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 === */
.heading_32b6 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.fresh-d073 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.fresh-d073 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.fresh-d073 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.fresh-d073 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.heading_32b6 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.message_next_eb11 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.message_next_eb11::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.disabled-905f {
  position: relative;
  margin-bottom: 3rem;
}

.feature_ca87 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.feature_ca87 .tooltip_lower_606b {
  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;
}

.wrapper_out_9b82 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.wrapper_out_9b82 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.wrapper_out_9b82 ul {
  margin: 1rem 0;
}

.wrapper_out_9b82 li {
  margin-bottom: 0.75rem;
}

.up_72cb {
  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 === */
.form-ddb5 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.form-ddb5 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.dim_8832 {
  list-style: none;
  margin: 1.5rem 0;
}

.dim_8832 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.dim_8832 a {
  font-weight: 600;
}

.hovered_e60c {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.primary-3707 {
  margin: 2.5rem 0;
}

.copper-0848 {
  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;
}

.copper-0848:hover {
  box-shadow: var(--shadow-lg);
}

.copper-0848.dropdown-action-185e {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.popup_short_d505 {
  flex-shrink: 0;
}

.popup_short_d505 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);
}

.selected_5c2a h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.message_fcc5,
.highlight_bc41,
.pink_a454 {
  width: 100%;
  margin: 1.5rem 0;
}

.copper_cabf {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.copper_cabf strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.gas-0443 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.gas-0443 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.accordion-4682 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.accordion-4682 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.pink_ce26 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.logo_medium_eec0 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo_medium_eec0:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.logo_medium_eec0.item-blue-429f {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.logo_medium_eec0 .progress-tiny-98eb {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.logo_medium_eec0 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.focus_pro_c019 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.plasma_ea7d {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.plasma_ea7d label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.article_fresh_bb34 {
  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 === */
.box_424f {
  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;
}

.article_bf37 {
  background-color: var(--primary-color);
  color: white;
}

.article_bf37:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.column-9134 {
  background-color: var(--text-secondary);
  color: white;
}

.column-9134:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.header_d165 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.header_d165:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.advanced_078b {
  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;
}

.advanced_078b:hover {
  background-color: var(--primary-dark);
}

.chip_next_35f3 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.outline-current-63dd {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.menu-2102 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.item-complex-9328 {
  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 === */
.layout-pro-e618 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.bright_1ae3 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.bright_1ae3 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.paragraph-focused-b1b9 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.panel_bronze_5cd8 {
  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;
}

.motion_971b {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.bottom-c458 {
  list-style: none;
  counter-reset: rank-counter;
}

.bottom-c458 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.bottom-c458 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;
}

.picture_purple_e78b {
  list-style: none;
}

.picture_purple_e78b li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.widget-dim-75a0 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.description_d280 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.description_d280 .background_soft_58ea {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.description_d280 .text-focused-68ad {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.next-b35b {
  margin-top: 3rem;
}

.surface-gas-897b {
  width: 100%;
}

.layout_dirty_2d97 {
  background-color: #fef3c7;
}

.aside-tiny-655b {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.top-8081 {
  margin: 3rem 0;
}

.footer_0061 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.filter-b5f0 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.filter-b5f0:hover {
  box-shadow: var(--shadow-lg);
}

.filter-b5f0.next-0d5a {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.medium-6137 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.focus_4425 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.focus_4425 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.label-glass-9fe4 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.filter-b5f0 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.background_green_d15a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.fixed-d6ad {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.liquid-3dd7 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.paper_a53c {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.aside-brown-5903 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.notice-9128 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.banner_3405 {
  max-width: 900px;
  margin: 0 auto;
}

.over-60d3 {
  margin: 2rem 0;
}

.overlay-dd4a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.overlay-dd4a summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.overlay-dd4a summary::-webkit-details-marker {
  display: none;
}

.overlay-dd4a summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.notification_91af {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.overlay-dd4a[open] .notification_91af {
  transform: rotate(45deg);
}

.link-ad24 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.link-ad24 p:last-child {
  margin-bottom: 0;
}

.media_95d8 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.backdrop-3aca {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.dynamic_c55f {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.dynamic_c55f p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.dynamic_c55f .box_424f {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.status_middle_521c {
  max-width: 900px;
  margin: 0 auto;
}

.title_8b8e {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.copper_b480 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.copper_b480.fn-success-1ca6 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.module_hot_712b {
  font-size: 3rem;
  line-height: 1;
}

.active-over-7738 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.link-e2e9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.message_3998,
.primary-focused-ab77 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.message_3998 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.primary-focused-ab77 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.panel-down-cd54,
.section-mini-67c1 {
  margin: 1.5rem 0;
}

.panel-down-cd54 li,
.section-mini-67c1 li {
  margin-bottom: 1rem;
}

.filter_inner_0eb4 {
  margin: 3rem 0;
}

.label-1f97 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.label-1f97 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.label-1f97 ol {
  margin: 1rem 0;
}

.label-1f97 li {
  margin-bottom: 0.75rem;
}

.background_6d15 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.north_a8de {
  margin: 2rem 0;
}

.next_285b {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.red_13c5 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.module-e617 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.chip_red_e0a9 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.table_selected_f95b {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.hot_0905 {
  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;
}

.hot_0905 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.header-hard-e636 {
  flex: 1;
}

.header-hard-e636 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.white-db88 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.paragraph-0731 p {
  margin-bottom: 1rem;
}

.tooltip_b5ae {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.hard_1228 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form_3792 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.form_3792 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.highlight-north-4235 h3 {
  margin-bottom: 1.5rem;
}

.tiny-f0ea {
  display: grid;
  gap: 2rem;
}

.pagination-2d48 {
  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;
}

.pagination-2d48 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.pagination-2d48 h4 {
  margin: 0 0 0.25rem;
}

.pagination-2d48 p {
  margin: 0;
  font-size: 0.9375rem;
}

.tooltip_20b4 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.carousel_soft_58cc {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.carousel_soft_58cc h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.carousel_soft_58cc ul {
  margin: 1.5rem 0;
}

.carousel_soft_58cc li {
  margin-bottom: 0.75rem;
}

.background_soft_2998 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.focus-abf8 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.pattern_clean_e973 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.texture_selected_f4ed h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.texture_selected_f4ed p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.element_hovered_2fdd {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.element_hovered_2fdd a {
  color: rgba(255, 255, 255, 0.8);
}

.action_ddd6 {
  list-style: none;
}

.action_ddd6 li {
  margin-bottom: 0.75rem;
}

.action_ddd6 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.action_ddd6 a:hover {
  color: white;
}

.dynamic_9d38 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.text_c397 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.stale_ac38 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.under-d519 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.slider_138a {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .shade-last-2568 {
    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;
  }

  .modal_434b {
    font-size: 1.5rem !important;
  }

  .section-2706 {
    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 */
  .lower_d566,
  .search-c822,
  .wrapper_out_9b82,
  .selected_5c2a,
  .medium-6137,
  .filter-b5f0,
  .link-ad24,
  .selected_3449,
  .gas-39f8,
  .label_bright_fcaa {
    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 */
  .mask_1f9c {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .soft-5454 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .soft_5146 {
    flex-shrink: 0;
  }

  .header-hard-e636 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .dropdown_1dc4,
  .complex-a9d3 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .complex-a9d3 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .article-clean-06f0 {
    display: none;
  }

  /* Show mobile actions */
  .nav-cbcf {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .thumbnail-focused-5c32 {
    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;
  }

  .thumbnail-focused-5c32 svg {
    flex-shrink: 0;
  }

  .thumbnail-focused-5c32 .dynamic_222a {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .thumbnail-focused-5c32 .module-3b6f {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .border_fast_b436 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .tooltip_3ca2 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .thumbnail-focused-5c32:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .preview-c561 {
    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;
  }

  .preview-c561.fn-active-1ca6 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .preview-c561 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .preview-c561 li:last-child {
    border-bottom: none;
  }

  .preview-c561 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .search_static_8712 {
    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;
  }

  .search_static_8712 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .search_static_8712 li:last-child {
    border-bottom: none;
  }

  .search_static_8712 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .advanced-1fb9 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .hovered_e8c1 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .summary_last_4765,
  .caption_8628 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .summary_last_4765 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .caption_8628 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .search_static_8712.fn-active-1ca6 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .highlight_52ca {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .out_e9b3 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .chip-8fa6 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .description-e295 {
    margin-top: 0;
  }

  /* Hero section */
  .description-e295 {
    padding: 2rem 0 1.5rem;
  }

  .section-2706 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .gas-39f8 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .picture_green_7e19 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .list-27a0 {
    max-width: 100%;
    border-radius: 8px;
  }

  .south_6870 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .gas_660f {
    padding: 1rem;
  }

  .primary-light-4248 {
    font-size: 1.5rem;
  }

  .dim_f8d5 {
    font-size: 0.75rem;
  }

  .selected_3449 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .picture-soft-1144 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .picture-soft-1144 .box_424f {
    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 */
  .highlight-bright-1601 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .copper-0848 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .popup_short_d505 {
    margin-bottom: 1rem;
  }

  /* Author */
  .next-2c2c {
    flex-direction: column;
  }

  .hot_0905 {
    flex-direction: column;
  }

  /* Quotes */
  .medium-6137 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .link-e2e9 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .chip_red_e0a9 {
    flex-direction: column;
  }

  .chip_red_e0a9 .box_424f {
    width: 100%;
  }

  /* Version comparison */
  .pink_ce26 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .layout-pro-e618 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .pattern_clean_e973 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stale_ac38 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .banner_selected_3e59,
  .highlight_bc41,
  .south_71eb,
  .surface-gas-897b,
  .message_fcc5,
  .pink_a454 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .banner_selected_3e59 table,
  .highlight_bc41 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .article_fresh_bb34 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .shade-last-2568 {
    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;
  }

  .modal_434b {
    font-size: 1.25rem !important;
  }

  .section-2706 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .out_e9b3 {
    position: fixed;
  }

  .chip-8fa6 {
    padding: 0.625rem 0;
  }

  .active-3ff0 img {
    height: 26px;
  }

  .search_static_8712 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .preview-c561 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .thumbnail-focused-5c32 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .thumbnail-focused-5c32 svg {
    width: 18px;
    height: 18px;
  }

  .thumbnail-focused-5c32 .dynamic_222a {
    font-size: 0.7rem;
  }

  .thumbnail-focused-5c32 .module-3b6f {
    font-size: 0.65rem;
  }

  .summary_last_4765,
  .caption_8628 {
    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, .shade-last-2568, .chip-fast-e30f, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .picture_green_7e19 {
    padding: 1rem;
  }

  .south_6870 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .gas_660f {
    padding: 0.875rem;
  }

  .primary-light-4248 {
    font-size: 1.25rem;
  }

  .picture-soft-1144 .box_424f {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .section-2706 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .box_424f {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .chip_next_35f3 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .copper-0848 {
    padding: 1rem;
  }

  .popup_short_d505 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .lower_d566,
  .active-advanced-f648,
  .pattern-brown-894f,
  .notice-d9fb {
    padding: 1rem;
  }
}

@media print {
  .out_e9b3,
  .frame_199b,
  .highlight_52ca,
  .box_424f,
  .focus-abf8 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .shade-last-2568 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.panel_2443 {
  margin-bottom: 3rem;
  text-align: center;
}

.modal_434b {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.tertiary_pink_e7df {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.background_old_6a45,
.heading-copper-a270 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gradient_rough_f79b {
  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;
}

.gradient_rough_f79b:hover {
  transform: translateY(-5px);
}

.gradient_rough_f79b strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.gradient_rough_f79b span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.modal_gas_ece5 {
  margin: 3rem 0;
}

.card_6ad5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.dim_3815 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.dim_3815:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.notification-upper-09e3 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.filter_north_c8e2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.breadcrumb-huge-e090 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.block-9ddb {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.badge-8fb8 {
  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;
}

.badge-8fb8:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.badge-8fb8.grid-light-e29e {
  border-left: 4px solid var(--primary-color);
}

.content_b893 {
  flex-shrink: 0;
}

.content_b893 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.block-412b {
  flex: 1;
}

.block-412b h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.prev-fa17 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.tag_plasma_311d,
.first_0001,
.item_4ff4 {
  margin-bottom: 1.5rem;
}

.tag_plasma_311d h4,
.first_0001 h4,
.item_4ff4 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tag_plasma_311d ul,
.first_0001 ul,
.item_4ff4 ul {
  list-style: none;
  padding: 0;
}

.tag_plasma_311d li,
.first_0001 li,
.item_4ff4 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.tag_plasma_311d li:before,
.first_0001 li:before,
.item_4ff4 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.module_0d3f {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.module_0d3f 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;
}

.module_0d3f a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.plasma-f2b9 { margin: 2rem 0; }
.silver-5d46 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.silver-5d46 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.texture_a80e p { margin-bottom: 1rem; line-height: 1.7; }
.texture_a80e strong { color: var(--text-primary); }
.texture_a80e ul { list-style: none; padding-left: 0; }
.texture_a80e ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.texture_a80e ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.widget_8eec { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.module_silver_9b06 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.module_silver_9b06:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.secondary_2b00 { font-size: 3rem; margin-bottom: 1rem; }
.module_silver_9b06 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.module_silver_9b06 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.heading-static-3a8f { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.heading-static-3a8f span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.label_first_1bbb { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.grid-93fe { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.aside_pro_e296 { text-align: center; }
.blue-8844 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.hover-up-ec50 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.hovered_aaba { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.button_36ea { margin: 2rem 0; }
.modal-36cd { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.modal-36cd h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.modal-36cd p, .modal-36cd ul { line-height: 1.7; }
.modal-36cd ul { list-style: none; padding-left: 0; }
.modal-36cd ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.modal-36cd ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.nav-dae7 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.first-530d { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.east_50db { text-align: center; }
.tertiary_4341 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.icon-3646 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.tag_dirty_343d { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.primary-brown-027b { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.in_9eb6 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.in_9eb6:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.in_9eb6 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.in_9eb6 p, .in_9eb6 ul { line-height: 1.7; }
.in_9eb6 ul { list-style: none; padding-left: 0; }
.in_9eb6 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.in_9eb6 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 1443 */
.widget-item-p5 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.3;
}
