/* ============================================
   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 */
.middle-66f4 p,
.title_prev_c257,
.notice_5036,
.fluid-a5c2,
.shadow_5471,
.description_top_8f9c,
.search_fast_a729,
.dropdown-2c7c {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.notice-de56 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.notice-de56 > *,
.copper-f08f,
.middle-66f4,
.table_2817 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .notice-de56 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .notice-de56 {
    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 === */
.left-ccd4 {
  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 */
.left-ccd4.left-5c11 {
  box-shadow: var(--shadow-md);
}

.white-0d03 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.video-steel-6cc1 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.shadow_full_4dd8 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.alert_white_861b {
  display: none;
}

/* Hide mobile actions on desktop */
.liquid-42a3 {
  display: none;
}

.white-db3b a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.white-db3b a:hover,
.white-db3b a.fn-active-42d2 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.complex_5850 {
  margin-left: 1rem;
}

.thumbnail_eb2b {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.message-next-ac8f,
.container-2004 {
  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;
}

.message-next-ac8f {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.message-next-ac8f: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;
}

.container-2004 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.container-2004: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;
}

.message-next-ac8f svg,
.container-2004 svg {
  flex-shrink: 0;
}

.dynamic_2f19 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.advanced-15a8 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.advanced-15a8::before,
.advanced-15a8::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.advanced-15a8::before {
  top: -7px;
}

.advanced-15a8::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.search_6d8b {
  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 === */
.old-deab {
  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);
}

.tag-65be {
  margin: 0 0 2rem;
  text-align: center;
}

.gradient_blue_a5b2 {
  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;
}

.gradient_blue_a5b2:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.dropdown-fea1 {
  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);
}

.dropdown-fea1 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.fluid_aea5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.lite_c542 {
  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;
}

.lite_c542:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.hard_1d4b {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hovered_5381 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.in-022c {
  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);
}

.in-022c .block-lite-bddc {
  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;
}

.in-022c .block-lite-bddc svg {
  flex-shrink: 0;
}

.in-022c .texture_stone_18da {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.in-022c .texture_stone_18da: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);
}

.in-022c .purple-8409 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.in-022c .purple-8409: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) {
  .old-deab {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .gradient_blue_a5b2 {
    max-width: 100%;
  }

  .fluid_aea5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .lite_c542 {
    padding: 1rem;
  }

  .hard_1d4b {
    font-size: 1.5rem;
  }

  .hovered_5381 {
    font-size: 0.75rem;
  }

  .dropdown-fea1 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .in-022c {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .in-022c .block-lite-bddc {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .fluid_aea5 {
    grid-template-columns: 1fr;
  }
}

.badge_copper_98d2 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.sort-b391 {
  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 === */
.alert_next_1df7 {
  margin-bottom: 2.5rem;
}

.grid_6b79 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.badge_copper_98d2 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.main_pink_716d {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.title-in-ee60 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.dark-5c51 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.box-4436 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.slider-7bd9 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.search-mini-2144 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.backdrop_glass_1c6b {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.backdrop_glass_1c6b svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.new-1aca {
  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);
}

.feature-7c88 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.modal_4988 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hidden_9745 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.dropdown_solid_9058 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.tooltip_hard_22ad {
  display: grid;
  gap: 1rem;
}

.action_47b9 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.block-283a {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.item_0892 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.stone_8fe4 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.hidden_5014 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.yellow_8f9b {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.yellow_8f9b p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.title_prev_c257 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.sidebar_ed02 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.tooltip_full_e4c8 {
  display: grid;
  gap: 2rem;
}

.silver-7d8b {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.title-in-ee60 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.main_pink_716d {
  flex: 1;
}

.box-4436 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.box-4436 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.box-e6d9 {
  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;
}

.slider-7bd9 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.link_wide_7619 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.link_wide_7619 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.avatar-f6da {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.avatar-f6da a {
  font-size: 0.875rem;
  font-weight: 500;
}

.blue_a197 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.blue_a197 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.blue_a197 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blue_a197 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.next-b60e {
  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 === */
.slider-e7c5 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.pattern_b3fb {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.item_complex_fd35 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.active-d767 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.active-d767 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.active-d767 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.active-d767 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;
}

.active-d767 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.active-d767 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.middle-66f4 {
  padding: 3rem 0 5rem;
}

.table_2817 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.table_2817.title-hard-b12b {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.notice_5036 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.button-last-97b9 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.message-e10a {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.message-e10a h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.frame-middle-f92a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.modal_31f1 {
  text-align: center;
}

.carousel_static_06a1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tall_7c7a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.wide-4812 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.description_top_8f9c {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.fluid-a5c2 {
  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;
}

.fluid-a5c2 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.fluid-a5c2:hover {
  box-shadow: var(--shadow-lg);
}

.fluid-a5c2.full_0591 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.fluid-a5c2 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.fluid-a5c2 ul {
  margin: 1rem 0;
}

.fluid-a5c2 li {
  margin-bottom: 0.75rem;
}

.title-next-1a90 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.item_fresh_b38b {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.item_fresh_b38b a {
  font-weight: 600;
}

/* === Data Tables === */
.active-advanced-1e5d {
  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;
}

.active-advanced-1e5d table {
  width: 100%;
  min-width: 600px;
}

.active-advanced-1e5d thead {
  background-color: var(--primary-color);
  color: white;
}

.active-advanced-1e5d th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.active-advanced-1e5d td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.active-advanced-1e5d tbody tr:hover {
  background-color: var(--bg-secondary);
}

.active-advanced-1e5d tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.black-ca23 {
  list-style: none;
  margin: 1.5rem 0;
}

.black-ca23 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.black-ca23 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.widget_6a51::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-42d2::before {
  content: '⚠';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--warning-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

/* === Expert Insight Box === */
.summary_433a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.surface-complex-b2d6 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.surface-complex-b2d6 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.surface-complex-b2d6 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.surface-complex-b2d6 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.summary_433a blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.search_fast_a729 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.search_fast_a729::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.component_6ecd {
  position: relative;
  margin-bottom: 3rem;
}

.notification_52ee {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.notification_52ee .avatar_black_428c {
  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;
}

.description-orange-95f7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.description-orange-95f7 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.description-orange-95f7 ul {
  margin: 1rem 0;
}

.description-orange-95f7 li {
  margin-bottom: 0.75rem;
}

.content-white-9872 {
  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 === */
.title-out-4566 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.title-out-4566 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.panel-cold-86d0 {
  list-style: none;
  margin: 1.5rem 0;
}

.panel-cold-86d0 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.panel-cold-86d0 a {
  font-weight: 600;
}

.overlay-9383 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.dropdown-2c7c {
  margin: 2.5rem 0;
}

.next_b01a {
  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;
}

.next_b01a:hover {
  box-shadow: var(--shadow-lg);
}

.next_b01a.active-219c {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.surface-active-bcd5 {
  flex-shrink: 0;
}

.surface-active-bcd5 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);
}

.accordion_8fd2 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.current_e075,
.progress-4cdc,
.gradient-over-d7f4 {
  width: 100%;
  margin: 1.5rem 0;
}

.panel_d07a {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.panel_d07a strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.brown_87d8 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.brown_87d8 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.aside-iron-06cb {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.aside-iron-06cb strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.component-white-7d8a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.label_72b6 {
  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;
}

.label_72b6:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.label_72b6.alert_warm_cc72 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.label_72b6 .huge-2377 {
  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;
}

.label_72b6 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.cool-d1fb {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.wide-1b5d {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.wide-1b5d label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.article-stone-39ef {
  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 === */
.block-lite-bddc {
  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;
}

.texture_stone_18da {
  background-color: var(--primary-color);
  color: white;
}

.texture_stone_18da:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.purple-8409 {
  background-color: var(--text-secondary);
  color: white;
}

.purple-8409:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.thick_b75a {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.thick_b75a:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.frame_13d4 {
  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;
}

.frame_13d4:hover {
  background-color: var(--primary-dark);
}

.lower-8187 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.inner_ac5d {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.status-simple-c93d {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.nav-fed0 {
  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 === */
.photo_58ac {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.glass-2ae3 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.glass-2ae3 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.west-3ca1 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.purple_9433 {
  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;
}

.photo_7d66 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.mask-8407 {
  list-style: none;
  counter-reset: rank-counter;
}

.mask-8407 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.mask-8407 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;
}

.easy-e67b {
  list-style: none;
}

.easy-e67b li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.selected_79a6 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.image_fast_dc50 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.image_fast_dc50 .upper_a5bf {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.image_fast_dc50 .title_d448 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.fresh-b98a {
  margin-top: 3rem;
}

.brown_df71 {
  width: 100%;
}

.gallery_e35a {
  background-color: #fef3c7;
}

.warm_3c86 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.article_last_5e1d {
  margin: 3rem 0;
}

.popup-944b {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.fluid-a328 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.fluid-a328:hover {
  box-shadow: var(--shadow-lg);
}

.fluid-a328.tertiary-current-8ad8 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.bronze_fd05 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.action_ceb9 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.action_ceb9 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.accent-short-07c3 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.fluid-a328 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.layout_dcc1 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.light_ca22 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.tooltip-06a2 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.element_ead8 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.dropdown-active-cab0 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.west-e7d7 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.green_f629 {
  max-width: 900px;
  margin: 0 auto;
}

.sort_hard_15e5 {
  margin: 2rem 0;
}

.background-short-f74f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.background-short-f74f summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.background-short-f74f summary::-webkit-details-marker {
  display: none;
}

.background-short-f74f summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.surface_easy_1891 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.background-short-f74f[open] .surface_easy_1891 {
  transform: rotate(45deg);
}

.mask_0216 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.mask_0216 p:last-child {
  margin-bottom: 0;
}

.panel_large_1c5c {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.caption_4cea {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.nav-f9fd {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.nav-f9fd p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.nav-f9fd .block-lite-bddc {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.center-8a42 {
  max-width: 900px;
  margin: 0 auto;
}

.huge-325b {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.info_adb0 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.info_adb0.fn-success-42d2 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.liquid-8459 {
  font-size: 3rem;
  line-height: 1;
}

.tall-53f1 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.panel_blue_c5db {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.dim_9890,
.shadow_lower_4282 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.dim_9890 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.shadow_lower_4282 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.label_orange_eb89,
.pattern_iron_a271 {
  margin: 1.5rem 0;
}

.label_orange_eb89 li,
.pattern_iron_a271 li {
  margin-bottom: 1rem;
}

.status_fluid_0794 {
  margin: 3rem 0;
}

.column-7054 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.column-7054 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.column-7054 ol {
  margin: 1rem 0;
}

.column-7054 li {
  margin-bottom: 0.75rem;
}

.left_3cd9 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.focus-7638 {
  margin: 2rem 0;
}

.old-8ad8 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.status-red-bccf {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.info_2bfd {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.filter_75a9 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.short-8ad1 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.active-3066 {
  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;
}

.active-3066 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.dark-5c51 {
  flex: 1;
}

.dark-5c51 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.motion_8a3c {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.badge_948c p {
  margin-bottom: 1rem;
}

.detail-soft-bfbf {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.active_ced1 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.gradient_pressed_8410 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.gradient_pressed_8410 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.nav_5dcc h3 {
  margin-bottom: 1.5rem;
}

.aside_right_2b9f {
  display: grid;
  gap: 2rem;
}

.overlay-last-134f {
  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;
}

.overlay-last-134f img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.overlay-last-134f h4 {
  margin: 0 0 0.25rem;
}

.overlay-last-134f p {
  margin: 0;
  font-size: 0.9375rem;
}

.status-c232 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.media-middle-d403 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.media-middle-d403 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.media-middle-d403 ul {
  margin: 1.5rem 0;
}

.media-middle-d403 li {
  margin-bottom: 0.75rem;
}

.next-3e14 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.texture-full-ac6e {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.selected-42b0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.avatar_ed88 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.avatar_ed88 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.progress-2726 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.progress-2726 a {
  color: rgba(255, 255, 255, 0.8);
}

.west-7f0f {
  list-style: none;
}

.west-7f0f li {
  margin-bottom: 0.75rem;
}

.west-7f0f a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.west-7f0f a:hover {
  color: white;
}

.action-c46e {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.summary_e90b {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.shadow_0df1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.progress_last_c17e {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.tertiary_south_fbd5 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .notice-de56 {
    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;
  }

  .thumbnail_outer_5e18 {
    font-size: 1.5rem !important;
  }

  .grid_6b79 {
    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 */
  .fluid-a5c2,
  .shadow_5471,
  .description-orange-95f7,
  .accordion_8fd2,
  .bronze_fd05,
  .fluid-a328,
  .mask_0216,
  .dropdown-fea1,
  .title_prev_c257,
  .notice_5036 {
    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 */
  .badge_copper_98d2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .main_pink_716d {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .title-in-ee60 {
    flex-shrink: 0;
  }

  .dark-5c51 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .box-4436,
  .slider-7bd9 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .slider-7bd9 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .shadow_full_4dd8 {
    display: none;
  }

  /* Show mobile actions */
  .liquid-42a3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .soft-8e25 {
    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;
  }

  .soft-8e25 svg {
    flex-shrink: 0;
  }

  .soft-8e25 .panel-silver-7925 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .soft-8e25 .inner-332f {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .short-f618 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .preview_a04a {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .soft-8e25:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .alert_white_861b {
    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;
  }

  .alert_white_861b.fn-active-42d2 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .alert_white_861b li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .alert_white_861b li:last-child {
    border-bottom: none;
  }

  .alert_white_861b a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .white-db3b {
    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;
  }

  .white-db3b li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .white-db3b li:last-child {
    border-bottom: none;
  }

  .white-db3b a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .complex_5850 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .thumbnail_eb2b {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .message-next-ac8f,
  .container-2004 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .message-next-ac8f {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .container-2004 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .white-db3b.fn-active-42d2 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .dynamic_2f19 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .left-ccd4 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .white-0d03 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .search_6d8b {
    margin-top: 0;
  }

  /* Hero section */
  .search_6d8b {
    padding: 2rem 0 1.5rem;
  }

  .grid_6b79 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .title_prev_c257 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .old-deab {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .gradient_blue_a5b2 {
    max-width: 100%;
    border-radius: 8px;
  }

  .fluid_aea5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .lite_c542 {
    padding: 1rem;
  }

  .hard_1d4b {
    font-size: 1.5rem;
  }

  .hovered_5381 {
    font-size: 0.75rem;
  }

  .dropdown-fea1 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .in-022c {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .in-022c .block-lite-bddc {
    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 */
  .item_complex_fd35 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .next_b01a {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .surface-active-bcd5 {
    margin-bottom: 1rem;
  }

  /* Author */
  .silver-7d8b {
    flex-direction: column;
  }

  .active-3066 {
    flex-direction: column;
  }

  /* Quotes */
  .bronze_fd05 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .panel_blue_c5db {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .filter_75a9 {
    flex-direction: column;
  }

  .filter_75a9 .block-lite-bddc {
    width: 100%;
  }

  /* Version comparison */
  .component-white-7d8a {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .photo_58ac {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .selected-42b0 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .shadow_0df1 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .active-advanced-1e5d,
  .progress-4cdc,
  .layout-wide-d71a,
  .brown_df71,
  .current_e075,
  .gradient-over-d7f4 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .active-advanced-1e5d table,
  .progress-4cdc table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .article-stone-39ef {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .notice-de56 {
    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;
  }

  .thumbnail_outer_5e18 {
    font-size: 1.25rem !important;
  }

  .grid_6b79 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .left-ccd4 {
    position: fixed;
  }

  .white-0d03 {
    padding: 0.625rem 0;
  }

  .video-steel-6cc1 img {
    height: 26px;
  }

  .white-db3b {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .alert_white_861b {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .soft-8e25 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .soft-8e25 svg {
    width: 18px;
    height: 18px;
  }

  .soft-8e25 .panel-silver-7925 {
    font-size: 0.7rem;
  }

  .soft-8e25 .inner-332f {
    font-size: 0.65rem;
  }

  .message-next-ac8f,
  .container-2004 {
    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, .notice-de56, .copper-f08f, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .old-deab {
    padding: 1rem;
  }

  .fluid_aea5 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .lite_c542 {
    padding: 0.875rem;
  }

  .hard_1d4b {
    font-size: 1.25rem;
  }

  .in-022c .block-lite-bddc {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .grid_6b79 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .block-lite-bddc {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .lower-8187 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .next_b01a {
    padding: 1rem;
  }

  .surface-active-bcd5 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .fluid-a5c2,
  .plasma-bcf6,
  .medium-bf63,
  .item-6244 {
    padding: 1rem;
  }
}

@media print {
  .left-ccd4,
  .slider-e7c5,
  .dynamic_2f19,
  .block-lite-bddc,
  .texture-full-ac6e {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .notice-de56 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.banner-d0a7 {
  margin-bottom: 3rem;
  text-align: center;
}

.thumbnail_outer_5e18 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.input_11ba {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.article_d301,
.pink_9336 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card-huge-e616 {
  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;
}

.card-huge-e616:hover {
  transform: translateY(-5px);
}

.card-huge-e616 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.card-huge-e616 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.secondary-complex-30eb {
  margin: 3rem 0;
}

.small_a734 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.tall-7b91 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.tall-7b91:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.south_d64c {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature_ea51 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.dropdown_0a53 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.label-b397 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.complex-13e6 {
  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;
}

.complex-13e6:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.complex-13e6.middle_f14d {
  border-left: 4px solid var(--primary-color);
}

.hot_bc15 {
  flex-shrink: 0;
}

.hot_bc15 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.tooltip_green_6b80 {
  flex: 1;
}

.tooltip_green_6b80 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.overlay-ccc6 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.solid-2d49,
.primary-8079,
.progress-narrow-79e7 {
  margin-bottom: 1.5rem;
}

.solid-2d49 h4,
.primary-8079 h4,
.progress-narrow-79e7 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.solid-2d49 ul,
.primary-8079 ul,
.progress-narrow-79e7 ul {
  list-style: none;
  padding: 0;
}

.solid-2d49 li,
.primary-8079 li,
.progress-narrow-79e7 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.solid-2d49 li:before,
.primary-8079 li:before,
.progress-narrow-79e7 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.dynamic_1463 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.dynamic_1463 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;
}

.dynamic_1463 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.button_de6f { margin: 2rem 0; }
.tertiary_ed4b { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.tertiary_ed4b h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.text-hard-bbd7 p { margin-bottom: 1rem; line-height: 1.7; }
.text-hard-bbd7 strong { color: var(--text-primary); }
.text-hard-bbd7 ul { list-style: none; padding-left: 0; }
.text-hard-bbd7 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.text-hard-bbd7 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.accent-5e9f { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.bottom-5927 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.bottom-5927:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.element_first_f713 { font-size: 3rem; margin-bottom: 1rem; }
.bottom-5927 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.bottom-5927 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.hovered-be1c { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.hovered-be1c span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.medium_baa8 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.section_right_e933 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.gallery_down_6bf4 { text-align: center; }
.slow-fdf6 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.green-6fb7 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.up-d245 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.shade-clean-f254 { margin: 2rem 0; }
.gas-7ae8 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.gas-7ae8 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.gas-7ae8 p, .gas-7ae8 ul { line-height: 1.7; }
.gas-7ae8 ul { list-style: none; padding-left: 0; }
.gas-7ae8 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.gas-7ae8 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.complex_639c { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.title-df72 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.accent_adcc { text-align: center; }
.out_7887 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.image-dark-85dc { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.pagination-prev-590b { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.north_d8cb { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.layout_2806 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.layout_2806:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.layout_2806 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.layout_2806 p, .layout_2806 ul { line-height: 1.7; }
.layout_2806 ul { list-style: none; padding-left: 0; }
.layout_2806 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.layout_2806 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 5082 */
.shadow-element-r3 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.0;
}
