/* ============================================
   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 */
.gold-cee6 p,
.action_083b,
.background-rough-3ed7,
.layout-new-e398,
.sidebar-b128,
.progress_e391,
.over-a015,
.gradient_ea20 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.bottom_5ad2 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.bottom_5ad2 > *,
.shade-center-5430,
.gold-cee6,
.form_b0ce {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .bottom_5ad2 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .bottom_5ad2 {
    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 === */
.block_gold_3e1f {
  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 */
.block_gold_3e1f.basic-3efc {
  box-shadow: var(--shadow-md);
}

.shadow-light-efcd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.nav-hard-4eba img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.texture-north-ccc9 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.cool_d6f1 {
  display: none;
}

/* Hide mobile actions on desktop */
.primary-a6c9 {
  display: none;
}

.card_ef67 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.card_ef67 a:hover,
.card_ef67 a.fn-active-86e7 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.article-86cd {
  margin-left: 1rem;
}

.hard_250c {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.outline-right-5597,
.filter_c7dd {
  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;
}

.outline-right-5597 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.outline-right-5597: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;
}

.filter_c7dd {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.filter_c7dd: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;
}

.outline-right-5597 svg,
.filter_c7dd svg {
  flex-shrink: 0;
}

.cold-d7c4 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.warm-63fc {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.warm-63fc::before,
.warm-63fc::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.warm-63fc::before {
  top: -7px;
}

.warm-63fc::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.light-b66b {
  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 === */
.content-214e {
  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);
}

.filter-2943 {
  margin: 0 0 2rem;
  text-align: center;
}

.layout_prev_1781 {
  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;
}

.layout_prev_1781:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.stone-28a6 {
  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);
}

.stone-28a6 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.notification-e2fa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.north_6619 {
  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;
}

.north_6619:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.row-glass-eb06 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.plasma_370a {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.large_fdf3 {
  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);
}

.large_fdf3 .last-e14c {
  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;
}

.large_fdf3 .last-e14c svg {
  flex-shrink: 0;
}

.large_fdf3 .component-over-17d2 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.large_fdf3 .component-over-17d2: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);
}

.large_fdf3 .article-out-4714 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.large_fdf3 .article-out-4714: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) {
  .content-214e {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .layout_prev_1781 {
    max-width: 100%;
  }

  .notification-e2fa {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .north_6619 {
    padding: 1rem;
  }

  .row-glass-eb06 {
    font-size: 1.5rem;
  }

  .plasma_370a {
    font-size: 0.75rem;
  }

  .stone-28a6 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .large_fdf3 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .large_fdf3 .last-e14c {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .notification-e2fa {
    grid-template-columns: 1fr;
  }
}

.container-107f {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.shade-9273 {
  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 === */
.right-cd4b {
  margin-bottom: 2.5rem;
}

.description-smooth-7d77 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.container-107f {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.tertiary-hovered-5637 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.backdrop-under-d4c5 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.secondary_dim_9570 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.grid-full-6c7b {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.progress_current_09b4 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.pagination-gold-ab7a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hidden_complex_ee4a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hidden_complex_ee4a svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.preview_advanced_6ce2 {
  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);
}

.fresh-5ed5 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.link-hovered-6fe4 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.carousel_cool_523b {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.filter_269e {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.breadcrumb-a8b2 {
  display: grid;
  gap: 1rem;
}

.table_f2de {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.out-8a18 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.shadow_5b6e {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.alert-dark-f047 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.hover_orange_09e4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.stone_cf8b {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.stone_cf8b p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.action_083b {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.accordion_d741 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.shadow_3a1c {
  display: grid;
  gap: 2rem;
}

.photo-cf04 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.backdrop-under-d4c5 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.tertiary-hovered-5637 {
  flex: 1;
}

.grid-full-6c7b {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.grid-full-6c7b a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-fixed-bec2 {
  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;
}

.progress_current_09b4 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.accent_66a8 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.accent_66a8 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.border-59ef {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.border-59ef a {
  font-size: 0.875rem;
  font-weight: 500;
}

.block_complex_3629 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.block_complex_3629 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.block_complex_3629 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.block_complex_3629 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.paragraph-d93c {
  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 === */
.badge_7f7b {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.thumbnail_3ba8 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.tall_6801 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.article_upper_9ead h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.article_upper_9ead ol {
  list-style: none;
  counter-reset: toc-counter;
}

.article_upper_9ead ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.article_upper_9ead 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;
}

.article_upper_9ead ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.article_upper_9ead ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.gold-cee6 {
  padding: 3rem 0 5rem;
}

.form_b0ce {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.form_b0ce.mini-0437 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.background-rough-3ed7 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.menu-east-c0c9 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.huge-263b {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.huge-263b h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.form_a3f4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.content-9277 {
  text-align: center;
}

.texture_de33 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.advanced_3365 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.active_5c11 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.progress_e391 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.layout-new-e398 {
  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;
}

.layout-new-e398 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.layout-new-e398:hover {
  box-shadow: var(--shadow-lg);
}

.layout-new-e398.widget_dark_ffa2 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.layout-new-e398 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.layout-new-e398 ul {
  margin: 1rem 0;
}

.layout-new-e398 li {
  margin-bottom: 0.75rem;
}

.dynamic_66eb {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.link-9732 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.link-9732 a {
  font-weight: 600;
}

/* === Data Tables === */
.shadow_stone_67f0 {
  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;
}

.shadow_stone_67f0 table {
  width: 100%;
  min-width: 600px;
}

.shadow_stone_67f0 thead {
  background-color: var(--primary-color);
  color: white;
}

.shadow_stone_67f0 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.shadow_stone_67f0 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.shadow_stone_67f0 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.shadow_stone_67f0 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.hard-a072 {
  list-style: none;
  margin: 1.5rem 0;
}

.hard-a072 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.hard-a072 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.gradient-thick-117c::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-86e7::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 === */
.east_1c50 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.shade-28d2 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.shade-28d2 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.shade-28d2 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.shade-28d2 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.east_1c50 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.over-a015 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.over-a015::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.backdrop-active-115c {
  position: relative;
  margin-bottom: 3rem;
}

.dropdown-gold-7cc4 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.dropdown-gold-7cc4 .pink_e979 {
  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;
}

.footer-d48c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.footer-d48c h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.footer-d48c ul {
  margin: 1rem 0;
}

.footer-d48c li {
  margin-bottom: 0.75rem;
}

.summary-2549 {
  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 === */
.up_d252 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.up_d252 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.secondary-warm-081c {
  list-style: none;
  margin: 1.5rem 0;
}

.secondary-warm-081c li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.secondary-warm-081c a {
  font-weight: 600;
}

.container_glass_a52e {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.gradient_ea20 {
  margin: 2.5rem 0;
}

.notice-1fff {
  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;
}

.notice-1fff:hover {
  box-shadow: var(--shadow-lg);
}

.notice-1fff.huge_4d90 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.hidden_blue_eeaa {
  flex-shrink: 0;
}

.hidden_blue_eeaa 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);
}

.logo_4e03 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.pagination-pink-094e,
.widget_d93f,
.wood_2b63 {
  width: 100%;
  margin: 1.5rem 0;
}

.fixed_928f {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.fixed_928f strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.info_36aa {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.info_36aa strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.copper_b67a {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.copper_b67a strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.notification-79a7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.notification_579f {
  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_579f:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.notification_579f.active-d422 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.notification_579f .accordion-in-aa70 {
  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_579f h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.paragraph-left-59e3 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.detail_e495 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.detail_e495 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.frame-thick-c2d6 {
  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 === */
.last-e14c {
  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;
}

.component-over-17d2 {
  background-color: var(--primary-color);
  color: white;
}

.component-over-17d2:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.article-out-4714 {
  background-color: var(--text-secondary);
  color: white;
}

.article-out-4714:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.right-d36a {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.right-d36a:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.search_05fc {
  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;
}

.search_05fc:hover {
  background-color: var(--primary-dark);
}

.fixed-1549 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.carousel_stone_1c56 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.logo_selected_3ba3 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.widget_blue_4ddf {
  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 === */
.label-9fc2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.input-advanced-b949 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.input-advanced-b949 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.paragraph-0259 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.iron_b25c {
  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;
}

.sidebar_7f5f {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.focus_3fa8 {
  list-style: none;
  counter-reset: rank-counter;
}

.focus_3fa8 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.focus_3fa8 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;
}

.top_9c89 {
  list-style: none;
}

.top_9c89 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.footer_7b91 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.menu_3db4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.menu_3db4 .button_87c2 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.menu_3db4 .under-f155 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.west-4285 {
  margin-top: 3rem;
}

.heading-narrow-b106 {
  width: 100%;
}

.up-d112 {
  background-color: #fef3c7;
}

.menu_1c20 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.preview_19fd {
  margin: 3rem 0;
}

.chip-green-7fc4 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.pink_f474 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.pink_f474:hover {
  box-shadow: var(--shadow-lg);
}

.pink_f474.menu_aa42 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.carousel_black_1f80 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.copper_ffde strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.copper_ffde span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.outline_cold_d567 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pink_f474 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.header-f165 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.layout_fresh_7546 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.cool-9a38 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.section-b993 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.frame-735c {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.thumbnail_01f6 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.new-02b9 {
  max-width: 900px;
  margin: 0 auto;
}

.plasma_dfe0 {
  margin: 2rem 0;
}

.accent_f023 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accent_f023 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.accent_f023 summary::-webkit-details-marker {
  display: none;
}

.accent_f023 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.breadcrumb-67a4 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.accent_f023[open] .breadcrumb-67a4 {
  transform: rotate(45deg);
}

.component_narrow_8802 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.component_narrow_8802 p:last-child {
  margin-bottom: 0;
}

.accent_fluid_58f2 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.component_pink_e224 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.summary_c6a7 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.summary_c6a7 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.summary_c6a7 .last-e14c {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.title_simple_dfb1 {
  max-width: 900px;
  margin: 0 auto;
}

.shadow-action-8110 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.accordion_mini_dda2 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.accordion_mini_dda2.fn-success-86e7 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.glass-9afe {
  font-size: 3rem;
  line-height: 1;
}

.carousel_e21b h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.main_be06 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.secondary_hard_5e9b,
.carousel_over_268a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.secondary_hard_5e9b h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.carousel_over_268a h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.main-0c4b,
.layout-f71b {
  margin: 1.5rem 0;
}

.main-0c4b li,
.layout-f71b li {
  margin-bottom: 1rem;
}

.cool_8661 {
  margin: 3rem 0;
}

.hover-old-583d {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.hover-old-583d h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.hover-old-583d ol {
  margin: 1rem 0;
}

.hover-old-583d li {
  margin-bottom: 0.75rem;
}

.short_1620 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.preview-paper-f461 {
  margin: 2rem 0;
}

.shadow_ccde {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.gallery-outer-8e72 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.breadcrumb-wide-c0d1 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.cold-ed74 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.in_ea32 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.label-d9f9 {
  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;
}

.label-d9f9 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.secondary_dim_9570 {
  flex: 1;
}

.secondary_dim_9570 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.nav-narrow-9fb4 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.shade-1d1c p {
  margin-bottom: 1rem;
}

.info-north-a761 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.header-093c {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.description-ac33 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.description-ac33 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.hot_4c35 h3 {
  margin-bottom: 1.5rem;
}

.brown-0a0d {
  display: grid;
  gap: 2rem;
}

.module_smooth_caec {
  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;
}

.module_smooth_caec img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.module_smooth_caec h4 {
  margin: 0 0 0.25rem;
}

.module_smooth_caec p {
  margin: 0;
  font-size: 0.9375rem;
}

.box-ffc9 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.simple_fac5 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.simple_fac5 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.simple_fac5 ul {
  margin: 1.5rem 0;
}

.simple_fac5 li {
  margin-bottom: 0.75rem;
}

.dropdown-over-7456 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.out_aa07 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.west_51eb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.avatar_down_1de9 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.avatar_down_1de9 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.input-liquid-ed42 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.input-liquid-ed42 a {
  color: rgba(255, 255, 255, 0.8);
}

.narrow-c0da {
  list-style: none;
}

.narrow-c0da li {
  margin-bottom: 0.75rem;
}

.narrow-c0da a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.narrow-c0da a:hover {
  color: white;
}

.pagination-hovered-9c01 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.static-9bc4 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.bottom_d9d6 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.section_1ad4 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.tabs-pressed-fc00 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .bottom_5ad2 {
    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;
  }

  .tertiary-complex-524d {
    font-size: 1.5rem !important;
  }

  .description-smooth-7d77 {
    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 */
  .layout-new-e398,
  .sidebar-b128,
  .footer-d48c,
  .logo_4e03,
  .carousel_black_1f80,
  .pink_f474,
  .component_narrow_8802,
  .stone-28a6,
  .action_083b,
  .background-rough-3ed7 {
    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 */
  .container-107f {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .tertiary-hovered-5637 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .backdrop-under-d4c5 {
    flex-shrink: 0;
  }

  .secondary_dim_9570 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .grid-full-6c7b,
  .progress_current_09b4 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .progress_current_09b4 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .texture-north-ccc9 {
    display: none;
  }

  /* Show mobile actions */
  .primary-a6c9 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .hidden_stale_dd09 {
    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;
  }

  .hidden_stale_dd09 svg {
    flex-shrink: 0;
  }

  .hidden_stale_dd09 .popup_e1a2 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .hidden_stale_dd09 .frame_b0da {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .tabs-3413 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .cold_c8d6 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .hidden_stale_dd09:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .cool_d6f1 {
    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;
  }

  .cool_d6f1.fn-active-86e7 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .cool_d6f1 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .cool_d6f1 li:last-child {
    border-bottom: none;
  }

  .cool_d6f1 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .card_ef67 {
    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;
  }

  .card_ef67 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .card_ef67 li:last-child {
    border-bottom: none;
  }

  .card_ef67 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .article-86cd {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .hard_250c {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .outline-right-5597,
  .filter_c7dd {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .outline-right-5597 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .filter_c7dd {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .card_ef67.fn-active-86e7 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .cold-d7c4 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .block_gold_3e1f {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .shadow-light-efcd {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .light-b66b {
    margin-top: 0;
  }

  /* Hero section */
  .light-b66b {
    padding: 2rem 0 1.5rem;
  }

  .description-smooth-7d77 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .action_083b {
    font-size: 1rem;
  }

  /* Hero brand image */
  .content-214e {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .layout_prev_1781 {
    max-width: 100%;
    border-radius: 8px;
  }

  .notification-e2fa {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .north_6619 {
    padding: 1rem;
  }

  .row-glass-eb06 {
    font-size: 1.5rem;
  }

  .plasma_370a {
    font-size: 0.75rem;
  }

  .stone-28a6 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .large_fdf3 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .large_fdf3 .last-e14c {
    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 */
  .tall_6801 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .notice-1fff {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .hidden_blue_eeaa {
    margin-bottom: 1rem;
  }

  /* Author */
  .photo-cf04 {
    flex-direction: column;
  }

  .label-d9f9 {
    flex-direction: column;
  }

  /* Quotes */
  .carousel_black_1f80 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .main_be06 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cold-ed74 {
    flex-direction: column;
  }

  .cold-ed74 .last-e14c {
    width: 100%;
  }

  /* Version comparison */
  .notification-79a7 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .label-9fc2 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .west_51eb {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .bottom_d9d6 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .shadow_stone_67f0,
  .widget_d93f,
  .gallery_huge_a37c,
  .heading-narrow-b106,
  .pagination-pink-094e,
  .wood_2b63 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .shadow_stone_67f0 table,
  .widget_d93f table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .frame-thick-c2d6 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .bottom_5ad2 {
    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;
  }

  .tertiary-complex-524d {
    font-size: 1.25rem !important;
  }

  .description-smooth-7d77 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .block_gold_3e1f {
    position: fixed;
  }

  .shadow-light-efcd {
    padding: 0.625rem 0;
  }

  .nav-hard-4eba img {
    height: 26px;
  }

  .card_ef67 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .cool_d6f1 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .hidden_stale_dd09 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .hidden_stale_dd09 svg {
    width: 18px;
    height: 18px;
  }

  .hidden_stale_dd09 .popup_e1a2 {
    font-size: 0.7rem;
  }

  .hidden_stale_dd09 .frame_b0da {
    font-size: 0.65rem;
  }

  .outline-right-5597,
  .filter_c7dd {
    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, .bottom_5ad2, .shade-center-5430, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .content-214e {
    padding: 1rem;
  }

  .notification-e2fa {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .north_6619 {
    padding: 0.875rem;
  }

  .row-glass-eb06 {
    font-size: 1.25rem;
  }

  .large_fdf3 .last-e14c {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .description-smooth-7d77 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .last-e14c {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .fixed-1549 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .notice-1fff {
    padding: 1rem;
  }

  .hidden_blue_eeaa span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .layout-new-e398,
  .title_5909,
  .picture-orange-496b,
  .title-8b7d {
    padding: 1rem;
  }
}

@media print {
  .block_gold_3e1f,
  .badge_7f7b,
  .cold-d7c4,
  .last-e14c,
  .out_aa07 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .bottom_5ad2 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.container-lower-076b {
  margin-bottom: 3rem;
  text-align: center;
}

.tertiary-complex-524d {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.slider_bf87 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.small-6e32,
.header-light-9d32 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.module_78f8 {
  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;
}

.module_78f8:hover {
  transform: translateY(-5px);
}

.module_78f8 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.module_78f8 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.layout_focused_4a7b {
  margin: 3rem 0;
}

.over-e3a2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.popup-c6ff {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.popup-c6ff:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.preview-complex-f1b4 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.disabled-123f {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.table-93ee {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.easy-9653 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.brown_4cdd {
  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;
}

.brown_4cdd:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.brown_4cdd.dim-0e48 {
  border-left: 4px solid var(--primary-color);
}

.table_glass_4f53 {
  flex-shrink: 0;
}

.table_glass_4f53 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.aside-steel-ee1d {
  flex: 1;
}

.aside-steel-ee1d h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.item-cold-0cbf {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.paragraph-7ddd,
.prev-5cdd,
.center_1e91 {
  margin-bottom: 1.5rem;
}

.paragraph-7ddd h4,
.prev-5cdd h4,
.center_1e91 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.paragraph-7ddd ul,
.prev-5cdd ul,
.center_1e91 ul {
  list-style: none;
  padding: 0;
}

.paragraph-7ddd li,
.prev-5cdd li,
.center_1e91 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.paragraph-7ddd li:before,
.prev-5cdd li:before,
.center_1e91 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.button_advanced_2d39 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.button_advanced_2d39 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;
}

.button_advanced_2d39 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.pattern-a579 { margin: 2rem 0; }
.easy_fcb7 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.easy_fcb7 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.outline_complex_b564 p { margin-bottom: 1rem; line-height: 1.7; }
.outline_complex_b564 strong { color: var(--text-primary); }
.outline_complex_b564 ul { list-style: none; padding-left: 0; }
.outline_complex_b564 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.outline_complex_b564 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.over-897a { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.green-31d7 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.green-31d7:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.badge-0ecb { font-size: 3rem; margin-bottom: 1rem; }
.green-31d7 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.green-31d7 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.component-5e78 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.component-5e78 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.row_brown_67be { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.mini_69fd { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.sort-81b3 { text-align: center; }
.layout_5477 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.status_c625 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.filter-9337 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.simple_a8f1 { margin: 2rem 0; }
.purple-e2da { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.purple-e2da h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.purple-e2da p, .purple-e2da ul { line-height: 1.7; }
.purple-e2da ul { list-style: none; padding-left: 0; }
.purple-e2da ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.purple-e2da ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.layout_72ac { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.image_1ac9 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.pink_aef4 { text-align: center; }
.glass-df1b { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.new_4a1b { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.header-advanced-62a1 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.narrow-08c5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.texture-full-6695 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.texture-full-6695:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.texture-full-6695 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.texture-full-6695 p, .texture-full-6695 ul { line-height: 1.7; }
.texture-full-6695 ul { list-style: none; padding-left: 0; }
.texture-full-6695 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.texture-full-6695 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 0720 */
.widget-item-i2 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.2;
}
