/* ============================================
   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 */
.sidebar-center-c463 p,
.bottom-c99a,
.box-116d,
.active-386c,
.logo_short_4498,
.outer_3c40,
.message_clean_4e15,
.easy_f6a8 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.gradient_under_822c {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.gradient_under_822c > *,
.summary-a93a,
.sidebar-center-c463,
.container-solid-e9da {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .gradient_under_822c {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .gradient_under_822c {
    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 === */
.tabs-e35c {
  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 */
.tabs-e35c.preview-7163 {
  box-shadow: var(--shadow-md);
}

.badge_small_cebd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.pagination_70c1 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.card-simple-7ffa {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.button_silver_771a {
  display: none;
}

/* Hide mobile actions on desktop */
.gallery_right_d972 {
  display: none;
}

.item_fresh_820a a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.item_fresh_820a a:hover,
.item_fresh_820a a.fn-active-202b {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.wide_b3c6 {
  margin-left: 1rem;
}

.article_short_2608 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.aside-ff2d,
.texture-wide-d191 {
  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;
}

.aside-ff2d {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.aside-ff2d: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;
}

.texture-wide-d191 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.texture-wide-d191: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;
}

.aside-ff2d svg,
.texture-wide-d191 svg {
  flex-shrink: 0;
}

.element-fluid-daef {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.steel-7b3e {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.steel-7b3e::before,
.steel-7b3e::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.steel-7b3e::before {
  top: -7px;
}

.steel-7b3e::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.static_57e4 {
  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 === */
.wood_95ec {
  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);
}

.title-dirty-a925 {
  margin: 0 0 2rem;
  text-align: center;
}

.avatar_pressed_7fed {
  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;
}

.avatar_pressed_7fed:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.full_9622 {
  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);
}

.full_9622 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.wrapper_8d5d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.slider_over_393b {
  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;
}

.slider_over_393b:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.panel_6682 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.main-e412 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.bottom-3b66 {
  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);
}

.bottom-3b66 .active_e92f {
  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;
}

.bottom-3b66 .active_e92f svg {
  flex-shrink: 0;
}

.bottom-3b66 .breadcrumb_3fba {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.bottom-3b66 .breadcrumb_3fba: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);
}

.bottom-3b66 .layout-7f0c {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.bottom-3b66 .layout-7f0c: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) {
  .wood_95ec {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .avatar_pressed_7fed {
    max-width: 100%;
  }

  .wrapper_8d5d {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .slider_over_393b {
    padding: 1rem;
  }

  .panel_6682 {
    font-size: 1.5rem;
  }

  .main-e412 {
    font-size: 0.75rem;
  }

  .full_9622 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .bottom-3b66 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .bottom-3b66 .active_e92f {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .wrapper_8d5d {
    grid-template-columns: 1fr;
  }
}

.basic-bf95 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.brown-3033 {
  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 === */
.wrapper_under_3dd5 {
  margin-bottom: 2.5rem;
}

.carousel-875d {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.basic-bf95 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.footer_905d {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.orange_823a {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.middle-7652 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.overlay_54a6 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.fluid-2cac {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.label-1f8e {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.secondary_4b15 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.secondary_4b15 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.aside_in_7037 {
  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);
}

.layout-right-9728 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.advanced_beea {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.old_5fe2 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.cool-c274 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.mini_8d41 {
  display: grid;
  gap: 1rem;
}

.feature-bronze-4ce5 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.panel_medium_26ec {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.search-static-94d7 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.search-focused-755d {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.east_e008 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.secondary-plasma-fd24 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.secondary-plasma-fd24 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.bottom-c99a {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.text_advanced_7420 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.progress-white-ce40 {
  display: grid;
  gap: 2rem;
}

.logo_5eef {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.orange_823a {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.footer_905d {
  flex: 1;
}

.overlay_54a6 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.overlay_54a6 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.header_easy_f4c8 {
  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;
}

.fluid-2cac {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.next-f12c {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.next-f12c span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.black-a347 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.black-a347 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.hidden-easy-b34a {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.hidden-easy-b34a strong {
  display: block;
  margin-bottom: 0.75rem;
}

.hidden-easy-b34a ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hidden-easy-b34a li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.cool-c299 {
  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 === */
.text-2c81 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.bottom-9572 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.tertiary-current-5023 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.frame_tall_c078 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.frame_tall_c078 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.frame_tall_c078 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.frame_tall_c078 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;
}

.frame_tall_c078 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.frame_tall_c078 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.sidebar-center-c463 {
  padding: 3rem 0 5rem;
}

.container-solid-e9da {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.container-solid-e9da.east_f663 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.box-116d {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.description_827b {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.wide-c3cb {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.wide-c3cb h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.preview_bronze_f048 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.detail-small-822c {
  text-align: center;
}

.lite_3c24 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.carousel-fluid-f79d {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.picture-d969 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.outer_3c40 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.active-386c {
  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;
}

.active-386c * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.active-386c:hover {
  box-shadow: var(--shadow-lg);
}

.active-386c.medium_80b4 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.active-386c h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.active-386c ul {
  margin: 1rem 0;
}

.active-386c li {
  margin-bottom: 0.75rem;
}

.easy-d26b {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.image-east-661a {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.image-east-661a a {
  font-weight: 600;
}

/* === Data Tables === */
.item-c349 {
  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;
}

.item-c349 table {
  width: 100%;
  min-width: 600px;
}

.item-c349 thead {
  background-color: var(--primary-color);
  color: white;
}

.item-c349 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.item-c349 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.item-c349 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.item-c349 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.fresh-96ea {
  list-style: none;
  margin: 1.5rem 0;
}

.fresh-96ea li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.fresh-96ea li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.dim_e59b::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-202b::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 === */
.rough-0edc {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.over-0908 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.over-0908 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.over-0908 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.over-0908 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.rough-0edc blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.message_clean_4e15 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.message_clean_4e15::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.light_0992 {
  position: relative;
  margin-bottom: 3rem;
}

.dark-8eac {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.dark-8eac .picture_d97d {
  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;
}

.medium_8d46 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.medium_8d46 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.medium_8d46 ul {
  margin: 1rem 0;
}

.medium_8d46 li {
  margin-bottom: 0.75rem;
}

.easy_acf6 {
  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 === */
.text_orange_5aaf {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.text_orange_5aaf h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.header_paper_e7c4 {
  list-style: none;
  margin: 1.5rem 0;
}

.header_paper_e7c4 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.header_paper_e7c4 a {
  font-weight: 600;
}

.north_f459 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.easy_f6a8 {
  margin: 2.5rem 0;
}

.content-b9bf {
  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;
}

.content-b9bf:hover {
  box-shadow: var(--shadow-lg);
}

.content-b9bf.accent_3d77 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.image_full_f44a {
  flex-shrink: 0;
}

.image_full_f44a 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);
}

.basic_0dd3 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.heading_2f43,
.liquid-d5e4,
.shadow_wood_8843 {
  width: 100%;
  margin: 1.5rem 0;
}

.slider-plasma-c7e8 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.slider-plasma-c7e8 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.pro-7586 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.pro-7586 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.caption-998d {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.caption-998d strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.button-366c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.hard_5873 {
  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;
}

.hard_5873:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.hard_5873.mask-fluid-5ca8 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.hard_5873 .texture_stone_966f {
  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;
}

.hard_5873 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.tag-ac33 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.dropdown-10a7 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.dropdown-10a7 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.mask-wood-da7c {
  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 === */
.active_e92f {
  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;
}

.breadcrumb_3fba {
  background-color: var(--primary-color);
  color: white;
}

.breadcrumb_3fba:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.layout-7f0c {
  background-color: var(--text-secondary);
  color: white;
}

.layout-7f0c:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.complex-7938 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.complex-7938:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.video-0256 {
  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;
}

.video-0256:hover {
  background-color: var(--primary-dark);
}

.hidden-glass-37b8 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.short_1797 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.middle_ac58 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.icon-hard-cf63 {
  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 === */
.backdrop-pink-cdc8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.small-71b2 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.small-71b2 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.hover_2ea7 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.block_glass_15d0 {
  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;
}

.avatar-6d33 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.image-light-fc66 {
  list-style: none;
  counter-reset: rank-counter;
}

.image-light-fc66 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.image-light-fc66 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_outer_5421 {
  list-style: none;
}

.notice_outer_5421 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.tiny-8612 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.smooth-74d0 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.smooth-74d0 .up-cdc2 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.smooth-74d0 .alert_dirty_971d {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.in_fdcf {
  margin-top: 3rem;
}

.upper-d26d {
  width: 100%;
}

.shade-a2ea {
  background-color: #fef3c7;
}

.old-ed5d {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.tertiary-under-6bdb {
  margin: 3rem 0;
}

.content_7179 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.input-b734 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.input-b734:hover {
  box-shadow: var(--shadow-lg);
}

.input-b734.logo-east-a2b5 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.chip_2aa1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.shadow_8446 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.shadow_8446 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.logo-hot-2aac {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.input-b734 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.bottom_2c18 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.over-95f4 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.frame_ad40 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.blue_8b43 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.breadcrumb-2d50 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.message-ccbb {
  margin-top: 1rem;
}

/* === FAQ Section === */
.stone-373c {
  max-width: 900px;
  margin: 0 auto;
}

.label-small-1bef {
  margin: 2rem 0;
}

.highlight_short_d082 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.highlight_short_d082 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.highlight_short_d082 summary::-webkit-details-marker {
  display: none;
}

.highlight_short_d082 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.focus-dirty-8103 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.highlight_short_d082[open] .focus-dirty-8103 {
  transform: rotate(45deg);
}

.photo_top_0cf9 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.photo_top_0cf9 p:last-child {
  margin-bottom: 0;
}

.chip_d6e6 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.hard_ecdb {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.disabled_dirty_f5ed {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.disabled_dirty_f5ed p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.disabled_dirty_f5ed .active_e92f {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.sidebar_yellow_3afe {
  max-width: 900px;
  margin: 0 auto;
}

.overlay_9c9f {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.paper_7c52 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.paper_7c52.fn-success-202b {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.shadow_clean_c82f {
  font-size: 3rem;
  line-height: 1;
}

.component-inner-a36a h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.fast_a5a0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.shade_e760,
.dirty-78d0 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.shade_e760 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.dirty-78d0 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.heading-e588,
.aside-f257 {
  margin: 1.5rem 0;
}

.heading-e588 li,
.aside-f257 li {
  margin-bottom: 1rem;
}

.label-cf7f {
  margin: 3rem 0;
}

.button_15af {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.button_15af h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.button_15af ol {
  margin: 1rem 0;
}

.button_15af li {
  margin-bottom: 0.75rem;
}

.dropdown-north-5eb9 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.hovered_6a5e {
  margin: 2rem 0;
}

.content_full_1e06 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.badge_fresh_65ea {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.detail-058f {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.action-6b90 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.in_8043 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.form-94f0 {
  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;
}

.form-94f0 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.middle-7652 {
  flex: 1;
}

.middle-7652 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.element_6b92 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.info-75d3 p {
  margin-bottom: 1rem;
}

.widget-active-4acc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.heading_lite_b878 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.title_e56c {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.title_e56c a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.detail-fresh-0b19 h3 {
  margin-bottom: 1.5rem;
}

.card-down-bc95 {
  display: grid;
  gap: 2rem;
}

.rough_243b {
  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;
}

.rough_243b img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.rough_243b h4 {
  margin: 0 0 0.25rem;
}

.rough_243b p {
  margin: 0;
  font-size: 0.9375rem;
}

.modal_ef94 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.dropdown_upper_5fd3 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.dropdown_upper_5fd3 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.dropdown_upper_5fd3 ul {
  margin: 1.5rem 0;
}

.dropdown_upper_5fd3 li {
  margin-bottom: 0.75rem;
}

.fast_7ed7 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.panel-bf6b {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.progress-09bc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.east_9398 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.east_9398 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.description-0c66 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.description-0c66 a {
  color: rgba(255, 255, 255, 0.8);
}

.thumbnail_next_c58f {
  list-style: none;
}

.thumbnail_next_c58f li {
  margin-bottom: 0.75rem;
}

.thumbnail_next_c58f a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.thumbnail_next_c58f a:hover {
  color: white;
}

.background-f842 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.surface_5028 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.box-cb5b {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.frame-1964 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.block-left-5446 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .gradient_under_822c {
    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;
  }

  .disabled-tiny-663b {
    font-size: 1.5rem !important;
  }

  .carousel-875d {
    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 */
  .active-386c,
  .logo_short_4498,
  .medium_8d46,
  .basic_0dd3,
  .chip_2aa1,
  .input-b734,
  .photo_top_0cf9,
  .full_9622,
  .bottom-c99a,
  .box-116d {
    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 */
  .basic-bf95 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer_905d {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .orange_823a {
    flex-shrink: 0;
  }

  .middle-7652 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .overlay_54a6,
  .fluid-2cac {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .fluid-2cac {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .card-simple-7ffa {
    display: none;
  }

  /* Show mobile actions */
  .gallery_right_d972 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .primary_3fed {
    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;
  }

  .primary_3fed svg {
    flex-shrink: 0;
  }

  .primary_3fed .dirty_5452 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .primary_3fed .thick-5177 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .hovered_14cb {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .tabs_top_ffb0 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .primary_3fed:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .button_silver_771a {
    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;
  }

  .button_silver_771a.fn-active-202b {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .button_silver_771a li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .button_silver_771a li:last-child {
    border-bottom: none;
  }

  .button_silver_771a a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .item_fresh_820a {
    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;
  }

  .item_fresh_820a li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .item_fresh_820a li:last-child {
    border-bottom: none;
  }

  .item_fresh_820a a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .wide_b3c6 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .article_short_2608 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .aside-ff2d,
  .texture-wide-d191 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .aside-ff2d {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .texture-wide-d191 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .item_fresh_820a.fn-active-202b {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .element-fluid-daef {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .tabs-e35c {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .badge_small_cebd {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .static_57e4 {
    margin-top: 0;
  }

  /* Hero section */
  .static_57e4 {
    padding: 2rem 0 1.5rem;
  }

  .carousel-875d {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .bottom-c99a {
    font-size: 1rem;
  }

  /* Hero brand image */
  .wood_95ec {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .avatar_pressed_7fed {
    max-width: 100%;
    border-radius: 8px;
  }

  .wrapper_8d5d {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .slider_over_393b {
    padding: 1rem;
  }

  .panel_6682 {
    font-size: 1.5rem;
  }

  .main-e412 {
    font-size: 0.75rem;
  }

  .full_9622 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .bottom-3b66 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .bottom-3b66 .active_e92f {
    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 */
  .tertiary-current-5023 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .content-b9bf {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .image_full_f44a {
    margin-bottom: 1rem;
  }

  /* Author */
  .logo_5eef {
    flex-direction: column;
  }

  .form-94f0 {
    flex-direction: column;
  }

  /* Quotes */
  .chip_2aa1 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .fast_a5a0 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .action-6b90 {
    flex-direction: column;
  }

  .action-6b90 .active_e92f {
    width: 100%;
  }

  /* Version comparison */
  .button-366c {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .backdrop-pink-cdc8 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .progress-09bc {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .box-cb5b {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .item-c349,
  .liquid-d5e4,
  .badge_1498,
  .upper-d26d,
  .heading_2f43,
  .shadow_wood_8843 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .item-c349 table,
  .liquid-d5e4 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .mask-wood-da7c {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .gradient_under_822c {
    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;
  }

  .disabled-tiny-663b {
    font-size: 1.25rem !important;
  }

  .carousel-875d {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .tabs-e35c {
    position: fixed;
  }

  .badge_small_cebd {
    padding: 0.625rem 0;
  }

  .pagination_70c1 img {
    height: 26px;
  }

  .item_fresh_820a {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .button_silver_771a {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .primary_3fed {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .primary_3fed svg {
    width: 18px;
    height: 18px;
  }

  .primary_3fed .dirty_5452 {
    font-size: 0.7rem;
  }

  .primary_3fed .thick-5177 {
    font-size: 0.65rem;
  }

  .aside-ff2d,
  .texture-wide-d191 {
    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, .gradient_under_822c, .summary-a93a, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .wood_95ec {
    padding: 1rem;
  }

  .wrapper_8d5d {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .slider_over_393b {
    padding: 0.875rem;
  }

  .panel_6682 {
    font-size: 1.25rem;
  }

  .bottom-3b66 .active_e92f {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .carousel-875d {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .active_e92f {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .hidden-glass-37b8 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .content-b9bf {
    padding: 1rem;
  }

  .image_full_f44a span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .active-386c,
  .dropdown-lower-da29,
  .nav_610b,
  .filter_44fc {
    padding: 1rem;
  }
}

@media print {
  .tabs-e35c,
  .text-2c81,
  .element-fluid-daef,
  .active_e92f,
  .panel-bf6b {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .gradient_under_822c {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.middle-4364 {
  margin-bottom: 3rem;
  text-align: center;
}

.disabled-tiny-663b {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.notice_short_89ff {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.plasma_e220,
.caption_e85a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.column-yellow-3d72 {
  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;
}

.column-yellow-3d72:hover {
  transform: translateY(-5px);
}

.column-yellow-3d72 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.column-yellow-3d72 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.red_4a15 {
  margin: 3rem 0;
}

.mini-c0b9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.list_out_08ad {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.list_out_08ad:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.content-basic-bc38 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.in_4435 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.light-3d77 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.small-5e81 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.wrapper_old_6913 {
  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;
}

.wrapper_old_6913:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.wrapper_old_6913.pro-c193 {
  border-left: 4px solid var(--primary-color);
}

.plasma-ca07 {
  flex-shrink: 0;
}

.plasma-ca07 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.hot_e617 {
  flex: 1;
}

.hot_e617 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.column-active-e48a {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.section_cold_be3e,
.list_solid_c23a,
.section-8549 {
  margin-bottom: 1.5rem;
}

.section_cold_be3e h4,
.list_solid_c23a h4,
.section-8549 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section_cold_be3e ul,
.list_solid_c23a ul,
.section-8549 ul {
  list-style: none;
  padding: 0;
}

.section_cold_be3e li,
.list_solid_c23a li,
.section-8549 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.section_cold_be3e li:before,
.list_solid_c23a li:before,
.section-8549 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.breadcrumb_341d {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.breadcrumb_341d 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;
}

.breadcrumb_341d a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.stone-5434 { margin: 2rem 0; }
.middle-a962 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.middle-a962 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.chip-warm-c118 p { margin-bottom: 1rem; line-height: 1.7; }
.chip-warm-c118 strong { color: var(--text-primary); }
.chip-warm-c118 ul { list-style: none; padding-left: 0; }
.chip-warm-c118 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.chip-warm-c118 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.background-under-0452 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.banner-9fe0 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.banner-9fe0:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.wood-9d50 { font-size: 3rem; margin-bottom: 1rem; }
.banner-9fe0 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.banner-9fe0 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.overlay-soft-4cb9 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.overlay-soft-4cb9 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.element_up_ca6e { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.full-f551 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.current-2802 { text-align: center; }
.text_hard_8cab { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.right-6cbf { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.black_62de { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.tabs-center-57c6 { margin: 2rem 0; }
.summary_current_0bd7 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.summary_current_0bd7 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.summary_current_0bd7 p, .summary_current_0bd7 ul { line-height: 1.7; }
.summary_current_0bd7 ul { list-style: none; padding-left: 0; }
.summary_current_0bd7 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.summary_current_0bd7 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.frame_red_9724 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.breadcrumb-next-e2cc { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.red_28b9 { text-align: center; }
.backdrop_688b { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.motion_43f2 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.input-6c44 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.header-down-5256 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.background-2dc5 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.background-2dc5:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.background-2dc5 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.background-2dc5 p, .background-2dc5 ul { line-height: 1.7; }
.background-2dc5 ul { list-style: none; padding-left: 0; }
.background-2dc5 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.background-2dc5 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 411d */
.widget-item-l1 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.2;
}
