/* ============================================
   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 */
.outer-ee95 p,
.bright_1cd3,
.search-f2a8,
.input-bottom-446b,
.prev-227d,
.iron-4baf,
.container_d6b2,
.alert-f39c {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.text_6218 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.text_6218 > *,
.tertiary-d50e,
.outer-ee95,
.texture_ad2e {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .text_6218 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .text_6218 {
    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 === */
.last_edce {
  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 */
.last_edce.container-97b8 {
  box-shadow: var(--shadow-md);
}

.in_18ad {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.paragraph-e716 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.section-0aeb {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.link_in_3f2b {
  display: none;
}

/* Hide mobile actions on desktop */
.right-073a {
  display: none;
}

.bright_1002 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.bright_1002 a:hover,
.bright_1002 a.fn-active-f3b4 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.rough-6305 {
  margin-left: 1rem;
}

.liquid_a3b1 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.short_cc8c,
.tertiary-8253 {
  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;
}

.short_cc8c {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.short_cc8c: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;
}

.tertiary-8253 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.tertiary-8253: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;
}

.short_cc8c svg,
.tertiary-8253 svg {
  flex-shrink: 0;
}

.avatar_bronze_1283 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.gallery_current_1fad {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.gallery_current_1fad::before,
.gallery_current_1fad::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.gallery_current_1fad::before {
  top: -7px;
}

.gallery_current_1fad::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.menu-down-e42d {
  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 === */
.pagination-stale-2641 {
  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);
}

.sort-9850 {
  margin: 0 0 2rem;
  text-align: center;
}

.text-2c91 {
  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;
}

.text-2c91:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.hover-cool-acb8 {
  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);
}

.hover-cool-acb8 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.highlight-897e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.slow_3465 {
  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;
}

.slow_3465:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.old_4144 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.brown_b3aa {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.overlay_left_a6bf {
  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);
}

.overlay_left_a6bf .description_stale_6898 {
  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;
}

.overlay_left_a6bf .description_stale_6898 svg {
  flex-shrink: 0;
}

.overlay_left_a6bf .tag_3702 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.overlay_left_a6bf .tag_3702: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);
}

.overlay_left_a6bf .column_rough_5cac {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.overlay_left_a6bf .column_rough_5cac: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) {
  .pagination-stale-2641 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .text-2c91 {
    max-width: 100%;
  }

  .highlight-897e {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .slow_3465 {
    padding: 1rem;
  }

  .old_4144 {
    font-size: 1.5rem;
  }

  .brown_b3aa {
    font-size: 0.75rem;
  }

  .hover-cool-acb8 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .overlay_left_a6bf {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .overlay_left_a6bf .description_stale_6898 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .highlight-897e {
    grid-template-columns: 1fr;
  }
}

.carousel_dark_7e7c {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.content_cc10 {
  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 === */
.dropdown-2045 {
  margin-bottom: 2.5rem;
}

.container-9260 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.carousel_dark_7e7c {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.wood-90ea {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.media_fast_4e79 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.active-8fd5 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sidebar-brown-05ab {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.tooltip_center_915d {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.article_yellow_cf2d {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.bottom_635d {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.bottom_635d svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.panel_hard_de70 {
  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);
}

.out_d58d {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.row-dim-05bc {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.breadcrumb_middle_e329 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.outer-0092 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.frame-8c6c {
  display: grid;
  gap: 1rem;
}

.tall_7aa3 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.west_2b95 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.popup_medium_8eec {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.video-6c4b {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.text-2f92 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.search_7f92 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.search_7f92 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.bright_1cd3 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.old_08fc {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.hero-cold-39ee {
  display: grid;
  gap: 2rem;
}

.picture_4508 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.media_fast_4e79 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.wood-90ea {
  flex: 1;
}

.sidebar-brown-05ab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.sidebar-brown-05ab a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.logo_copper_d35e {
  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;
}

.tooltip_center_915d {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.steel_edc4 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.steel_edc4 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.title-c15c {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.title-c15c a {
  font-size: 0.875rem;
  font-weight: 500;
}

.button_new_8446 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.button_new_8446 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.button_new_8446 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.button_new_8446 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.background_c5ce {
  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 === */
.video-out-c55a {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.carousel_warm_be45 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.avatar-simple-e6d9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.wide-b743 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.wide-b743 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.wide-b743 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.wide-b743 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;
}

.wide-b743 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.wide-b743 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.outer-ee95 {
  padding: 3rem 0 5rem;
}

.texture_ad2e {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.texture_ad2e.active_over_ec4b {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.search-f2a8 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.outline-full-1137 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.secondary_a444 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.secondary_a444 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.next_fb78 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.photo_bright_ef3f {
  text-align: center;
}

.overlay_first_4e76 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.prev-9c6a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.outline_827a {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.iron-4baf {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.input-bottom-446b {
  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;
}

.input-bottom-446b * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.input-bottom-446b:hover {
  box-shadow: var(--shadow-lg);
}

.input-bottom-446b.glass-c265 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.input-bottom-446b h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.input-bottom-446b ul {
  margin: 1rem 0;
}

.input-bottom-446b li {
  margin-bottom: 0.75rem;
}

.advanced-e47f {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.filter_05f2 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.filter_05f2 a {
  font-weight: 600;
}

/* === Data Tables === */
.gradient_4688 {
  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;
}

.gradient_4688 table {
  width: 100%;
  min-width: 600px;
}

.gradient_4688 thead {
  background-color: var(--primary-color);
  color: white;
}

.gradient_4688 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.gradient_4688 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.gradient_4688 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.gradient_4688 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.breadcrumb-51dc {
  list-style: none;
  margin: 1.5rem 0;
}

.breadcrumb-51dc li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.breadcrumb-51dc li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.steel_d215::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-f3b4::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 === */
.feature-thick-494a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.advanced-18d4 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.advanced-18d4 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.advanced-18d4 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.advanced-18d4 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.feature-thick-494a blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.container_d6b2 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.container_d6b2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.section_next_8a83 {
  position: relative;
  margin-bottom: 3rem;
}

.feature_8735 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.feature_8735 .complex-710b {
  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;
}

.aside-green-61b7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.aside-green-61b7 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.aside-green-61b7 ul {
  margin: 1rem 0;
}

.aside-green-61b7 li {
  margin-bottom: 0.75rem;
}

.row-black-5d6c {
  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 === */
.badge_dc0f {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.badge_dc0f h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.texture-6a9f {
  list-style: none;
  margin: 1.5rem 0;
}

.texture-6a9f li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.texture-6a9f a {
  font-weight: 600;
}

.steel-829d {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.alert-f39c {
  margin: 2.5rem 0;
}

.disabled_a75b {
  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;
}

.disabled_a75b:hover {
  box-shadow: var(--shadow-lg);
}

.disabled_a75b.accordion_696b {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.disabled-ceec {
  flex-shrink: 0;
}

.disabled-ceec 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);
}

.filter_1f60 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.photo-d3dc,
.photo_selected_95d5,
.wide-f992 {
  width: 100%;
  margin: 1.5rem 0;
}

.pagination_cold_d96e {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.pagination_cold_d96e strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.text-hard-92eb {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.text-hard-92eb strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.form_6724 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.form_6724 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.hero_953e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.item_b0be {
  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;
}

.item_b0be:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.item_b0be.gradient-tiny-e0cc {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.item_b0be .static_3b94 {
  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;
}

.item_b0be h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.gallery-c76b {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.slider_narrow_a86e {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.slider_narrow_a86e label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.search_small_2eba {
  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 === */
.description_stale_6898 {
  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;
}

.tag_3702 {
  background-color: var(--primary-color);
  color: white;
}

.tag_3702:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.column_rough_5cac {
  background-color: var(--text-secondary);
  color: white;
}

.column_rough_5cac:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.article-plasma-b1ea {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.article-plasma-b1ea:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.old_aca6 {
  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;
}

.old_aca6:hover {
  background-color: var(--primary-dark);
}

.description_dynamic_6319 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.table_4d9c {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.mini-2247 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.highlight_4ffd {
  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 === */
.overlay_hard_64d8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.description_over_8ac0 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.description_over_8ac0 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.content_glass_b16d {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.silver-b0ba {
  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;
}

.layout-f542 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.highlight_5675 {
  list-style: none;
  counter-reset: rank-counter;
}

.highlight_5675 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.highlight_5675 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;
}

.block-d16c {
  list-style: none;
}

.block-d16c li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.new_52a0 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.dropdown_mini_f794 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.dropdown_mini_f794 .hovered_0699 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.dropdown_mini_f794 .notification-3e39 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.gradient_4a4a {
  margin-top: 3rem;
}

.upper_1d4e {
  width: 100%;
}

.tiny_768c {
  background-color: #fef3c7;
}

.accordion-active-8afb {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.cold-c137 {
  margin: 3rem 0;
}

.in_f22b {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.message_f5ed {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.message_f5ed:hover {
  box-shadow: var(--shadow-lg);
}

.message_f5ed.west-8881 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.media-2186 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.content-0d22 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.content-0d22 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.banner_e2ee {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.message_f5ed blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.footer_6af4 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.gallery-ac55 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.accent-cold-44e4 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.focus-53c2 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.tag-167f {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.bright-ac00 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.input_08aa {
  max-width: 900px;
  margin: 0 auto;
}

.photo_7b11 {
  margin: 2rem 0;
}

.wrapper-3ffa {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.wrapper-3ffa summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.wrapper-3ffa summary::-webkit-details-marker {
  display: none;
}

.wrapper-3ffa summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.layout_47bd {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.wrapper-3ffa[open] .layout_47bd {
  transform: rotate(45deg);
}

.background_3454 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.background_3454 p:last-child {
  margin-bottom: 0;
}

.upper_4221 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.gradient_1596 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.wood_8c0c {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.wood_8c0c p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.wood_8c0c .description_stale_6898 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.frame-outer-01c6 {
  max-width: 900px;
  margin: 0 auto;
}

.info-stale-9521 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.pattern-ec7b {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.pattern-ec7b.fn-success-f3b4 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.smooth-5ed1 {
  font-size: 3rem;
  line-height: 1;
}

.sidebar-plasma-6134 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.nav-b04c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.message-58b0,
.wood_0b67 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.message-58b0 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.wood_0b67 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.brown-35bd,
.smooth-35c7 {
  margin: 1.5rem 0;
}

.brown-35bd li,
.smooth-35c7 li {
  margin-bottom: 1rem;
}

.info_hovered_c88f {
  margin: 3rem 0;
}

.silver-b697 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.silver-b697 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.silver-b697 ol {
  margin: 1rem 0;
}

.silver-b697 li {
  margin-bottom: 0.75rem;
}

.bright-538c {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.advanced_bd0a {
  margin: 2rem 0;
}

.text_dynamic_0286 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.slider-under-c21a {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.slow-a1b6 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.item_bronze_218d {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.shade_e3e4 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.caption-cool-51bc {
  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;
}

.caption-cool-51bc img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.active-8fd5 {
  flex: 1;
}

.active-8fd5 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.warm-d279 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.inner-3e3b p {
  margin-bottom: 1rem;
}

.slow-4cec {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.icon-blue-0b33 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.medium-9085 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.medium-9085 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.tabs-ee9c h3 {
  margin-bottom: 1.5rem;
}

.container_stone_0630 {
  display: grid;
  gap: 2rem;
}

.menu_c739 {
  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;
}

.menu_c739 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.menu_c739 h4 {
  margin: 0 0 0.25rem;
}

.menu_c739 p {
  margin: 0;
  font-size: 0.9375rem;
}

.texture-new-a16c {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.soft-86ec {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.soft-86ec h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.soft-86ec ul {
  margin: 1.5rem 0;
}

.soft-86ec li {
  margin-bottom: 0.75rem;
}

.slow-42b0 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.sidebar_hard_80dd {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.focused_7703 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.narrow-367c h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.narrow-367c p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.active-f31d {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.active-f31d a {
  color: rgba(255, 255, 255, 0.8);
}

.input_3980 {
  list-style: none;
}

.input_3980 li {
  margin-bottom: 0.75rem;
}

.input_3980 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.input_3980 a:hover {
  color: white;
}

.gallery-2479 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.header-paper-b870 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.focus-63a3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.sort-basic-670a {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.article_3b62 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .text_6218 {
    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;
  }

  .component_black_d58d {
    font-size: 1.5rem !important;
  }

  .container-9260 {
    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 */
  .input-bottom-446b,
  .prev-227d,
  .aside-green-61b7,
  .filter_1f60,
  .media-2186,
  .message_f5ed,
  .background_3454,
  .hover-cool-acb8,
  .bright_1cd3,
  .search-f2a8 {
    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 */
  .carousel_dark_7e7c {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .wood-90ea {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .media_fast_4e79 {
    flex-shrink: 0;
  }

  .active-8fd5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .sidebar-brown-05ab,
  .tooltip_center_915d {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .tooltip_center_915d {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .section-0aeb {
    display: none;
  }

  /* Show mobile actions */
  .right-073a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .pink-2e36 {
    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;
  }

  .pink-2e36 svg {
    flex-shrink: 0;
  }

  .pink-2e36 .chip-73da {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .pink-2e36 .thumbnail-5456 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .input-focused-7138 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .wood_9683 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .pink-2e36:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .link_in_3f2b {
    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;
  }

  .link_in_3f2b.fn-active-f3b4 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .link_in_3f2b li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .link_in_3f2b li:last-child {
    border-bottom: none;
  }

  .link_in_3f2b a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .bright_1002 {
    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;
  }

  .bright_1002 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .bright_1002 li:last-child {
    border-bottom: none;
  }

  .bright_1002 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .rough-6305 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .liquid_a3b1 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .short_cc8c,
  .tertiary-8253 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .short_cc8c {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .tertiary-8253 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .bright_1002.fn-active-f3b4 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .avatar_bronze_1283 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .last_edce {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .in_18ad {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .menu-down-e42d {
    margin-top: 0;
  }

  /* Hero section */
  .menu-down-e42d {
    padding: 2rem 0 1.5rem;
  }

  .container-9260 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .bright_1cd3 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .pagination-stale-2641 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .text-2c91 {
    max-width: 100%;
    border-radius: 8px;
  }

  .highlight-897e {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .slow_3465 {
    padding: 1rem;
  }

  .old_4144 {
    font-size: 1.5rem;
  }

  .brown_b3aa {
    font-size: 0.75rem;
  }

  .hover-cool-acb8 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .overlay_left_a6bf {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .overlay_left_a6bf .description_stale_6898 {
    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 */
  .avatar-simple-e6d9 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .disabled_a75b {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .disabled-ceec {
    margin-bottom: 1rem;
  }

  /* Author */
  .picture_4508 {
    flex-direction: column;
  }

  .caption-cool-51bc {
    flex-direction: column;
  }

  /* Quotes */
  .media-2186 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .nav-b04c {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .item_bronze_218d {
    flex-direction: column;
  }

  .item_bronze_218d .description_stale_6898 {
    width: 100%;
  }

  /* Version comparison */
  .hero_953e {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .overlay_hard_64d8 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .focused_7703 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .focus-63a3 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .gradient_4688,
  .photo_selected_95d5,
  .basic-7d9a,
  .upper_1d4e,
  .photo-d3dc,
  .wide-f992 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .gradient_4688 table,
  .photo_selected_95d5 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .search_small_2eba {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .text_6218 {
    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;
  }

  .component_black_d58d {
    font-size: 1.25rem !important;
  }

  .container-9260 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .last_edce {
    position: fixed;
  }

  .in_18ad {
    padding: 0.625rem 0;
  }

  .paragraph-e716 img {
    height: 26px;
  }

  .bright_1002 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .link_in_3f2b {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .pink-2e36 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .pink-2e36 svg {
    width: 18px;
    height: 18px;
  }

  .pink-2e36 .chip-73da {
    font-size: 0.7rem;
  }

  .pink-2e36 .thumbnail-5456 {
    font-size: 0.65rem;
  }

  .short_cc8c,
  .tertiary-8253 {
    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, .text_6218, .tertiary-d50e, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .pagination-stale-2641 {
    padding: 1rem;
  }

  .highlight-897e {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .slow_3465 {
    padding: 0.875rem;
  }

  .old_4144 {
    font-size: 1.25rem;
  }

  .overlay_left_a6bf .description_stale_6898 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .container-9260 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .description_stale_6898 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .description_dynamic_6319 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .disabled_a75b {
    padding: 1rem;
  }

  .disabled-ceec span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .input-bottom-446b,
  .stale_0530,
  .pressed_15ed,
  .border_5401 {
    padding: 1rem;
  }
}

@media print {
  .last_edce,
  .video-out-c55a,
  .avatar_bronze_1283,
  .description_stale_6898,
  .sidebar_hard_80dd {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .text_6218 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.down-e9eb {
  margin-bottom: 3rem;
  text-align: center;
}

.component_black_d58d {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.table-0353 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.tag-bbcf,
.gradient_5f58 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gold_9082 {
  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;
}

.gold_9082:hover {
  transform: translateY(-5px);
}

.gold_9082 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.gold_9082 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.info-complex-91aa {
  margin: 3rem 0;
}

.first_df74 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.steel-1609 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.steel-1609:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.modal-669e {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.fast-6faf {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.layout-b363 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.list-top-19a6 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.disabled_da54 {
  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;
}

.disabled_da54:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.disabled_da54.thumbnail_easy_d988 {
  border-left: 4px solid var(--primary-color);
}

.avatar-e0d8 {
  flex-shrink: 0;
}

.avatar-e0d8 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.photo_new_528c {
  flex: 1;
}

.photo_new_528c h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.content-hot-abf2 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.box-up-723f,
.dark-5aff,
.disabled_stale_4099 {
  margin-bottom: 1.5rem;
}

.box-up-723f h4,
.dark-5aff h4,
.disabled_stale_4099 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.box-up-723f ul,
.dark-5aff ul,
.disabled_stale_4099 ul {
  list-style: none;
  padding: 0;
}

.box-up-723f li,
.dark-5aff li,
.disabled_stale_4099 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.box-up-723f li:before,
.dark-5aff li:before,
.disabled_stale_4099 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.outline-4fe6 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.outline-4fe6 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;
}

.outline-4fe6 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.title-orange-8ccb { margin: 2rem 0; }
.mask_a7a9 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.mask_a7a9 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.focus_plasma_c7bc p { margin-bottom: 1rem; line-height: 1.7; }
.focus_plasma_c7bc strong { color: var(--text-primary); }
.focus_plasma_c7bc ul { list-style: none; padding-left: 0; }
.focus_plasma_c7bc ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.focus_plasma_c7bc ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.chip_new_5878 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.badge_fast_74d3 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.badge_fast_74d3:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.over-65c8 { font-size: 3rem; margin-bottom: 1rem; }
.badge_fast_74d3 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.badge_fast_74d3 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.section_c17b { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.section_c17b span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.pattern_purple_bd7e { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.banner_tiny_7272 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.top_781d { text-align: center; }
.focus-tall-4659 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.container_d0e4 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.small-5c63 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.overlay_action_cb68 { margin: 2rem 0; }
.aside_2ebd { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.aside_2ebd h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.aside_2ebd p, .aside_2ebd ul { line-height: 1.7; }
.aside_2ebd ul { list-style: none; padding-left: 0; }
.aside_2ebd ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.aside_2ebd ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.gallery_1806 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.gallery-e717 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.south-48fe { text-align: center; }
.nav_gas_0f16 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.focused-95f5 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.detail_under_41b4 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.grid_fluid_5e3b { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.right_b76c { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.right_b76c:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.right_b76c h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.right_b76c p, .right_b76c ul { line-height: 1.7; }
.right_b76c ul { list-style: none; padding-left: 0; }
.right_b76c ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.right_b76c ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 4e17 */
.shadow-element-j0 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.2;
}
