/* ============================================
   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 */
.chip-dirty-014d p,
.image-1140,
.large_9a6c,
.focused-f3ff,
.carousel_e312,
.tabs-6735,
.section_right_adfe,
.north_3308 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.up-f40a {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.up-f40a > *,
.photo-tiny-aa38,
.chip-dirty-014d,
.focus_6322 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .up-f40a {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .up-f40a {
    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 === */
.article-fluid-5aeb {
  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 */
.article-fluid-5aeb.carousel_31d2 {
  box-shadow: var(--shadow-md);
}

.hidden_3454 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.hidden-a7e0 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.description_fb4c {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.progress_fluid_2253 {
  display: none;
}

/* Hide mobile actions on desktop */
.lower-47ce {
  display: none;
}

.section-mini-9710 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.section-mini-9710 a:hover,
.section-mini-9710 a.fn-active-3c90 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.avatar_58a8 {
  margin-left: 1rem;
}

.main_3325 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.middle_11ec,
.search-complex-1100 {
  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;
}

.middle_11ec {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.middle_11ec: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;
}

.search-complex-1100 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.search-complex-1100: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;
}

.middle_11ec svg,
.search-complex-1100 svg {
  flex-shrink: 0;
}

.module-d888 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.pattern_north_0401 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.pattern_north_0401::before,
.pattern_north_0401::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.pattern_north_0401::before {
  top: -7px;
}

.pattern_north_0401::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.avatar-selected-48b3 {
  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 === */
.top-5fb4 {
  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);
}

.image-364a {
  margin: 0 0 2rem;
  text-align: center;
}

.article_tiny_9f69 {
  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;
}

.article_tiny_9f69:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.icon_medium_88ea {
  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);
}

.icon_medium_88ea strong {
  color: var(--primary-color);
  font-weight: 700;
}

.icon-lower-1dec {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.stone_a594 {
  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;
}

.stone_a594:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.module_4fb2 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.summary_current_528d {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.content_6cc7 {
  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);
}

.content_6cc7 .element-bronze-2899 {
  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;
}

.content_6cc7 .element-bronze-2899 svg {
  flex-shrink: 0;
}

.content_6cc7 .outer_e8d1 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.content_6cc7 .outer_e8d1: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);
}

.content_6cc7 .image-1525 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.content_6cc7 .image-1525: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) {
  .top-5fb4 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .article_tiny_9f69 {
    max-width: 100%;
  }

  .icon-lower-1dec {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stone_a594 {
    padding: 1rem;
  }

  .module_4fb2 {
    font-size: 1.5rem;
  }

  .summary_current_528d {
    font-size: 0.75rem;
  }

  .icon_medium_88ea {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .content_6cc7 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .content_6cc7 .element-bronze-2899 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .icon-lower-1dec {
    grid-template-columns: 1fr;
  }
}

.element_copper_2608 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tag_gold_9f32 {
  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 === */
.banner-db45 {
  margin-bottom: 2.5rem;
}

.outline_center_4f1d {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.element_copper_2608 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.sidebar_active_ef7e {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.content-27d6 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.stale-7219 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.out_b9c4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.shade-6091 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.form-35a8 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.simple_ec78 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.simple_ec78 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.fresh_7f9f {
  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);
}

.paragraph-cd25 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.prev-6edc {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.basic-4c30 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.title-49bb {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.card-e0cc {
  display: grid;
  gap: 1rem;
}

.advanced_de65 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.filter_right_5657 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.header_tall_bb2f {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.summary_bronze_2c35 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.notification_ab61 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.gold-7ef6 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.gold-7ef6 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.image-1140 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.alert_fluid_da97 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.plasma_9a94 {
  display: grid;
  gap: 2rem;
}

.gallery_bf9b {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.content-27d6 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.sidebar_active_ef7e {
  flex: 1;
}

.out_b9c4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.out_b9c4 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.component_huge_5244 {
  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;
}

.shade-6091 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.list_red_d1ed {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.list_red_d1ed span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.message-540c {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.message-540c a {
  font-size: 0.875rem;
  font-weight: 500;
}

.pro_50de {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.pro_50de strong {
  display: block;
  margin-bottom: 0.75rem;
}

.pro_50de ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pro_50de li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.column-pressed-9a02 {
  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 === */
.surface-c463 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.picture-4959 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.active-baed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.main_466f h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.main_466f ol {
  list-style: none;
  counter-reset: toc-counter;
}

.main_466f ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.main_466f 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;
}

.main_466f ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.main_466f ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.chip-dirty-014d {
  padding: 3rem 0 5rem;
}

.focus_6322 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.focus_6322.badge-upper-7c0c {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.large_9a6c {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.easy-1f96 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.pattern_bronze_ae76 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.pattern_bronze_ae76 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.badge-e1b4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.dim-d825 {
  text-align: center;
}

.pagination_short_8b4f {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.module-cool-a280 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.static-0edc {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.tabs-6735 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.focused-f3ff {
  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;
}

.focused-f3ff * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.focused-f3ff:hover {
  box-shadow: var(--shadow-lg);
}

.focused-f3ff.container-wood-2f37 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.focused-f3ff h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.focused-f3ff ul {
  margin: 1rem 0;
}

.focused-f3ff li {
  margin-bottom: 0.75rem;
}

.secondary_72dd {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.layout-slow-ed27 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.layout-slow-ed27 a {
  font-weight: 600;
}

/* === Data Tables === */
.current-f6a2 {
  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;
}

.current-f6a2 table {
  width: 100%;
  min-width: 600px;
}

.current-f6a2 thead {
  background-color: var(--primary-color);
  color: white;
}

.current-f6a2 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.current-f6a2 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.current-f6a2 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.current-f6a2 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.preview-25ed {
  list-style: none;
  margin: 1.5rem 0;
}

.preview-25ed li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.preview-25ed li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.caption-stale-3e71::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-3c90::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 === */
.bronze-abac {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.paragraph-huge-314d {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.paragraph-huge-314d img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.paragraph-huge-314d strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.paragraph-huge-314d span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.bronze-abac blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.section_right_adfe {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.section_right_adfe::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.summary-e43a {
  position: relative;
  margin-bottom: 3rem;
}

.widget_ac92 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.widget_ac92 .hovered_da47 {
  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;
}

.button_stale_92fa {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.button_stale_92fa h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.button_stale_92fa ul {
  margin: 1rem 0;
}

.button_stale_92fa li {
  margin-bottom: 0.75rem;
}

.south-93b3 {
  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 === */
.shade-fb64 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.shade-fb64 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.alert-2d59 {
  list-style: none;
  margin: 1.5rem 0;
}

.alert-2d59 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.alert-2d59 a {
  font-weight: 600;
}

.center-5d84 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.north_3308 {
  margin: 2.5rem 0;
}

.secondary_bafd {
  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;
}

.secondary_bafd:hover {
  box-shadow: var(--shadow-lg);
}

.secondary_bafd.aside_9ef3 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.box-solid-a97a {
  flex-shrink: 0;
}

.box-solid-a97a 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);
}

.blue-7525 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.notification_fluid_0dc7,
.in-2bd8,
.article-1ea9 {
  width: 100%;
  margin: 1.5rem 0;
}

.gold-d49d {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.gold-d49d strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.grid-2854 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.grid-2854 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.middle_3f02 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.middle_3f02 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.content-glass-734f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.lower-7737 {
  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;
}

.lower-7737:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.lower-7737.element_short_06bb {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.lower-7737 .block_881e {
  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;
}

.lower-7737 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.complex_faa2 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.small-dd2a {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.small-dd2a label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.carousel-efc2 {
  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 === */
.element-bronze-2899 {
  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;
}

.outer_e8d1 {
  background-color: var(--primary-color);
  color: white;
}

.outer_e8d1:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.image-1525 {
  background-color: var(--text-secondary);
  color: white;
}

.image-1525:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.copper_31d4 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.copper_31d4:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.hidden_7236 {
  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;
}

.hidden_7236:hover {
  background-color: var(--primary-dark);
}

.shade-a36c {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.rough-b916 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.paragraph_2634 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-red-e354 {
  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 === */
.under-cd59 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.middle_67de {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.middle_67de h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.label-pressed-8985 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.video-38f9 {
  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;
}

.card-078e {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.upper_c690 {
  list-style: none;
  counter-reset: rank-counter;
}

.upper_c690 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.upper_c690 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;
}

.sort-tiny-892c {
  list-style: none;
}

.sort-tiny-892c li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.input_black_88a4 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.dropdown_bottom_0eb2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.dropdown_bottom_0eb2 .accordion_d331 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.dropdown_bottom_0eb2 .thick-e164 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.dim_364d {
  margin-top: 3rem;
}

.static_8532 {
  width: 100%;
}

.north_ce43 {
  background-color: #fef3c7;
}

.image_solid_ca51 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.upper_41e2 {
  margin: 3rem 0;
}

.detail_pro_a653 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.layout_4614 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.layout_4614:hover {
  box-shadow: var(--shadow-lg);
}

.layout_4614.pagination_3363 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.iron_1288 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.cold_4a61 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.cold_4a61 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.selected-8ab4 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.layout_4614 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.info-bottom-921c {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.logo-bc31 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.hard_5be4 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.tabs_3013 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.first_208d {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.tooltip-tall-35b3 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.widget_first_4cbf {
  max-width: 900px;
  margin: 0 auto;
}

.background-7eac {
  margin: 2rem 0;
}

.item-clean-2635 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.item-clean-2635 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.item-clean-2635 summary::-webkit-details-marker {
  display: none;
}

.item-clean-2635 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.module-42d3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.item-clean-2635[open] .module-42d3 {
  transform: rotate(45deg);
}

.panel_16f6 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.panel_16f6 p:last-child {
  margin-bottom: 0;
}

.article_east_22ae {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.summary-right-3ac6 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.south_0be8 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.south_0be8 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.south_0be8 .element-bronze-2899 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.avatar_5be0 {
  max-width: 900px;
  margin: 0 auto;
}

.pro-9f8d {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.input-first-cc86 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.input-first-cc86.fn-success-3c90 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.dark-783f {
  font-size: 3rem;
  line-height: 1;
}

.wood-51ff h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.row-9769 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.simple_462e,
.full_5107 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.simple_462e h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.full_5107 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.top-9d80,
.breadcrumb_e176 {
  margin: 1.5rem 0;
}

.top-9d80 li,
.breadcrumb_e176 li {
  margin-bottom: 1rem;
}

.card-6bf0 {
  margin: 3rem 0;
}

.media-under-168a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.media-under-168a h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.media-under-168a ol {
  margin: 1rem 0;
}

.media-under-168a li {
  margin-bottom: 0.75rem;
}

.up-ae5f {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.complex_efcf {
  margin: 2rem 0;
}

.notification_gold_59ed {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.component_bb9b {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.fresh-06fd {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.input-fa58 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.advanced-1eea {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.chip-7d9b {
  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;
}

.chip-7d9b img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.stale-7219 {
  flex: 1;
}

.stale-7219 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.hero-3855 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.heading_9059 p {
  margin-bottom: 1rem;
}

.menu-stone-6958 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.frame_1627 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.dropdown_dd43 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.dropdown_dd43 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.surface-red-0d36 h3 {
  margin-bottom: 1.5rem;
}

.feature-dirty-bee2 {
  display: grid;
  gap: 2rem;
}

.prev_0188 {
  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;
}

.prev_0188 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.prev_0188 h4 {
  margin: 0 0 0.25rem;
}

.prev_0188 p {
  margin: 0;
  font-size: 0.9375rem;
}

.mini_e2a9 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.button_black_6562 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.button_black_6562 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.button_black_6562 ul {
  margin: 1.5rem 0;
}

.button_black_6562 li {
  margin-bottom: 0.75rem;
}

.wrapper-large-0a7b {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.glass-81be {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.thick-a484 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.left-4b9a h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.left-4b9a p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.summary_pro_c01a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.summary_pro_c01a a {
  color: rgba(255, 255, 255, 0.8);
}

.middle-e0bb {
  list-style: none;
}

.middle-e0bb li {
  margin-bottom: 0.75rem;
}

.middle-e0bb a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.middle-e0bb a:hover {
  color: white;
}

.section-ed1c {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.table-red-0df5 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.description_e824 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.overlay_south_1d1e {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.next_19d2 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .up-f40a {
    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;
  }

  .icon-473a {
    font-size: 1.5rem !important;
  }

  .outline_center_4f1d {
    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 */
  .focused-f3ff,
  .carousel_e312,
  .button_stale_92fa,
  .blue-7525,
  .iron_1288,
  .layout_4614,
  .panel_16f6,
  .icon_medium_88ea,
  .image-1140,
  .large_9a6c {
    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 */
  .element_copper_2608 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .sidebar_active_ef7e {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .content-27d6 {
    flex-shrink: 0;
  }

  .stale-7219 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .out_b9c4,
  .shade-6091 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .shade-6091 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .description_fb4c {
    display: none;
  }

  /* Show mobile actions */
  .lower-47ce {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .pro-44da {
    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;
  }

  .pro-44da svg {
    flex-shrink: 0;
  }

  .pro-44da .highlight_8034 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .pro-44da .down_0075 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .texture_dynamic_20d7 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .soft_74bc {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .pro-44da:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .progress_fluid_2253 {
    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;
  }

  .progress_fluid_2253.fn-active-3c90 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .progress_fluid_2253 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .progress_fluid_2253 li:last-child {
    border-bottom: none;
  }

  .progress_fluid_2253 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .section-mini-9710 {
    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;
  }

  .section-mini-9710 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .section-mini-9710 li:last-child {
    border-bottom: none;
  }

  .section-mini-9710 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .avatar_58a8 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .main_3325 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .middle_11ec,
  .search-complex-1100 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .middle_11ec {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .search-complex-1100 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .section-mini-9710.fn-active-3c90 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .module-d888 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .article-fluid-5aeb {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .hidden_3454 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .avatar-selected-48b3 {
    margin-top: 0;
  }

  /* Hero section */
  .avatar-selected-48b3 {
    padding: 2rem 0 1.5rem;
  }

  .outline_center_4f1d {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .image-1140 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .top-5fb4 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .article_tiny_9f69 {
    max-width: 100%;
    border-radius: 8px;
  }

  .icon-lower-1dec {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stone_a594 {
    padding: 1rem;
  }

  .module_4fb2 {
    font-size: 1.5rem;
  }

  .summary_current_528d {
    font-size: 0.75rem;
  }

  .icon_medium_88ea {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .content_6cc7 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .content_6cc7 .element-bronze-2899 {
    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 */
  .active-baed {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .secondary_bafd {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .box-solid-a97a {
    margin-bottom: 1rem;
  }

  /* Author */
  .gallery_bf9b {
    flex-direction: column;
  }

  .chip-7d9b {
    flex-direction: column;
  }

  /* Quotes */
  .iron_1288 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .row-9769 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .input-fa58 {
    flex-direction: column;
  }

  .input-fa58 .element-bronze-2899 {
    width: 100%;
  }

  /* Version comparison */
  .content-glass-734f {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .under-cd59 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .thick-a484 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .description_e824 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .current-f6a2,
  .in-2bd8,
  .texture-e4fb,
  .static_8532,
  .notification_fluid_0dc7,
  .article-1ea9 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .current-f6a2 table,
  .in-2bd8 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .carousel-efc2 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .up-f40a {
    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;
  }

  .icon-473a {
    font-size: 1.25rem !important;
  }

  .outline_center_4f1d {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .article-fluid-5aeb {
    position: fixed;
  }

  .hidden_3454 {
    padding: 0.625rem 0;
  }

  .hidden-a7e0 img {
    height: 26px;
  }

  .section-mini-9710 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .progress_fluid_2253 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .pro-44da {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .pro-44da svg {
    width: 18px;
    height: 18px;
  }

  .pro-44da .highlight_8034 {
    font-size: 0.7rem;
  }

  .pro-44da .down_0075 {
    font-size: 0.65rem;
  }

  .middle_11ec,
  .search-complex-1100 {
    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, .up-f40a, .photo-tiny-aa38, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .top-5fb4 {
    padding: 1rem;
  }

  .icon-lower-1dec {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .stone_a594 {
    padding: 0.875rem;
  }

  .module_4fb2 {
    font-size: 1.25rem;
  }

  .content_6cc7 .element-bronze-2899 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .outline_center_4f1d {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .element-bronze-2899 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .shade-a36c {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .secondary_bafd {
    padding: 1rem;
  }

  .box-solid-a97a span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .focused-f3ff,
  .liquid_0887,
  .preview-prev-90a4,
  .iron_1e10 {
    padding: 1rem;
  }
}

@media print {
  .article-fluid-5aeb,
  .surface-c463,
  .module-d888,
  .element-bronze-2899,
  .glass-81be {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .up-f40a {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.solid_7aec {
  margin-bottom: 3rem;
  text-align: center;
}

.icon-473a {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.link-b8f3 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.filter-2080,
.tertiary_copper_71bb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.tiny_adca {
  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;
}

.tiny_adca:hover {
  transform: translateY(-5px);
}

.tiny_adca strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.tiny_adca span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.grid_dim_4078 {
  margin: 3rem 0;
}

.detail-cool-3d4c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.text_prev_fe67 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.text_prev_fe67:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.active_e2ad {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.text-next-cf4b {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.input_1be6 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.nav_7738 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.solid_11b5 {
  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;
}

.solid_11b5:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.solid_11b5.panel-a383 {
  border-left: 4px solid var(--primary-color);
}

.highlight-262e {
  flex-shrink: 0;
}

.highlight-262e svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.lower_7f5a {
  flex: 1;
}

.lower_7f5a h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.item-3a71 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hard-13c6,
.blue_923e,
.shadow_basic_8f1f {
  margin-bottom: 1.5rem;
}

.hard-13c6 h4,
.blue_923e h4,
.shadow_basic_8f1f h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hard-13c6 ul,
.blue_923e ul,
.shadow_basic_8f1f ul {
  list-style: none;
  padding: 0;
}

.hard-13c6 li,
.blue_923e li,
.shadow_basic_8f1f li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.hard-13c6 li:before,
.blue_923e li:before,
.shadow_basic_8f1f li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.short_de90 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.short_de90 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;
}

.short_de90 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.sort_6f89 { margin: 2rem 0; }
.primary-cold-b53f { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.primary-cold-b53f h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.motion-3bb0 p { margin-bottom: 1rem; line-height: 1.7; }
.motion-3bb0 strong { color: var(--text-primary); }
.motion-3bb0 ul { list-style: none; padding-left: 0; }
.motion-3bb0 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.motion-3bb0 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.badge_hard_a98b { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.primary_dynamic_ba14 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.primary_dynamic_ba14:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.border-dark-e495 { font-size: 3rem; margin-bottom: 1rem; }
.primary_dynamic_ba14 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.primary_dynamic_ba14 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.carousel-yellow-ee80 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.carousel-yellow-ee80 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.solid_db66 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.first-7423 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.status-outer-13f6 { text-align: center; }
.tertiary_first_8be8 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.bright-ccb8 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.gallery-south-2390 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.paragraph_3b56 { margin: 2rem 0; }
.card-east-37b1 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.card-east-37b1 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.card-east-37b1 p, .card-east-37b1 ul { line-height: 1.7; }
.card-east-37b1 ul { list-style: none; padding-left: 0; }
.card-east-37b1 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.card-east-37b1 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.article_outer_29fb { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.top-2f29 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.glass-959f { text-align: center; }
.last-ab3f { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.mini_98bf { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.over_bc83 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.focus_large_fe5b { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.pattern_out_f17f { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.pattern_out_f17f:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.pattern_out_f17f h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.pattern_out_f17f p, .pattern_out_f17f ul { line-height: 1.7; }
.pattern_out_f17f ul { list-style: none; padding-left: 0; }
.pattern_out_f17f ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.pattern_out_f17f ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 8105 */
.widget-item-m2 {
  padding: 0.1rem;
  font-size: 14px;
  line-height: 1.0;
}
