/* ============================================
   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 */
.west-5204 p,
.active_0279,
.image_wood_ee66,
.accordion_03c0,
.gas-a526,
.list_ee84,
.breadcrumb_9b7b,
.section-19a9 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.orange_bb8c {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.orange_bb8c > *,
.surface-11da,
.west-5204,
.bright-4790 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .orange_bb8c {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .orange_bb8c {
    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 === */
.status_last_6b54 {
  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 */
.status_last_6b54.wood_d3f6 {
  box-shadow: var(--shadow-md);
}

.thick_20f4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.green-7723 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.wide_2b2c {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.button_yellow_f3bd {
  display: none;
}

/* Hide mobile actions on desktop */
.slow-0f47 {
  display: none;
}

.outline-7cbd a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.outline-7cbd a:hover,
.outline-7cbd a.fn-active-0768 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.accordion-e0f4 {
  margin-left: 1rem;
}

.pink_a894 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.notification_lite_942c,
.label-c3dc {
  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;
}

.notification_lite_942c {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.notification_lite_942c: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;
}

.label-c3dc {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.label-c3dc: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;
}

.notification_lite_942c svg,
.label-c3dc svg {
  flex-shrink: 0;
}

.right_272a {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.new-e2ad {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.new-e2ad::before,
.new-e2ad::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.new-e2ad::before {
  top: -7px;
}

.new-e2ad::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.media_d2ed {
  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 === */
.brown-798f {
  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);
}

.prev_e634 {
  margin: 0 0 2rem;
  text-align: center;
}

.active-dirty-2fc5 {
  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;
}

.active-dirty-2fc5:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.texture_798b {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  text-align: left;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.texture_798b strong {
  color: var(--primary-color);
  font-weight: 700;
}

.modal_middle_bef9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.thumbnail-4a9e {
  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;
}

.thumbnail-4a9e:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.texture-4bfd {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.fresh_7b8c {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.gold_112f {
  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);
}

.gold_112f .tabs-bright-7df6 {
  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;
}

.gold_112f .tabs-bright-7df6 svg {
  flex-shrink: 0;
}

.gold_112f .slider_2ac2 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.gold_112f .slider_2ac2: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);
}

.gold_112f .card_current_75a0 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.gold_112f .card_current_75a0: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) {
  .brown-798f {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .active-dirty-2fc5 {
    max-width: 100%;
  }

  .modal_middle_bef9 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .thumbnail-4a9e {
    padding: 1rem;
  }

  .texture-4bfd {
    font-size: 1.5rem;
  }

  .fresh_7b8c {
    font-size: 0.75rem;
  }

  .texture_798b {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .gold_112f {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .gold_112f .tabs-bright-7df6 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .modal_middle_bef9 {
    grid-template-columns: 1fr;
  }
}

.lite_d0c1 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.carousel-east-226f {
  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 === */
.block-97c3 {
  margin-bottom: 2.5rem;
}

.red_1560 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.lite_d0c1 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.paper-757e {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.button_soft_0d9a {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.background-mini-3212 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.picture_b5e3 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.east_9d94 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.hero-c15a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pro_3978 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pro_3978 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.row_7c09 {
  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);
}

.plasma_3706 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.tooltip-white-0b96 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.detail-7ce4 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.banner-east-75d4 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.shadow_steel_e7b4 {
  display: grid;
  gap: 1rem;
}

.menu_dark_aa47 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.alert-dea3 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.background-dirty-f1bc {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.short_5afb {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.table_slow_6c0d {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.main_95eb {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.main_95eb p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.active_0279 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.out_9a93 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.silver-cd91 {
  display: grid;
  gap: 2rem;
}

.full-abf2 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.button_soft_0d9a {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.paper-757e {
  flex: 1;
}

.picture_b5e3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.picture_b5e3 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.disabled_new_9286 {
  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;
}

.east_9d94 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.title-d9bf {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.title-d9bf span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.wrapper-ad2b {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.wrapper-ad2b a {
  font-size: 0.875rem;
  font-weight: 500;
}

.picture-3e7e {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.picture-3e7e strong {
  display: block;
  margin-bottom: 0.75rem;
}

.picture-3e7e ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.picture-3e7e li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.modal-stale-a5e1 {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #fef3c7;
  border-left: 4px solid var(--warning-color);
  border-radius: 4px;
  font-size: 0.9375rem;
}

/* === Table of Contents === */
.background-motion-cf6f {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.panel-medium-d4d9 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.copper-136c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tiny-cd3b h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.tiny-cd3b ol {
  list-style: none;
  counter-reset: toc-counter;
}

.tiny-cd3b ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.tiny-cd3b 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;
}

.tiny-cd3b ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.tiny-cd3b ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.west-5204 {
  padding: 3rem 0 5rem;
}

.bright-4790 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.bright-4790.alert-7b32 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.image_wood_ee66 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.image_98f1 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.large-7a47 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.large-7a47 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.slider-10bd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.prev_f56d {
  text-align: center;
}

.text_pro_b555 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.cool-76f1 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.solid-c9c6 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.list_ee84 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.accordion_03c0 {
  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;
}

.accordion_03c0 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.accordion_03c0:hover {
  box-shadow: var(--shadow-lg);
}

.accordion_03c0.primary_upper_3408 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.accordion_03c0 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.accordion_03c0 ul {
  margin: 1rem 0;
}

.accordion_03c0 li {
  margin-bottom: 0.75rem;
}

.sidebar-north-74d7 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.video-down-fae2 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.video-down-fae2 a {
  font-weight: 600;
}

/* === Data Tables === */
.main-easy-6272 {
  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;
}

.main-easy-6272 table {
  width: 100%;
  min-width: 600px;
}

.main-easy-6272 thead {
  background-color: var(--primary-color);
  color: white;
}

.main-easy-6272 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.main-easy-6272 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.main-easy-6272 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.main-easy-6272 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.carousel_4b88 {
  list-style: none;
  margin: 1.5rem 0;
}

.carousel_4b88 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.carousel_4b88 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.secondary-86e7::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-0768::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 === */
.black-e7e9 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.element-short-bc9c {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.element-short-bc9c img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.element-short-bc9c strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.element-short-bc9c span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.black-e7e9 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.breadcrumb_9b7b {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.breadcrumb_9b7b::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.text-2d26 {
  position: relative;
  margin-bottom: 3rem;
}

.gallery-west-8a44 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.gallery-west-8a44 .menu-action-285c {
  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;
}

.last-aa59 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.last-aa59 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.last-aa59 ul {
  margin: 1rem 0;
}

.last-aa59 li {
  margin-bottom: 0.75rem;
}

.hero_c039 {
  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 === */
.soft-c5df {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.soft-c5df h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.footer_large_04cd {
  list-style: none;
  margin: 1.5rem 0;
}

.footer_large_04cd li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.footer_large_04cd a {
  font-weight: 600;
}

.notification_bright_27c5 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.section-19a9 {
  margin: 2.5rem 0;
}

.up_e994 {
  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;
}

.up_e994:hover {
  box-shadow: var(--shadow-lg);
}

.up_e994.accordion_28f5 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.bright_47ee {
  flex-shrink: 0;
}

.bright_47ee 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);
}

.dim-5e2a h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.outer_7781,
.inner_a0ec,
.active-6d64 {
  width: 100%;
  margin: 1.5rem 0;
}

.slider-e923 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.slider-e923 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.panel_654f {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.panel_654f strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.row_5af3 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.row_5af3 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.gradient_ee05 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.backdrop_69a5 {
  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;
}

.backdrop_69a5:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.backdrop_69a5.surface_75ec {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.backdrop_69a5 .hero_old_4fae {
  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;
}

.backdrop_69a5 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.middle_2f17 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.sort-0d57 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.sort-0d57 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.hero-pressed-20cf {
  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 === */
.tabs-bright-7df6 {
  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;
}

.slider_2ac2 {
  background-color: var(--primary-color);
  color: white;
}

.slider_2ac2:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.card_current_75a0 {
  background-color: var(--text-secondary);
  color: white;
}

.card_current_75a0:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.content-stone-96e5 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.content-stone-96e5:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.media_current_13e4 {
  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;
}

.media_current_13e4:hover {
  background-color: var(--primary-dark);
}

.video-red-747e {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.preview_left_fcf1 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.panel-tall-3acb {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.bronze-048e {
  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 === */
.white_4856 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.purple-759e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.purple-759e h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.filter-eb46 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.focused_7a27 {
  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;
}

.bronze_80f6 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.tabs-fast-0e35 {
  list-style: none;
  counter-reset: rank-counter;
}

.tabs-fast-0e35 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.tabs-fast-0e35 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;
}

.dark_81e8 {
  list-style: none;
}

.dark_81e8 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.icon-c323 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.smooth_f7ae {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.smooth_f7ae .menu_dynamic_b1e6 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.smooth_f7ae .message_south_0c59 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.column-under-0518 {
  margin-top: 3rem;
}

.bottom_7137 {
  width: 100%;
}

.north_6cb5 {
  background-color: #fef3c7;
}

.hidden_1407 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.message_5b9e {
  margin: 3rem 0;
}

.smooth_8fe9 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.action-516e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.action-516e:hover {
  box-shadow: var(--shadow-lg);
}

.action-516e.media-liquid-5e57 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.backdrop_silver_8f51 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.module_slow_7b07 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.module_slow_7b07 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.table-static-2651 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.action-516e blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.feature-up-a030 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.shade-a121 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.info_2076 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.dirty_f3ea {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.primary_83fd {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.out-1648 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.right-377d {
  max-width: 900px;
  margin: 0 auto;
}

.new-f787 {
  margin: 2rem 0;
}

.dropdown-9a98 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.dropdown-9a98 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.dropdown-9a98 summary::-webkit-details-marker {
  display: none;
}

.dropdown-9a98 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.heading_c9f9 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.dropdown-9a98[open] .heading_c9f9 {
  transform: rotate(45deg);
}

.photo_ca13 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.photo_ca13 p:last-child {
  margin-bottom: 0;
}

.description-026c {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.green-e62b {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.text-108b {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.text-108b p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.text-108b .tabs-bright-7df6 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.nav-prev-047c {
  max-width: 900px;
  margin: 0 auto;
}

.layout-red-8693 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.primary-1a76 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.primary-1a76.fn-success-0768 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.texture_3e01 {
  font-size: 3rem;
  line-height: 1;
}

.notification-fast-837a h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.inner_09ea {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.header-2373,
.status-5628 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.header-2373 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.status-5628 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.media_tall_cee9,
.silver_643a {
  margin: 1.5rem 0;
}

.media_tall_cee9 li,
.silver_643a li {
  margin-bottom: 1rem;
}

.small_9c28 {
  margin: 3rem 0;
}

.purple_003c {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.purple_003c h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.purple_003c ol {
  margin: 1rem 0;
}

.purple_003c li {
  margin-bottom: 0.75rem;
}

.heading_7ece {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.tabs-6b09 {
  margin: 2rem 0;
}

.current_e06e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.fixed-b37f {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.gallery_e02c {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.shade_4998 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.gallery-pressed-4df5 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.mask_f8cd {
  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;
}

.mask_f8cd img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.background-mini-3212 {
  flex: 1;
}

.background-mini-3212 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.shadow-bottom-c9a0 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.link-dim-2bf0 p {
  margin-bottom: 1rem;
}

.progress-5946 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.pattern-east-a4c2 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.shadow_9aa3 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.shadow_9aa3 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.new_9ea0 h3 {
  margin-bottom: 1.5rem;
}

.tall_6f0e {
  display: grid;
  gap: 2rem;
}

.widget_c378 {
  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;
}

.widget_c378 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.widget_c378 h4 {
  margin: 0 0 0.25rem;
}

.widget_c378 p {
  margin: 0;
  font-size: 0.9375rem;
}

.accent-brown-1bd9 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.background-smooth-dca3 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.background-smooth-dca3 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.background-smooth-dca3 ul {
  margin: 1.5rem 0;
}

.background-smooth-dca3 li {
  margin-bottom: 0.75rem;
}

.panel_4aab {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.search-7bff {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.link-e834 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.mask_17c9 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.mask_17c9 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.active_bronze_3eec {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.active_bronze_3eec a {
  color: rgba(255, 255, 255, 0.8);
}

.stone-836f {
  list-style: none;
}

.stone-836f li {
  margin-bottom: 0.75rem;
}

.stone-836f a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.stone-836f a:hover {
  color: white;
}

.footer_red_2637 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.preview_3cb4 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.pagination-8fd8 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.link_d93b {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.new-2e04 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .orange_bb8c {
    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;
  }

  .sort-c97d {
    font-size: 1.5rem !important;
  }

  .red_1560 {
    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 */
  .accordion_03c0,
  .gas-a526,
  .last-aa59,
  .dim-5e2a,
  .backdrop_silver_8f51,
  .action-516e,
  .photo_ca13,
  .texture_798b,
  .active_0279,
  .image_wood_ee66 {
    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 */
  .lite_d0c1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .paper-757e {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .button_soft_0d9a {
    flex-shrink: 0;
  }

  .background-mini-3212 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .picture_b5e3,
  .east_9d94 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .east_9d94 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .wide_2b2c {
    display: none;
  }

  /* Show mobile actions */
  .slow-0f47 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .modal_5306 {
    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;
  }

  .modal_5306 svg {
    flex-shrink: 0;
  }

  .modal_5306 .input-97e1 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .modal_5306 .title_77c8 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .purple-e9ba {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .glass-5c54 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .modal_5306:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .button_yellow_f3bd {
    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;
  }

  .button_yellow_f3bd.fn-active-0768 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .button_yellow_f3bd li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .button_yellow_f3bd li:last-child {
    border-bottom: none;
  }

  .button_yellow_f3bd a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .outline-7cbd {
    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;
  }

  .outline-7cbd li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .outline-7cbd li:last-child {
    border-bottom: none;
  }

  .outline-7cbd a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .accordion-e0f4 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .pink_a894 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .notification_lite_942c,
  .label-c3dc {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .notification_lite_942c {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .label-c3dc {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .outline-7cbd.fn-active-0768 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .right_272a {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .status_last_6b54 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .thick_20f4 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .media_d2ed {
    margin-top: 0;
  }

  /* Hero section */
  .media_d2ed {
    padding: 2rem 0 1.5rem;
  }

  .red_1560 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .active_0279 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .brown-798f {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .active-dirty-2fc5 {
    max-width: 100%;
    border-radius: 8px;
  }

  .modal_middle_bef9 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .thumbnail-4a9e {
    padding: 1rem;
  }

  .texture-4bfd {
    font-size: 1.5rem;
  }

  .fresh_7b8c {
    font-size: 0.75rem;
  }

  .texture_798b {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .gold_112f {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .gold_112f .tabs-bright-7df6 {
    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 */
  .copper-136c {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .up_e994 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .bright_47ee {
    margin-bottom: 1rem;
  }

  /* Author */
  .full-abf2 {
    flex-direction: column;
  }

  .mask_f8cd {
    flex-direction: column;
  }

  /* Quotes */
  .backdrop_silver_8f51 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .inner_09ea {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .shade_4998 {
    flex-direction: column;
  }

  .shade_4998 .tabs-bright-7df6 {
    width: 100%;
  }

  /* Version comparison */
  .gradient_ee05 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .white_4856 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .link-e834 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pagination-8fd8 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .main-easy-6272,
  .inner_a0ec,
  .panel-next-ebcc,
  .bottom_7137,
  .outer_7781,
  .active-6d64 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main-easy-6272 table,
  .inner_a0ec table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .hero-pressed-20cf {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .orange_bb8c {
    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;
  }

  .sort-c97d {
    font-size: 1.25rem !important;
  }

  .red_1560 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .status_last_6b54 {
    position: fixed;
  }

  .thick_20f4 {
    padding: 0.625rem 0;
  }

  .green-7723 img {
    height: 26px;
  }

  .outline-7cbd {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .button_yellow_f3bd {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .modal_5306 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .modal_5306 svg {
    width: 18px;
    height: 18px;
  }

  .modal_5306 .input-97e1 {
    font-size: 0.7rem;
  }

  .modal_5306 .title_77c8 {
    font-size: 0.65rem;
  }

  .notification_lite_942c,
  .label-c3dc {
    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, .orange_bb8c, .surface-11da, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .brown-798f {
    padding: 1rem;
  }

  .modal_middle_bef9 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .thumbnail-4a9e {
    padding: 0.875rem;
  }

  .texture-4bfd {
    font-size: 1.25rem;
  }

  .gold_112f .tabs-bright-7df6 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .red_1560 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .tabs-bright-7df6 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .video-red-747e {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .up_e994 {
    padding: 1rem;
  }

  .bright_47ee span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .accordion_03c0,
  .status_e9e9,
  .pagination-blue-faaa,
  .out-a72b {
    padding: 1rem;
  }
}

@media print {
  .status_last_6b54,
  .background-motion-cf6f,
  .right_272a,
  .tabs-bright-7df6,
  .search-7bff {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .orange_bb8c {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.texture_25a7 {
  margin-bottom: 3rem;
  text-align: center;
}

.sort-c97d {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.image_pro_a1f7 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.heading_under_7dc9,
.stone-5e03 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.input_dc7c {
  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;
}

.input_dc7c:hover {
  transform: translateY(-5px);
}

.input_dc7c strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.input_dc7c span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.hero-medium-41eb {
  margin: 3rem 0;
}

.sidebar_fluid_df37 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.cold-948d {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.cold-948d:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.layout-8cf7 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.red-2765 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.paper_ada8 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.filter_small_0f18 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.media-up-6aa1 {
  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;
}

.media-up-6aa1:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.media-up-6aa1.hidden_green_28b2 {
  border-left: 4px solid var(--primary-color);
}

.accordion_mini_f773 {
  flex-shrink: 0;
}

.accordion_mini_f773 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.white_31e7 {
  flex: 1;
}

.white_31e7 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.lite-711f {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.active-cff2,
.block_8cc7,
.shadow-soft-dd2e {
  margin-bottom: 1.5rem;
}

.active-cff2 h4,
.block_8cc7 h4,
.shadow-soft-dd2e h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.active-cff2 ul,
.block_8cc7 ul,
.shadow-soft-dd2e ul {
  list-style: none;
  padding: 0;
}

.active-cff2 li,
.block_8cc7 li,
.shadow-soft-dd2e li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.active-cff2 li:before,
.block_8cc7 li:before,
.shadow-soft-dd2e li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.pagination-418a {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.pagination-418a 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;
}

.pagination-418a a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.preview_81f0 { margin: 2rem 0; }
.grid_bdc8 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.grid_bdc8 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.popup_stale_81cf p { margin-bottom: 1rem; line-height: 1.7; }
.popup_stale_81cf strong { color: var(--text-primary); }
.popup_stale_81cf ul { list-style: none; padding-left: 0; }
.popup_stale_81cf ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.popup_stale_81cf ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.hard_3611 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.nav-a8e7 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.nav-a8e7:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.component-tall-f32b { font-size: 3rem; margin-bottom: 1rem; }
.nav-a8e7 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.nav-a8e7 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.status_16a1 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.status_16a1 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.picture-62fe { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.clean_aac2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.brown_9be2 { text-align: center; }
.footer-gas-2924 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.media-6018 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.lower-c464 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.alert-bd7c { margin: 2rem 0; }
.shadow_daee { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.shadow_daee h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.shadow_daee p, .shadow_daee ul { line-height: 1.7; }
.shadow_daee ul { list-style: none; padding-left: 0; }
.shadow_daee ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.shadow_daee ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.title-hard-f820 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.article_paper_6615 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.dropdown-basic-04bf { text-align: center; }
.carousel-cd91 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.overlay-last-4de3 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.feature-05c0 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.over_c0f5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.card_motion_6d77 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.card_motion_6d77:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.card_motion_6d77 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.card_motion_6d77 p, .card_motion_6d77 ul { line-height: 1.7; }
.card_motion_6d77 ul { list-style: none; padding-left: 0; }
.card_motion_6d77 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.card_motion_6d77 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 7381 */
.widget-item-h6 {
  padding: 0.3rem;
  font-size: 12px;
  line-height: 1.1;
}
