/* ============================================
   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 */
.item-clean-bb26 p,
.inner_679d,
.focused-75f8,
.center-1a93,
.thick_c81d,
.paragraph-65cb,
.dark_ae4b,
.motion-9dfe {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.pagination-8ef3 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.pagination-8ef3 > *,
.media-gas-8ae7,
.item-clean-bb26,
.selected-67b3 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .pagination-8ef3 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .pagination-8ef3 {
    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 === */
.fresh_45f5 {
  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 */
.fresh_45f5.tertiary-d4d3 {
  box-shadow: var(--shadow-md);
}

.glass_ec2b {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.aside-copper-892e img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.lower_d94b {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.steel_02b8 {
  display: none;
}

/* Hide mobile actions on desktop */
.narrow_58df {
  display: none;
}

.avatar_small_9fa2 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.avatar_small_9fa2 a:hover,
.avatar_small_9fa2 a.fn-active-7801 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.nav_pink_f685 {
  margin-left: 1rem;
}

.gold_0540 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.hard-da77,
.current_c8c7 {
  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;
}

.hard-da77 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.hard-da77: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;
}

.current_c8c7 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.current_c8c7: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;
}

.hard-da77 svg,
.current_c8c7 svg {
  flex-shrink: 0;
}

.light-a801 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hot-dee6 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.hot-dee6::before,
.hot-dee6::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.hot-dee6::before {
  top: -7px;
}

.hot-dee6::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.table-dark-4086 {
  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 === */
.dropdown_gas_3b62 {
  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);
}

.warm_4fc4 {
  margin: 0 0 2rem;
  text-align: center;
}

.nav_glass_b879 {
  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;
}

.nav_glass_b879:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.picture-0058 {
  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);
}

.picture-0058 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.over-690e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.narrow_cb25 {
  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;
}

.narrow_cb25:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.north_846e {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.breadcrumb_left_8315 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.row_5663 {
  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);
}

.row_5663 .content-current-69d8 {
  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;
}

.row_5663 .content-current-69d8 svg {
  flex-shrink: 0;
}

.row_5663 .current-5d61 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.row_5663 .current-5d61: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);
}

