/* ============================================
   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 */
.status_3b1b p,
.paper_50b6,
.mask-medium-a190,
.table_c6ce,
.new-f6c4,
.heading_f594,
.article-black-7a42,
.shadow-fixed-c185 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.image-0346 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.image-0346 > *,
.popup_1a50,
.status_3b1b,
.modal_833d {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .image-0346 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .image-0346 {
    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 === */
.hover_aec6 {
  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 */
.hover_aec6.row_dynamic_4460 {
  box-shadow: var(--shadow-md);
}

.left_6882 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.west-4baf img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.liquid-d407 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.menu-c015 {
  display: none;
}

/* Hide mobile actions on desktop */
.section_dafb {
  display: none;
}

.wide_b48f a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.wide_b48f a:hover,
.wide_b48f a.fn-active-64b8 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.under_7664 {
  margin-left: 1rem;
}

.banner_d9d7 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.heading-slow-fd13,
.selected-8465 {
  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;
}

.heading-slow-fd13 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.heading-slow-fd13: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;
}

.selected-8465 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.selected-8465: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;
}

.heading-slow-fd13 svg,
.selected-8465 svg {
  flex-shrink: 0;
}

.overlay_huge_eaf0 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hero_dc56 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.hero_dc56::before,
.hero_dc56::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.hero_dc56::before {
  top: -7px;
}

.hero_dc56::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.grid_8211 {
  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 === */
.input-focused-4bcb {
  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);
}

.first-99a5 {
  margin: 0 0 2rem;
  text-align: center;
}

.label-faf2 {
  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;
}

.label-faf2:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.overlay_be3c {
  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);
}

.overlay_be3c strong {
  color: var(--primary-color);
  font-weight: 700;
}

.column-paper-a134 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.alert-418c {
  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;
}

.alert-418c:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.surface-full-6cb7 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.banner-5f46 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.pagination-9929 {
  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);
}

.pagination-9929 .backdrop-d115 {
  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;
}

.pagination-9929 .backdrop-d115 svg {
  flex-shrink: 0;
}

.pagination-9929 .column-0d2a {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.pagination-9929 .column-0d2a: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);
}

