/* ============================================
   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 */
.border-f97a p,
.pattern_9202,
.modal_3d5a,
.silver_8c5c,
.yellow_7c95,
.image-prev-3023,
.block-8725,
.rough-162c {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.tag_black_101d {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.tag_black_101d > *,
.slider-71f5,
.border-f97a,
.layout_copper_a540 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .tag_black_101d {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .tag_black_101d {
    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 === */
.inner-f336 {
  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 */
.inner-f336.last-ad90 {
  box-shadow: var(--shadow-md);
}

.tertiary_8c2c {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.layout-plasma-8a23 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.summary-b0bf {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.first-659a {
  display: none;
}

/* Hide mobile actions on desktop */
.basic_fd5d {
  display: none;
}

.fixed-6d39 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.fixed-6d39 a:hover,
.fixed-6d39 a.fn-active-4f46 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.primary-bd64 {
  margin-left: 1rem;
}

.block-plasma-9e53 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.shade_dd54,
.mask-9154 {
  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;
}

.shade_dd54 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.shade_dd54: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;
}

.mask-9154 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.mask-9154: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;
}

.shade_dd54 svg,
.mask-9154 svg {
  flex-shrink: 0;
}

.dirty-5a9d {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.list_8f1a {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.list_8f1a::before,
.list_8f1a::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.list_8f1a::before {
  top: -7px;
}

.list_8f1a::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.stale_0e75 {
  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 === */
.button_prev_7fda {
  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);
}

.old-8fd3 {
  margin: 0 0 2rem;
  text-align: center;
}

.active_copper_9d80 {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.active_copper_9d80:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.breadcrumb_thick_ed36 {
  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);
}

.breadcrumb_thick_ed36 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.hard-1635 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.form-outer-825b {
  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;
}

.form-outer-825b:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.out_ba80 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.layout_e635 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.white_afad {
  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);
}

.white_afad .copper_3b52 {
  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;
}

.white_afad .copper_3b52 svg {
  flex-shrink: 0;
}

.white_afad .banner-f51a {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.white_afad .banner-f51a: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);
}

.white_afad .brown-233a {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.white_afad .brown-233a: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) {
  .button_prev_7fda {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .active_copper_9d80 {
    max-width: 100%;
  }

  .hard-1635 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .form-outer-825b {
    padding: 1rem;
  }

  .out_ba80 {
    font-size: 1.5rem;
  }

  .layout_e635 {
    font-size: 0.75rem;
  }

  .breadcrumb_thick_ed36 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .white_afad {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .white_afad .copper_3b52 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hard-1635 {
    grid-template-columns: 1fr;
  }
}

.white-5908 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hidden-57cf {
  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 === */
.disabled-last-26a8 {
  margin-bottom: 2.5rem;
}

.smooth-0dbb {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.white-5908 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.info-1898 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.description-over-dd1c {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.over_647d {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hard_3c6a {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.badge_a416 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.easy-360b {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.nav_e348 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.nav_e348 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.module_in_cf60 {
  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);
}

.logo-first-4f4b {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.cold_225d {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.modal-down-5f0a {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.bright_62fb {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.backdrop_c522 {
  display: grid;
  gap: 1rem;
}

.stone-08ea {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.column_391e {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.east-f0e2 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.stale-ca0b {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.selected-c78a {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.message_north_36ae {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.message_north_36ae p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.pattern_9202 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.gallery_f0a4 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.title_copper_3628 {
  display: grid;
  gap: 2rem;
}

.icon-a524 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.description-over-dd1c {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.info-1898 {
  flex: 1;
}

.hard_3c6a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.hard_3c6a a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.column-brown-272f {
  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;
}

.badge_a416 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.outer-0688 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.outer-0688 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.shadow-paper-c3bb {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.shadow-paper-c3bb a {
  font-size: 0.875rem;
  font-weight: 500;
}

.component_3f55 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.component_3f55 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.component_3f55 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.component_3f55 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.chip_stone_f61f {
  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 === */
.banner_6654 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.nav_2ea9 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.accordion-ad19 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.box-bc30 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.box-bc30 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.box-bc30 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.box-bc30 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;
}

.box-bc30 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.box-bc30 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.border-f97a {
  padding: 3rem 0 5rem;
}

.layout_copper_a540 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.layout_copper_a540.panel-gold-eac6 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.modal_3d5a {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.active_steel_4dfd {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.notice_center_5919 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.notice_center_5919 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.section-purple-7d15 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.table_motion_4fb3 {
  text-align: center;
}

.accent_25d8 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.heading_mini_9687 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.old_5900 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.image-prev-3023 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.silver_8c5c {
  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;
}

.silver_8c5c * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.silver_8c5c:hover {
  box-shadow: var(--shadow-lg);
}

.silver_8c5c.avatar-ecc7 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.silver_8c5c h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.silver_8c5c ul {
  margin: 1rem 0;
}

.silver_8c5c li {
  margin-bottom: 0.75rem;
}

.progress-1360 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.rough_61e6 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.rough_61e6 a {
  font-weight: 600;
}

/* === Data Tables === */
.thumbnail_pink_4129 {
  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;
}

.thumbnail_pink_4129 table {
  width: 100%;
  min-width: 600px;
}

.thumbnail_pink_4129 thead {
  background-color: var(--primary-color);
  color: white;
}

.thumbnail_pink_4129 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.thumbnail_pink_4129 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.thumbnail_pink_4129 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.thumbnail_pink_4129 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.button-pressed-722e {
  list-style: none;
  margin: 1.5rem 0;
}

.button-pressed-722e li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.button-pressed-722e li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.outer_15d5::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-4f46::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 === */
.summary-4a93 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.footer-853e {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-853e img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.footer-853e strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.footer-853e span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.summary-4a93 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.block-8725 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.block-8725::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.main_7eb5 {
  position: relative;
  margin-bottom: 3rem;
}

.title_yellow_4686 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.title_yellow_4686 .shade-north-da59 {
  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;
}

.title_9ff0 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.title_9ff0 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.title_9ff0 ul {
  margin: 1rem 0;
}

.title_9ff0 li {
  margin-bottom: 0.75rem;
}

.purple_5739 {
  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 === */
.border-short-ec19 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.border-short-ec19 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.clean-bf52 {
  list-style: none;
  margin: 1.5rem 0;
}

.clean-bf52 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.clean-bf52 a {
  font-weight: 600;
}

.module-fa20 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.rough-162c {
  margin: 2.5rem 0;
}

.description_active_2ae7 {
  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;
}

.description_active_2ae7:hover {
  box-shadow: var(--shadow-lg);
}

.description_active_2ae7.tooltip-3656 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.backdrop-warm-aeb5 {
  flex-shrink: 0;
}

.backdrop-warm-aeb5 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);
}

.picture_warm_aa80 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.breadcrumb-simple-0f9d,
.highlight_under_6431,
.widget-steel-cd4f {
  width: 100%;
  margin: 1.5rem 0;
}

.search-d78c {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.search-d78c strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.overlay-e453 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.overlay-e453 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.small-497e {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.small-497e strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.logo_first_4e59 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.orange_c813 {
  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;
}

.orange_c813:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.orange_c813.accent-4c29 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.orange_c813 .rough_0866 {
  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;
}

.orange_c813 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.tiny-b28e {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.thumbnail-solid-b554 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.thumbnail-solid-b554 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.header_2fc0 {
  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 === */
.copper_3b52 {
  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;
}

.banner-f51a {
  background-color: var(--primary-color);
  color: white;
}

.banner-f51a:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.brown-233a {
  background-color: var(--text-secondary);
  color: white;
}

.brown-233a:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.avatar_bronze_acee {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.avatar_bronze_acee:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.picture-gas-ad40 {
  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;
}

.picture-gas-ad40:hover {
  background-color: var(--primary-dark);
}

.image-basic-1d4f {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.active-48b1 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.section-4d36 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.tooltip_dynamic_7a07 {
  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 === */
.pagination_east_f2d2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.black-7fe1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.black-7fe1 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.dim_2fb0 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.narrow-8aae {
  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;
}

.first-af99 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.form-99b8 {
  list-style: none;
  counter-reset: rank-counter;
}

.form-99b8 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.form-99b8 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;
}

.notice-stale-9edc {
  list-style: none;
}

.notice-stale-9edc li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.iron-5eb3 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.border-south-f880 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.border-south-f880 .dark-023f {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.border-south-f880 .carousel_over_477c {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.upper_c569 {
  margin-top: 3rem;
}

.under-b221 {
  width: 100%;
}

.white-f086 {
  background-color: #fef3c7;
}

.tiny_91e0 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.tiny_cb8b {
  margin: 3rem 0;
}

.paper-1af1 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.gradient_outer_0ee0 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.gradient_outer_0ee0:hover {
  box-shadow: var(--shadow-lg);
}

.gradient_outer_0ee0.tag-bbb3 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.secondary-mini-87db {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.status-copper-c724 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.status-copper-c724 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.info-6abc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.gradient_outer_0ee0 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.aside_bright_b7a5 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.form_3dc1 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.wide_c926 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.accordion_5231 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.content-50ea {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.image-bcd4 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.badge_down_ae80 {
  max-width: 900px;
  margin: 0 auto;
}

.summary_lower_45f0 {
  margin: 2rem 0;
}

.title-easy-0ad8 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.title-easy-0ad8 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.title-easy-0ad8 summary::-webkit-details-marker {
  display: none;
}

.title-easy-0ad8 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.tag-5978 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.title-easy-0ad8[open] .tag-5978 {
  transform: rotate(45deg);
}

.current_10e4 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.current_10e4 p:last-child {
  margin-bottom: 0;
}

.gallery_3b2a {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.menu-a44f {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.bronze-9de2 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.bronze-9de2 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.bronze-9de2 .copper_3b52 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.left_56c6 {
  max-width: 900px;
  margin: 0 auto;
}

.container-2bf3 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.sort_e280 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.sort_e280.fn-success-4f46 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.form_motion_046f {
  font-size: 3rem;
  line-height: 1;
}

.large_5ce1 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.active-yellow-52d4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.frame-last-6893,
.north-651d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.frame-last-6893 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.north-651d h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.secondary-194a,
.component-9cdd {
  margin: 1.5rem 0;
}

.secondary-194a li,
.component-9cdd li {
  margin-bottom: 1rem;
}

.complex-d814 {
  margin: 3rem 0;
}

.pro-4145 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.pro-4145 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.pro-4145 ol {
  margin: 1rem 0;
}

.pro-4145 li {
  margin-bottom: 0.75rem;
}

.huge_d2b8 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.fast-8b18 {
  margin: 2rem 0;
}

.aside_813e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.mini_fe47 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.highlight-8dd7 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.tooltip-hard-0858 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.soft_da86 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.element_a410 {
  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;
}

.element_a410 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.over_647d {
  flex: 1;
}

.over_647d h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.sidebar_in_60df {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hovered_12f0 p {
  margin-bottom: 1rem;
}

.basic-8257 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.message_black_c425 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.brown_79da {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.brown_79da a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.focused_1135 h3 {
  margin-bottom: 1.5rem;
}

.right_d1fb {
  display: grid;
  gap: 2rem;
}

.easy-d418 {
  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;
}

.easy-d418 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.easy-d418 h4 {
  margin: 0 0 0.25rem;
}

.easy-d418 p {
  margin: 0;
  font-size: 0.9375rem;
}

.focus_right_cebf {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.card-inner-b0a3 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.card-inner-b0a3 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.card-inner-b0a3 ul {
  margin: 1.5rem 0;
}

.card-inner-b0a3 li {
  margin-bottom: 0.75rem;
}

.component-06eb {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.overlay-up-7827 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.nav_404a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.silver_4a9d h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.silver_4a9d p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.frame_9bee {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.frame_9bee a {
  color: rgba(255, 255, 255, 0.8);
}

.container_hovered_605f {
  list-style: none;
}

.container_hovered_605f li {
  margin-bottom: 0.75rem;
}

.container_hovered_605f a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.container_hovered_605f a:hover {
  color: white;
}

.photo_5c90 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.in_2f52 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.under-aa9c {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.bottom-b122 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.plasma_c607 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .tag_black_101d {
    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;
  }

  .button_52b8 {
    font-size: 1.5rem !important;
  }

  .smooth-0dbb {
    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 */
  .silver_8c5c,
  .yellow_7c95,
  .title_9ff0,
  .picture_warm_aa80,
  .secondary-mini-87db,
  .gradient_outer_0ee0,
  .current_10e4,
  .breadcrumb_thick_ed36,
  .pattern_9202,
  .modal_3d5a {
    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 */
  .white-5908 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .info-1898 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .description-over-dd1c {
    flex-shrink: 0;
  }

  .over_647d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .hard_3c6a,
  .badge_a416 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .badge_a416 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .summary-b0bf {
    display: none;
  }

  /* Show mobile actions */
  .basic_fd5d {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .pro_a58f {
    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_a58f svg {
    flex-shrink: 0;
  }

  .pro_a58f .wrapper-fresh-06e9 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .pro_a58f .sidebar_7cdc {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .form-dark-663e {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .progress-ed0f {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .pro_a58f:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .first-659a {
    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;
  }

  .first-659a.fn-active-4f46 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .first-659a li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .first-659a li:last-child {
    border-bottom: none;
  }

  .first-659a a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .fixed-6d39 {
    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;
  }

  .fixed-6d39 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .fixed-6d39 li:last-child {
    border-bottom: none;
  }

  .fixed-6d39 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .primary-bd64 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .block-plasma-9e53 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .shade_dd54,
  .mask-9154 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .shade_dd54 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .mask-9154 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .fixed-6d39.fn-active-4f46 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .dirty-5a9d {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .inner-f336 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .tertiary_8c2c {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .stale_0e75 {
    margin-top: 0;
  }

  /* Hero section */
  .stale_0e75 {
    padding: 2rem 0 1.5rem;
  }

  .smooth-0dbb {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .pattern_9202 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .button_prev_7fda {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .active_copper_9d80 {
    max-width: 100%;
    border-radius: 8px;
  }

  .hard-1635 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .form-outer-825b {
    padding: 1rem;
  }

  .out_ba80 {
    font-size: 1.5rem;
  }

  .layout_e635 {
    font-size: 0.75rem;
  }

  .breadcrumb_thick_ed36 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .white_afad {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .white_afad .copper_3b52 {
    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 */
  .accordion-ad19 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .description_active_2ae7 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .backdrop-warm-aeb5 {
    margin-bottom: 1rem;
  }

  /* Author */
  .icon-a524 {
    flex-direction: column;
  }

  .element_a410 {
    flex-direction: column;
  }

  /* Quotes */
  .secondary-mini-87db {
    flex-direction: column;
  }

  /* Pros/Cons */
  .active-yellow-52d4 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .tooltip-hard-0858 {
    flex-direction: column;
  }

  .tooltip-hard-0858 .copper_3b52 {
    width: 100%;
  }

  /* Version comparison */
  .logo_first_4e59 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .pagination_east_f2d2 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .nav_404a {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .under-aa9c {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .thumbnail_pink_4129,
  .highlight_under_6431,
  .avatar_liquid_724a,
  .under-b221,
  .breadcrumb-simple-0f9d,
  .widget-steel-cd4f {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .thumbnail_pink_4129 table,
  .highlight_under_6431 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .header_2fc0 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .tag_black_101d {
    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;
  }

  .button_52b8 {
    font-size: 1.25rem !important;
  }

  .smooth-0dbb {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .inner-f336 {
    position: fixed;
  }

  .tertiary_8c2c {
    padding: 0.625rem 0;
  }

  .layout-plasma-8a23 img {
    height: 26px;
  }

  .fixed-6d39 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .first-659a {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .pro_a58f {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .pro_a58f svg {
    width: 18px;
    height: 18px;
  }

  .pro_a58f .wrapper-fresh-06e9 {
    font-size: 0.7rem;
  }

  .pro_a58f .sidebar_7cdc {
    font-size: 0.65rem;
  }

  .shade_dd54,
  .mask-9154 {
    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, .tag_black_101d, .slider-71f5, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .button_prev_7fda {
    padding: 1rem;
  }

  .hard-1635 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .form-outer-825b {
    padding: 0.875rem;
  }

  .out_ba80 {
    font-size: 1.25rem;
  }

  .white_afad .copper_3b52 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .smooth-0dbb {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .copper_3b52 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .image-basic-1d4f {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .description_active_2ae7 {
    padding: 1rem;
  }

  .backdrop-warm-aeb5 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .silver_8c5c,
  .message_e4e1,
  .image_large_5d09,
  .image-new-3df7 {
    padding: 1rem;
  }
}

@media print {
  .inner-f336,
  .banner_6654,
  .dirty-5a9d,
  .copper_3b52,
  .overlay-up-7827 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .tag_black_101d {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.accordion-f595 {
  margin-bottom: 3rem;
  text-align: center;
}

.button_52b8 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.detail_9e84 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.tag_2d2f,
.fluid_3f76 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.widget-outer-5338 {
  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;
}

.widget-outer-5338:hover {
  transform: translateY(-5px);
}

.widget-outer-5338 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.widget-outer-5338 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.modal_b0fe {
  margin: 3rem 0;
}

.notification-a5b9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.grid_1eb1 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.grid_1eb1:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.full_063b {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.tall_4369 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.cool_6c5c {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.active-inner-2e57 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.middle-5a6f {
  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;
}

.middle-5a6f:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.middle-5a6f.footer-blue-7c3d {
  border-left: 4px solid var(--primary-color);
}

.liquid-ab08 {
  flex-shrink: 0;
}

.liquid-ab08 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.soft-7f6d {
  flex: 1;
}

.soft-7f6d h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pagination_up_1a20 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.upper_ce2d,
.media-left-564a,
.accent_upper_ebc0 {
  margin-bottom: 1.5rem;
}

.upper_ce2d h4,
.media-left-564a h4,
.accent_upper_ebc0 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.upper_ce2d ul,
.media-left-564a ul,
.accent_upper_ebc0 ul {
  list-style: none;
  padding: 0;
}

.upper_ce2d li,
.media-left-564a li,
.accent_upper_ebc0 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.upper_ce2d li:before,
.media-left-564a li:before,
.accent_upper_ebc0 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.first-77a4 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.first-77a4 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;
}

.first-77a4 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.breadcrumb-3c51 { margin: 2rem 0; }
.medium_0038 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.medium_0038 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.dark_f5e3 p { margin-bottom: 1rem; line-height: 1.7; }
.dark_f5e3 strong { color: var(--text-primary); }
.dark_f5e3 ul { list-style: none; padding-left: 0; }
.dark_f5e3 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.dark_f5e3 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.row_a0db { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.avatar-center-aa71 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.avatar-center-aa71:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.article-a327 { font-size: 3rem; margin-bottom: 1rem; }
.avatar-center-aa71 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.avatar-center-aa71 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.bronze_e699 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.bronze_e699 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.fast-ad47 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.disabled-steel-13b7 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.hidden-narrow-eb19 { text-align: center; }
.silver_cf59 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.bright-8d10 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.pink_d32c { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.small_adc2 { margin: 2rem 0; }
.action_471e { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.action_471e h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.action_471e p, .action_471e ul { line-height: 1.7; }
.action_471e ul { list-style: none; padding-left: 0; }
.action_471e ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.action_471e ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.center_3be7 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.backdrop_tall_4db1 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.wrapper-5b96 { text-align: center; }
.background_east_9015 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.surface_3eba { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.label_054c { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.image_7680 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.yellow-9145 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.yellow-9145:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.yellow-9145 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.yellow-9145 p, .yellow-9145 ul { line-height: 1.7; }
.yellow-9145 ul { list-style: none; padding-left: 0; }
.yellow-9145 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.yellow-9145 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 0fc1 */
.ghost-box-g8 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.2;
}