.row_5663 .hovered-3b25 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.row_5663 .hovered-3b25: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) {
  .dropdown_gas_3b62 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .nav_glass_b879 {
    max-width: 100%;
  }

  .over-690e {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .narrow_cb25 {
    padding: 1rem;
  }

  .north_846e {
    font-size: 1.5rem;
  }

  .breadcrumb_left_8315 {
    font-size: 0.75rem;
  }

  .picture-0058 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .row_5663 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .row_5663 .content-current-69d8 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .over-690e {
    grid-template-columns: 1fr;
  }
}

.photo_glass_9c77 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.carousel-yellow-113e {
  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 === */
.icon-mini-3158 {
  margin-bottom: 2.5rem;
}

.picture_211f {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.photo_glass_9c77 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.focused-baf7 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.thumbnail_5c75 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.center_29fd {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.small-de8f {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.detail_motion_2180 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.north-4a70 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.menu_old_8094 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.menu_old_8094 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.hover-e927 {
  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);
}

.form-motion-28f4 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.south-2d3b {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.bottom_ae7d {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.fluid-d8a1 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.disabled_large_60d4 {
  display: grid;
  gap: 1rem;
}

.element_237f {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.north-c335 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.row_f0a2 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.backdrop-east-01f5 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.tall_c30b {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.north_58f8 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.north_58f8 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.inner_679d {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.simple-c8a7 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.slow-5776 {
  display: grid;
  gap: 2rem;
}

.center_b43d {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.thumbnail_5c75 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.focused-baf7 {
  flex: 1;
}

.small-de8f {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.small-de8f a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.breadcrumb_b034 {
  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;
}

.detail_motion_2180 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.progress_ec43 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.progress_ec43 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.accordion_up_0ff1 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.accordion_up_0ff1 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.description_east_dc1f {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.description_east_dc1f strong {
  display: block;
  margin-bottom: 0.75rem;
}

.description_east_dc1f ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.description_east_dc1f li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.tooltip-6555 {
  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 === */
.message_4099 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.highlight_4eb8 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.light-3b8f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.hidden_hot_40fd h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.hidden_hot_40fd ol {
  list-style: none;
  counter-reset: toc-counter;
}

.hidden_hot_40fd ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.hidden_hot_40fd 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;
}

.hidden_hot_40fd ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.hidden_hot_40fd ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.item-clean-bb26 {
  padding: 3rem 0 5rem;
}

.selected-67b3 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.selected-67b3.center_5a76 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.focused-75f8 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.modal-north-07cd {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.silver-1d4d {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.silver-1d4d h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.sidebar_ee65 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.rough_0182 {
  text-align: center;
}

.disabled_a11f {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.detail_over_a552 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.soft-3600 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.paragraph-65cb {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.center-1a93 {
  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;
}

.center-1a93 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.center-1a93:hover {
  box-shadow: var(--shadow-lg);
}

.center-1a93.aside-848c {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.center-1a93 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.center-1a93 ul {
  margin: 1rem 0;
}

.center-1a93 li {
  margin-bottom: 0.75rem;
}

.backdrop-167a {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.dynamic_138d {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.dynamic_138d a {
  font-weight: 600;
}

/* === Data Tables === */
.banner-63e9 {
  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-63e9 table {
  width: 100%;
  min-width: 600px;
}

.banner-63e9 thead {
  background-color: var(--primary-color);
  color: white;
}

.banner-63e9 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.banner-63e9 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.banner-63e9 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.banner-63e9 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.shade_2620 {
  list-style: none;
  margin: 1.5rem 0;
}

.shade_2620 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.shade_2620 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.banner_0bea::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-7801::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 === */
.under_e088 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.basic_0f5a {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.basic_0f5a img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.basic_0f5a strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.basic_0f5a span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.under_e088 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.dark_ae4b {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.dark_ae4b::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.gas-30d8 {
  position: relative;
  margin-bottom: 3rem;
}

.narrow-1225 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.narrow-1225 .progress_pressed_3f40 {
  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;
}

.gallery-dark-916f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.gallery-dark-916f h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.gallery-dark-916f ul {
  margin: 1rem 0;
}

.gallery-dark-916f li {
  margin-bottom: 0.75rem;
}

.photo-cfc3 {
  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 === */
.label-simple-2b3b {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.label-simple-2b3b h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.caption_9e5c {
  list-style: none;
  margin: 1.5rem 0;
}

.caption_9e5c li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.caption_9e5c a {
  font-weight: 600;
}

.badge_short_fd3d {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.motion-9dfe {
  margin: 2.5rem 0;
}

.filter-2d1c {
  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;
}

.filter-2d1c:hover {
  box-shadow: var(--shadow-lg);
}

.filter-2d1c.surface-6be9 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.input-257d {
  flex-shrink: 0;
}

.input-257d 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);
}

.list_d1ab h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.badge-thick-5c17,
.text-d703,
.dark-fc5a {
  width: 100%;
  margin: 1.5rem 0;
}

.modal-6dfc {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.modal-6dfc strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.surface_0bbc {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.surface_0bbc strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.smooth-9581 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.smooth-9581 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.nav_light_c46a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.panel_5b34 {
  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;
}

.panel_5b34:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.panel_5b34.under-c896 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.panel_5b34 .advanced-ad16 {
  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;
}

.panel_5b34 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.huge-f3bd {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.light_3502 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.light_3502 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.notice_a070 {
  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 === */
.content-current-69d8 {
  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;
}

.current-5d61 {
  background-color: var(--primary-color);
  color: white;
}

.current-5d61:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.hovered-3b25 {
  background-color: var(--text-secondary);
  color: white;
}

.hovered-3b25:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.east-c3c1 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.east-c3c1:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.tabs_silver_a684 {
  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;
}

.tabs_silver_a684:hover {
  background-color: var(--primary-dark);
}

.easy-a284 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.dropdown-345c {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.widget-0a51 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.background_solid_29e7 {
  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 === */
.heading-thick-9d01 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.prev-0111 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.prev-0111 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.over-d523 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.active-c147 {
  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-be72 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.secondary_f62a {
  list-style: none;
  counter-reset: rank-counter;
}

.secondary_f62a li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.secondary_f62a 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;
}

.cold_1202 {
  list-style: none;
}

.cold_1202 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.chip_8493 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.feature_fa7b {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.feature_fa7b .container-dccd {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.feature_fa7b .gallery-liquid-ce0a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.down_cbff {
  margin-top: 3rem;
}

.main-pro-5f73 {
  width: 100%;
}

.sort_3581 {
  background-color: #fef3c7;
}

.logo_cd2d {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.notification-north-c7da {
  margin: 3rem 0;
}

.filter-middle-5bae {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.center_52c7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.center_52c7:hover {
  box-shadow: var(--shadow-lg);
}

.center_52c7.message_9c46 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.tag_hard_a782 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.hover-523c strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.hover-523c span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.feature_last_0f14 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.center_52c7 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.shadow-3a6b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.complex_6076 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.label_6307 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.tooltip_yellow_755e {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.nav_orange_e77c {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.hero_498f {
  margin-top: 1rem;
}

/* === FAQ Section === */
.heading_afd6 {
  max-width: 900px;
  margin: 0 auto;
}

.static-57a9 {
  margin: 2rem 0;
}

.plasma_9bdc {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.plasma_9bdc summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.plasma_9bdc summary::-webkit-details-marker {
  display: none;
}

.plasma_9bdc summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.cold-ba20 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.plasma_9bdc[open] .cold-ba20 {
  transform: rotate(45deg);
}

.gradient_smooth_9151 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.gradient_smooth_9151 p:last-child {
  margin-bottom: 0;
}

.shadow_motion_c2f8 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.wood_2eb4 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.tabs-west-fe78 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.tabs-west-fe78 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.tabs-west-fe78 .content-current-69d8 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.paper_8194 {
  max-width: 900px;
  margin: 0 auto;
}

.form-tall-7fd2 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.summary-2769 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.summary-2769.fn-success-7801 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.link-warm-5d3e {
  font-size: 3rem;
  line-height: 1;
}

.north-f55d h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.focus-fixed-0465 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.image_clean_3e81,
.label-fe87 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.image_clean_3e81 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.label-fe87 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.shadow_hard_91d3,
.section_bottom_9240 {
  margin: 1.5rem 0;
}

.shadow_hard_91d3 li,
.section_bottom_9240 li {
  margin-bottom: 1rem;
}

.item_selected_62c3 {
  margin: 3rem 0;
}

.hover-easy-2cd3 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.hover-easy-2cd3 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.hover-easy-2cd3 ol {
  margin: 1rem 0;
}

.hover-easy-2cd3 li {
  margin-bottom: 0.75rem;
}

.feature_steel_f6f6 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.outer-720c {
  margin: 2rem 0;
}

.action-95f7 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.border_5efd {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.chip_3157 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.up-e0ca {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.video-896d {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.smooth-7f52 {
  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;
}

.smooth-7f52 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.center_29fd {
  flex: 1;
}

.center_29fd h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.title-new-1dc4 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.gallery_old_0297 p {
  margin-bottom: 1rem;
}

.panel-dynamic-1944 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.element_next_2274 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.black_a0a2 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.black_a0a2 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.overlay_c14a h3 {
  margin-bottom: 1.5rem;
}

.popup-10be {
  display: grid;
  gap: 2rem;
}

.wrapper_31f5 {
  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;
}

.wrapper_31f5 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.wrapper_31f5 h4 {
  margin: 0 0 0.25rem;
}

.wrapper_31f5 p {
  margin: 0;
  font-size: 0.9375rem;
}

.fast-69c7 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.in-091e {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.in-091e h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.in-091e ul {
  margin: 1.5rem 0;
}

.in-091e li {
  margin-bottom: 0.75rem;
}

.logo_28c3 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.filter_medium_373c {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.table-7eae {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.gas_79fd h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.gas_79fd p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.row-silver-d45b {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.row-silver-d45b a {
  color: rgba(255, 255, 255, 0.8);
}

.pro-e3e5 {
  list-style: none;
}

.pro-e3e5 li {
  margin-bottom: 0.75rem;
}

.pro-e3e5 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.pro-e3e5 a:hover {
  color: white;
}

.surface-complex-7123 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.module-under-4dc2 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.status_gas_0417 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.solid-57f6 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.tabs-first-090a {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .pagination-8ef3 {
    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;
  }

  .text-hot-ab58 {
    font-size: 1.5rem !important;
  }

  .picture_211f {
    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 */
  .center-1a93,
  .thick_c81d,
  .gallery-dark-916f,
  .list_d1ab,
  .tag_hard_a782,
  .center_52c7,
  .gradient_smooth_9151,
  .picture-0058,
  .inner_679d,
  .focused-75f8 {
    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 */
  .photo_glass_9c77 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .focused-baf7 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .thumbnail_5c75 {
    flex-shrink: 0;
  }

  .center_29fd {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .small-de8f,
  .detail_motion_2180 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .detail_motion_2180 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .lower_d94b {
    display: none;
  }

  /* Show mobile actions */
  .narrow_58df {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .old_7445 {
    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;
  }

  .old_7445 svg {
    flex-shrink: 0;
  }

  .old_7445 .content-fd0f {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .old_7445 .content_1c99 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .last-3704 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .video_copper_9bff {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .old_7445:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .steel_02b8 {
    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;
  }

  .steel_02b8.fn-active-7801 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .steel_02b8 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .steel_02b8 li:last-child {
    border-bottom: none;
  }

  .steel_02b8 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .avatar_small_9fa2 {
    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;
  }

  .avatar_small_9fa2 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .avatar_small_9fa2 li:last-child {
    border-bottom: none;
  }

  .avatar_small_9fa2 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .nav_pink_f685 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .gold_0540 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .hard-da77,
  .current_c8c7 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .hard-da77 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .current_c8c7 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .avatar_small_9fa2.fn-active-7801 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .light-a801 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .fresh_45f5 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .glass_ec2b {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .table-dark-4086 {
    margin-top: 0;
  }

  /* Hero section */
  .table-dark-4086 {
    padding: 2rem 0 1.5rem;
  }

  .picture_211f {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .inner_679d {
    font-size: 1rem;
  }

  /* Hero brand image */
  .dropdown_gas_3b62 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .nav_glass_b879 {
    max-width: 100%;
    border-radius: 8px;
  }

  .over-690e {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .narrow_cb25 {
    padding: 1rem;
  }

  .north_846e {
    font-size: 1.5rem;
  }

  .breadcrumb_left_8315 {
    font-size: 0.75rem;
  }

  .picture-0058 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .row_5663 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .row_5663 .content-current-69d8 {
    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 */
  .light-3b8f {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .filter-2d1c {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .input-257d {
    margin-bottom: 1rem;
  }

  /* Author */
  .center_b43d {
    flex-direction: column;
  }

  .smooth-7f52 {
    flex-direction: column;
  }

  /* Quotes */
  .tag_hard_a782 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .focus-fixed-0465 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .up-e0ca {
    flex-direction: column;
  }

  .up-e0ca .content-current-69d8 {
    width: 100%;
  }

  /* Version comparison */
  .nav_light_c46a {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .heading-thick-9d01 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .table-7eae {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .status_gas_0417 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .banner-63e9,
  .text-d703,
  .gradient-6295,
  .main-pro-5f73,
  .badge-thick-5c17,
  .dark-fc5a {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .banner-63e9 table,
  .text-d703 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .notice_a070 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .pagination-8ef3 {
    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;
  }

  .text-hot-ab58 {
    font-size: 1.25rem !important;
  }

  .picture_211f {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .fresh_45f5 {
    position: fixed;
  }

  .glass_ec2b {
    padding: 0.625rem 0;
  }

  .aside-copper-892e img {
    height: 26px;
  }

  .avatar_small_9fa2 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .steel_02b8 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .old_7445 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .old_7445 svg {
    width: 18px;
    height: 18px;
  }

  .old_7445 .content-fd0f {
    font-size: 0.7rem;
  }

  .old_7445 .content_1c99 {
    font-size: 0.65rem;
  }

  .hard-da77,
  .current_c8c7 {
    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, .pagination-8ef3, .media-gas-8ae7, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .dropdown_gas_3b62 {
    padding: 1rem;
  }

  .over-690e {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .narrow_cb25 {
    padding: 0.875rem;
  }

  .north_846e {
    font-size: 1.25rem;
  }

  .row_5663 .content-current-69d8 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .picture_211f {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .content-current-69d8 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .easy-a284 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .filter-2d1c {
    padding: 1rem;
  }

  .input-257d span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .center-1a93,
  .layout_ba94,
  .pattern-in-2835,
  .detail-eb84 {
    padding: 1rem;
  }
}

@media print {
  .fresh_45f5,
  .message_4099,
  .light-a801,
  .content-current-69d8,
  .filter_medium_373c {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .pagination-8ef3 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.logo_c2ac {
  margin-bottom: 3rem;
  text-align: center;
}

.text-hot-ab58 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.tooltip_d3e8 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.main-inner-0a15,
.table_f3f8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.surface-paper-1c65 {
  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;
}

.surface-paper-1c65:hover {
  transform: translateY(-5px);
}

.surface-paper-1c65 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.surface-paper-1c65 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.highlight-glass-8786 {
  margin: 3rem 0;
}

.box_medium_ab0a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.paragraph-simple-7791 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.paragraph-simple-7791:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.soft_13a0 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-7af1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.primary_e47f {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.status_712d {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.chip-gas-f0ff {
  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;
}

.chip-gas-f0ff:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.chip-gas-f0ff.hover_125b {
  border-left: 4px solid var(--primary-color);
}

.info-f37a {
  flex-shrink: 0;
}

.info-f37a svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.info-wide-2594 {
  flex: 1;
}

.info-wide-2594 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.thick-6c42 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.shade_cool_0a78,
.gas_9280,
.input_focused_4b36 {
  margin-bottom: 1.5rem;
}

.shade_cool_0a78 h4,
.gas_9280 h4,
.input_focused_4b36 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.shade_cool_0a78 ul,
.gas_9280 ul,
.input_focused_4b36 ul {
  list-style: none;
  padding: 0;
}

.shade_cool_0a78 li,
.gas_9280 li,
.input_focused_4b36 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.shade_cool_0a78 li:before,
.gas_9280 li:before,
.input_focused_4b36 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.surface_glass_036e {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.surface_glass_036e 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;
}

.surface_glass_036e a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.module-ef4d { margin: 2rem 0; }
.cool_6dc4 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.cool_6dc4 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.gradient_ef4d p { margin-bottom: 1rem; line-height: 1.7; }
.gradient_ef4d strong { color: var(--text-primary); }
.gradient_ef4d ul { list-style: none; padding-left: 0; }
.gradient_ef4d ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.gradient_ef4d ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.nav_9c3b { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.footer_80ce { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.footer_80ce:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.nav_stone_c460 { font-size: 3rem; margin-bottom: 1rem; }
.footer_80ce h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.footer_80ce p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.left_e573 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.left_e573 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.panel-green-ebbc { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.backdrop-thick-bc7f { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.article_3ef0 { text-align: center; }
.nav-317b { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.paragraph-south-058c { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.caption_motion_6d90 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.tabs_3e93 { margin: 2rem 0; }
.sort_ffeb { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.sort_ffeb h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.sort_ffeb p, .sort_ffeb ul { line-height: 1.7; }
.sort_ffeb ul { list-style: none; padding-left: 0; }
.sort_ffeb ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.sort_ffeb ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.narrow_5017 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.soft_e8f6 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.icon_fast_4d0b { text-align: center; }
.tabs-1d26 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.avatar_a2dc { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.section-fixed-7a73 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.pressed-be5c { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.nav-bright-1529 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.nav-bright-1529:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.nav-bright-1529 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.nav-bright-1529 p, .nav-bright-1529 ul { line-height: 1.7; }
.nav-bright-1529 ul { list-style: none; padding-left: 0; }
.nav-bright-1529 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.nav-bright-1529 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: cea2 */
.ghost-box-t3 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.0;
}