.pagination-9929 .west-75f1 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.pagination-9929 .west-75f1: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) {
  .input-focused-4bcb {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .label-faf2 {
    max-width: 100%;
  }

  .column-paper-a134 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .alert-418c {
    padding: 1rem;
  }

  .surface-full-6cb7 {
    font-size: 1.5rem;
  }

  .banner-5f46 {
    font-size: 0.75rem;
  }

  .overlay_be3c {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .pagination-9929 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .pagination-9929 .backdrop-d115 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .column-paper-a134 {
    grid-template-columns: 1fr;
  }
}

.item_in_6801 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.left-93fa {
  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 === */
.inner-dcd7 {
  margin-bottom: 2.5rem;
}

.orange-7b4d {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.item_in_6801 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.north_b7f7 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.paragraph_e9f5 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.form-6a00 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.green_9967 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.accent_advanced_95d8 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.logo_42a2 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.outline-a02c {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.outline-a02c svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.notification_out_ec0f {
  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);
}

.banner_in_ea00 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.filter_72ba {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.summary_1510 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.fast_89fc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.tabs-a2c8 {
  display: grid;
  gap: 1rem;
}

.description_dark_5e19 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.shadow_8366 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.paragraph-first-7620 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.fresh_18fc {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.content_4517 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.accent-6acf {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.accent-6acf p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.paper_50b6 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.new-6e56 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.iron_1f9d {
  display: grid;
  gap: 2rem;
}

.purple_3f30 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.paragraph_e9f5 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.north_b7f7 {
  flex: 1;
}

.green_9967 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.green_9967 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.thumbnail_f5e9 {
  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;
}

.accent_advanced_95d8 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.center_b7ac {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.center_b7ac span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.item-f775 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.item-f775 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.focus_old_1fc1 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.focus_old_1fc1 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.focus_old_1fc1 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.focus_old_1fc1 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.sort_black_124b {
  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 === */
.green_70d7 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.easy-57b9 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.outline_bf4d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.notification-east-baf4 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.notification-east-baf4 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.notification-east-baf4 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.notification-east-baf4 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;
}

.notification-east-baf4 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.notification-east-baf4 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.status_3b1b {
  padding: 3rem 0 5rem;
}

.modal_833d {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.modal_833d.picture-d047 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.mask-medium-a190 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.over-a33a {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.bright_56f5 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.bright_56f5 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.short-4ac5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.up-dce3 {
  text-align: center;
}

.status_aeb7 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.texture_yellow_01ad {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.cold-cbb4 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.heading_f594 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.table_c6ce {
  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;
}

.table_c6ce * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.table_c6ce:hover {
  box-shadow: var(--shadow-lg);
}

.table_c6ce.green_0680 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.table_c6ce h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.table_c6ce ul {
  margin: 1rem 0;
}

.table_c6ce li {
  margin-bottom: 0.75rem;
}

.logo-3e4b {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.slider_action_e236 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.slider_action_e236 a {
  font-weight: 600;
}

/* === Data Tables === */
.huge-51dd {
  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;
}

.huge-51dd table {
  width: 100%;
  min-width: 600px;
}

.huge-51dd thead {
  background-color: var(--primary-color);
  color: white;
}

.huge-51dd th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.huge-51dd td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.huge-51dd tbody tr:hover {
  background-color: var(--bg-secondary);
}

.huge-51dd tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.up-62d2 {
  list-style: none;
  margin: 1.5rem 0;
}

.up-62d2 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.up-62d2 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.prev-bf0e::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-64b8::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 === */
.purple_b73e {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.sort-9e04 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.sort-9e04 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.sort-9e04 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.sort-9e04 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.purple_b73e blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.article-black-7a42 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.article-black-7a42::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.secondary-cold-9f1b {
  position: relative;
  margin-bottom: 3rem;
}

.north-a0a9 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.north-a0a9 .main_out_a9a5 {
  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;
}

.simple_1b30 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.simple_1b30 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.simple_1b30 ul {
  margin: 1rem 0;
}

.simple_1b30 li {
  margin-bottom: 0.75rem;
}

.pressed-d9a0 {
  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 === */
.mask-4c9b {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.mask-4c9b h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.container_4b80 {
  list-style: none;
  margin: 1.5rem 0;
}

.container_4b80 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.container_4b80 a {
  font-weight: 600;
}

.accordion-bed7 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.shadow-fixed-c185 {
  margin: 2.5rem 0;
}

.complex_6e61 {
  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;
}

.complex_6e61:hover {
  box-shadow: var(--shadow-lg);
}

.complex_6e61.easy_8837 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.info_dd75 {
  flex-shrink: 0;
}

.info_dd75 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);
}

.disabled-brown-e241 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.list-4798,
.popup-hot-adf2,
.rough_ecca {
  width: 100%;
  margin: 1.5rem 0;
}

.video_a62f {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.video_a62f strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.content-8f97 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.content-8f97 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.dirty_8818 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.dirty_8818 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.popup_62f3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.notification-stale-4602 {
  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;
}

.notification-stale-4602:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.notification-stale-4602.sort_dirty_05cf {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.notification-stale-4602 .rough-5c8b {
  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;
}

.notification-stale-4602 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.section-small-4991 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.header-96d3 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.header-96d3 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.status_25bf {
  display: block;
  font-family: 'Consolas', monospace;
  font-size: 0.75rem;
  color: var(--accent-color);
  word-break: break-all;
  padding: 0.75rem;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

/* === Buttons === */
.backdrop-d115 {
  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;
}

.column-0d2a {
  background-color: var(--primary-color);
  color: white;
}

.column-0d2a:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.west-75f1 {
  background-color: var(--text-secondary);
  color: white;
}

.west-75f1:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.aside-2e23 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.aside-2e23:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.west_9ba7 {
  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;
}

.west_9ba7:hover {
  background-color: var(--primary-dark);
}

.red-4801 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.item-7fa3 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.clean-c966 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pagination_next_9fe7 {
  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 === */
.hidden-74bb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.slow-b5cb {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.slow-b5cb h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.shadow-b2ac {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.gradient-static-cbb8 {
  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;
}

.cool-a1d6 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.gradient_east_2fce {
  list-style: none;
  counter-reset: rank-counter;
}

.gradient_east_2fce li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.gradient_east_2fce 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;
}

.simple-b6a1 {
  list-style: none;
}

.simple-b6a1 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.grid-6a20 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.cool_45e2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.cool_45e2 .media_17d4 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.cool_45e2 .background-first-06b6 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.table-6011 {
  margin-top: 3rem;
}

.pro_4b81 {
  width: 100%;
}

.wrapper_9398 {
  background-color: #fef3c7;
}

.picture-c1b4 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.block-44ba {
  margin: 3rem 0;
}

.module-df5c {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.gallery-stone-09bb {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.gallery-stone-09bb:hover {
  box-shadow: var(--shadow-lg);
}

.gallery-stone-09bb.slider_59fe {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.frame-0cd7 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.tag_pressed_27c7 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.tag_pressed_27c7 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.container-d740 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.gallery-stone-09bb blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.bright-6f2e {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.huge_058c {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.blue_9c1b {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.detail-cold-999e {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.short_df36 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.modal-copper-ee0b {
  margin-top: 1rem;
}

/* === FAQ Section === */
.shadow-de98 {
  max-width: 900px;
  margin: 0 auto;
}

.paragraph-lite-81bb {
  margin: 2rem 0;
}

.card_tiny_87fe {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.card_tiny_87fe summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.card_tiny_87fe summary::-webkit-details-marker {
  display: none;
}

.card_tiny_87fe summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.liquid-6a72 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.card_tiny_87fe[open] .liquid-6a72 {
  transform: rotate(45deg);
}

.column-gas-cb5e {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.column-gas-cb5e p:last-child {
  margin-bottom: 0;
}

.hover-d13b {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.north-50ee {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.row_93a9 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.row_93a9 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.row_93a9 .backdrop-d115 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.progress-next-7f87 {
  max-width: 900px;
  margin: 0 auto;
}

.light-56ca {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.preview_1e6d {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.preview_1e6d.fn-success-64b8 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.down-532b {
  font-size: 3rem;
  line-height: 1;
}

.advanced-f066 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.cool-7b30 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.box-3e7f,
.wood_4b49 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.box-3e7f h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.wood_4b49 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.notification_slow_6ded,
.shade_clean_212d {
  margin: 1.5rem 0;
}

.notification_slow_6ded li,
.shade_clean_212d li {
  margin-bottom: 1rem;
}

.stone_ece5 {
  margin: 3rem 0;
}

.medium-c502 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.medium-c502 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.medium-c502 ol {
  margin: 1rem 0;
}

.medium-c502 li {
  margin-bottom: 0.75rem;
}

.chip-34d2 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.message_9502 {
  margin: 2rem 0;
}

.link-fixed-360b {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.notice-mini-0509 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.text-hard-3ef4 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.middle-8a3c {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.texture_ffaa {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.badge-6f35 {
  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;
}

.badge-6f35 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.form-6a00 {
  flex: 1;
}

.form-6a00 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.bright_9f97 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.mask_be5a p {
  margin-bottom: 1rem;
}

.component_492c {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.tooltip-next-e0bd {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.column_white_728d {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.column_white_728d a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.pink_2fba h3 {
  margin-bottom: 1.5rem;
}

.sidebar-paper-d8cc {
  display: grid;
  gap: 2rem;
}

.search-08fe {
  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;
}

.search-08fe img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.search-08fe h4 {
  margin: 0 0 0.25rem;
}

.search-08fe p {
  margin: 0;
  font-size: 0.9375rem;
}

.badge-small-f62f {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.row_next_723e {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.row_next_723e h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.row_next_723e ul {
  margin: 1.5rem 0;
}

.row_next_723e li {
  margin-bottom: 0.75rem;
}

.video_2bcf {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.box_56d3 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.west-82f4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.middle-546d h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.middle-546d p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.over-b760 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.over-b760 a {
  color: rgba(255, 255, 255, 0.8);
}

.blue-e424 {
  list-style: none;
}

.blue-e424 li {
  margin-bottom: 0.75rem;
}

.blue-e424 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.blue-e424 a:hover {
  color: white;
}

.pattern-north-0fc5 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.white-aa9b {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.text_9608 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.form-f847 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.basic_da4e {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .image-0346 {
    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;
  }

  .tiny_47b3 {
    font-size: 1.5rem !important;
  }

  .orange-7b4d {
    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 */
  .table_c6ce,
  .new-f6c4,
  .simple_1b30,
  .disabled-brown-e241,
  .frame-0cd7,
  .gallery-stone-09bb,
  .column-gas-cb5e,
  .overlay_be3c,
  .paper_50b6,
  .mask-medium-a190 {
    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 */
  .item_in_6801 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .north_b7f7 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .paragraph_e9f5 {
    flex-shrink: 0;
  }

  .form-6a00 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .green_9967,
  .accent_advanced_95d8 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .accent_advanced_95d8 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .liquid-d407 {
    display: none;
  }

  /* Show mobile actions */
  .section_dafb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .container_paper_244d {
    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;
  }

  .container_paper_244d svg {
    flex-shrink: 0;
  }

  .container_paper_244d .footer_pink_f0a2 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .container_paper_244d .feature-blue-30cc {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .card-fc42 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .notice-8bb0 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .container_paper_244d:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .menu-c015 {
    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;
  }

  .menu-c015.fn-active-64b8 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .menu-c015 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .menu-c015 li:last-child {
    border-bottom: none;
  }

  .menu-c015 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .wide_b48f {
    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;
  }

  .wide_b48f li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .wide_b48f li:last-child {
    border-bottom: none;
  }

  .wide_b48f a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .under_7664 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .banner_d9d7 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .heading-slow-fd13,
  .selected-8465 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .heading-slow-fd13 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .selected-8465 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .wide_b48f.fn-active-64b8 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .overlay_huge_eaf0 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .hover_aec6 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .left_6882 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .grid_8211 {
    margin-top: 0;
  }

  /* Hero section */
  .grid_8211 {
    padding: 2rem 0 1.5rem;
  }

  .orange-7b4d {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .paper_50b6 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .input-focused-4bcb {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .label-faf2 {
    max-width: 100%;
    border-radius: 8px;
  }

  .column-paper-a134 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .alert-418c {
    padding: 1rem;
  }

  .surface-full-6cb7 {
    font-size: 1.5rem;
  }

  .banner-5f46 {
    font-size: 0.75rem;
  }

  .overlay_be3c {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .pagination-9929 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .pagination-9929 .backdrop-d115 {
    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 */
  .outline_bf4d {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .complex_6e61 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .info_dd75 {
    margin-bottom: 1rem;
  }

  /* Author */
  .purple_3f30 {
    flex-direction: column;
  }

  .badge-6f35 {
    flex-direction: column;
  }

  /* Quotes */
  .frame-0cd7 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .cool-7b30 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .middle-8a3c {
    flex-direction: column;
  }

  .middle-8a3c .backdrop-d115 {
    width: 100%;
  }

  /* Version comparison */
  .popup_62f3 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .hidden-74bb {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .west-82f4 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .text_9608 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .huge-51dd,
  .popup-hot-adf2,
  .notice-soft-f55c,
  .pro_4b81,
  .list-4798,
  .rough_ecca {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .huge-51dd table,
  .popup-hot-adf2 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .status_25bf {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .image-0346 {
    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;
  }

  .tiny_47b3 {
    font-size: 1.25rem !important;
  }

  .orange-7b4d {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .hover_aec6 {
    position: fixed;
  }

  .left_6882 {
    padding: 0.625rem 0;
  }

  .west-4baf img {
    height: 26px;
  }

  .wide_b48f {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .menu-c015 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .container_paper_244d {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .container_paper_244d svg {
    width: 18px;
    height: 18px;
  }

  .container_paper_244d .footer_pink_f0a2 {
    font-size: 0.7rem;
  }

  .container_paper_244d .feature-blue-30cc {
    font-size: 0.65rem;
  }

  .heading-slow-fd13,
  .selected-8465 {
    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, .image-0346, .popup_1a50, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .input-focused-4bcb {
    padding: 1rem;
  }

  .column-paper-a134 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .alert-418c {
    padding: 0.875rem;
  }

  .surface-full-6cb7 {
    font-size: 1.25rem;
  }

  .pagination-9929 .backdrop-d115 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .orange-7b4d {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .backdrop-d115 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .red-4801 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .complex_6e61 {
    padding: 1rem;
  }

  .info_dd75 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .table_c6ce,
  .thick-32d2,
  .gallery-a99f,
  .up_6617 {
    padding: 1rem;
  }
}

@media print {
  .hover_aec6,
  .green_70d7,
  .overlay_huge_eaf0,
  .backdrop-d115,
  .box_56d3 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .image-0346 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.background_red_e681 {
  margin-bottom: 3rem;
  text-align: center;
}

.tiny_47b3 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.dark-9865 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.popup-mini-8a63,
.simple_c849 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.picture_8deb {
  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;
}

.picture_8deb:hover {
  transform: translateY(-5px);
}

.picture_8deb strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.picture_8deb span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.video_iron_d554 {
  margin: 3rem 0;
}

.prev-ce42 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.image_bottom_dbec {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.image_bottom_dbec:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.status_e9d6 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.over-2851 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.south_92a3 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.image_e411 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.detail-0fc7 {
  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;
}

.detail-0fc7:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.detail-0fc7.gallery-b40c {
  border-left: 4px solid var(--primary-color);
}

.detail_dynamic_0586 {
  flex-shrink: 0;
}

.detail_dynamic_0586 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.grid-cool-70a4 {
  flex: 1;
}

.grid-cool-70a4 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.clean_5d92 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.notice-smooth-0b6f,
.sort_64d8,
.box-cd94 {
  margin-bottom: 1.5rem;
}

.notice-smooth-0b6f h4,
.sort_64d8 h4,
.box-cd94 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.notice-smooth-0b6f ul,
.sort_64d8 ul,
.box-cd94 ul {
  list-style: none;
  padding: 0;
}

.notice-smooth-0b6f li,
.sort_64d8 li,
.box-cd94 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.notice-smooth-0b6f li:before,
.sort_64d8 li:before,
.box-cd94 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.slider_plasma_a594 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.slider_plasma_a594 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;
}

.slider_plasma_a594 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.active_74da { margin: 2rem 0; }
.secondary_cold_9ec0 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.secondary_cold_9ec0 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.thumbnail-11fa p { margin-bottom: 1rem; line-height: 1.7; }
.thumbnail-11fa strong { color: var(--text-primary); }
.thumbnail-11fa ul { list-style: none; padding-left: 0; }
.thumbnail-11fa ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.thumbnail-11fa ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.slow_fc67 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.section-gas-a026 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.section-gas-a026:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.disabled-58fb { font-size: 3rem; margin-bottom: 1rem; }
.section-gas-a026 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.section-gas-a026 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.overlay-1e84 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.overlay-1e84 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.row-iron-0373 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.filter-cool-84a0 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.north-24c6 { text-align: center; }
.status_yellow_36d7 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.tabs-hot-cb72 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.popup_f23f { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.notice_huge_1243 { margin: 2rem 0; }
.top-76c7 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.top-76c7 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.top-76c7 p, .top-76c7 ul { line-height: 1.7; }
.top-76c7 ul { list-style: none; padding-left: 0; }
.top-76c7 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.top-76c7 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.pattern-dirty-cd2f { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.hero-focused-b389 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.texture_e07f { text-align: center; }
.dirty-3805 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.in_5bd4 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.last-c081 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.notification-f95e { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.hot-feb3 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.hot-feb3:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.hot-feb3 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.hot-feb3 p, .hot-feb3 ul { line-height: 1.7; }
.hot-feb3 ul { list-style: none; padding-left: 0; }
.hot-feb3 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.hot-feb3 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: d53c */
.ghost-box-x6 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.0;
}
