/* ============================================
   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 */
.in_24fe p,
.warm_8b68,
.article_340a,
.message-north-3e43,
.iron_2cb2,
.tooltip-fad4,
.message_stale_889f,
.label_dynamic_58c2 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.hidden_a6eb {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.hidden_a6eb > *,
.frame_action_9050,
.in_24fe,
.blue_8d48 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .hidden_a6eb {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .hidden_a6eb {
    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 === */
.highlight_5b6f {
  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 */
.highlight_5b6f.prev_295f {
  box-shadow: var(--shadow-md);
}

.article-7846 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.frame_e7b5 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.popup-4a10 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.soft-0829 {
  display: none;
}

/* Hide mobile actions on desktop */
.button_simple_4441 {
  display: none;
}

.tooltip_first_eb43 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.tooltip_first_eb43 a:hover,
.tooltip_first_eb43 a.fn-active-4162 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.hero-stone-3b31 {
  margin-left: 1rem;
}

.pagination_b499 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.smooth-7b95,
.north_2dae {
  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;
}

.smooth-7b95 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.smooth-7b95: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;
}

.north_2dae {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.north_2dae: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;
}

.smooth-7b95 svg,
.north_2dae svg {
  flex-shrink: 0;
}

.pressed-a515 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.background-c74e {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.background-c74e::before,
.background-c74e::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.background-c74e::before {
  top: -7px;
}

.background-c74e::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.hero-lower-a376 {
  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 === */
.preview_small_6c01 {
  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);
}

.column_over_2334 {
  margin: 0 0 2rem;
  text-align: center;
}

.green_8f17 {
  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;
}

.green_8f17:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.texture_simple_c8d1 {
  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);
}

.texture_simple_c8d1 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.button_simple_4578 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.smooth-a315 {
  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;
}

.smooth-a315:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.detail_huge_1b44 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.list_f523 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.outer-4f86 {
  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);
}

.outer-4f86 .prev-f2ae {
  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;
}

.outer-4f86 .prev-f2ae svg {
  flex-shrink: 0;
}

.outer-4f86 .full_9011 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.outer-4f86 .full_9011: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);
}

.outer-4f86 .background-paper-f1f3 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.outer-4f86 .background-paper-f1f3: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) {
  .preview_small_6c01 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .green_8f17 {
    max-width: 100%;
  }

  .button_simple_4578 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .smooth-a315 {
    padding: 1rem;
  }

  .detail_huge_1b44 {
    font-size: 1.5rem;
  }

  .list_f523 {
    font-size: 0.75rem;
  }

  .texture_simple_c8d1 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .outer-4f86 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .outer-4f86 .prev-f2ae {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .button_simple_4578 {
    grid-template-columns: 1fr;
  }
}

.fast_9357 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.active-fluid-f93d {
  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 === */
.link_static_9eb9 {
  margin-bottom: 2.5rem;
}

.left-6e56 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.fast_9357 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.soft_7ca1 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-83c8 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.light-60b8 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.search-087f {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.accent_tiny_0ea3 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.header_7fd8 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.avatar-c3c3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.avatar-c3c3 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.yellow-af90 {
  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);
}

.heading_0334 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.simple-f6de {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.shadow_e36b {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.label-099d {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.card-stale-5ab6 {
  display: grid;
  gap: 1rem;
}

.layout-right-5abd {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.detail-6394 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.backdrop-8957 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.alert-thick-b9e4 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.layout-next-1cc8 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.brown_b6d7 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.brown_b6d7 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.warm_8b68 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.aside-light-44bf {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.mask-7817 {
  display: grid;
  gap: 2rem;
}

.item-cool-09c6 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.top-83c8 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.soft_7ca1 {
  flex: 1;
}

.search-087f {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.search-087f a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.rough_c358 {
  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;
}

.accent_tiny_0ea3 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.content-dim-1fe1 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.content-dim-1fe1 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.rough_7d6e {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.rough_7d6e a {
  font-size: 0.875rem;
  font-weight: 500;
}

.photo-c4c3 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.photo-c4c3 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.photo-c4c3 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.photo-c4c3 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.main_fde2 {
  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 === */
.module_hovered_a6a0 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.solid_3501 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.thumbnail_a5fb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.fixed_f621 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.fixed_f621 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.fixed_f621 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.fixed_f621 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;
}

.fixed_f621 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.fixed_f621 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.in_24fe {
  padding: 3rem 0 5rem;
}

.blue_8d48 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.blue_8d48.box_liquid_38f7 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.article_340a {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.content-df10 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.copper_f2c1 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.copper_f2c1 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.caption_4c64 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.next-60e1 {
  text-align: center;
}

.status_down_c347 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.component-14ea {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.modal_e928 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.tooltip-fad4 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.message-north-3e43 {
  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;
}

.message-north-3e43 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.message-north-3e43:hover {
  box-shadow: var(--shadow-lg);
}

.message-north-3e43.active-medium-6ee9 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.message-north-3e43 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.message-north-3e43 ul {
  margin: 1rem 0;
}

.message-north-3e43 li {
  margin-bottom: 0.75rem;
}

.lower-53b5 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.item-a682 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.item-a682 a {
  font-weight: 600;
}

/* === Data Tables === */
.search-691c {
  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;
}

.search-691c table {
  width: 100%;
  min-width: 600px;
}

.search-691c thead {
  background-color: var(--primary-color);
  color: white;
}

.search-691c th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.search-691c td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.search-691c tbody tr:hover {
  background-color: var(--bg-secondary);
}

.search-691c tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.secondary_thick_55c5 {
  list-style: none;
  margin: 1.5rem 0;
}

.secondary_thick_55c5 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.secondary_thick_55c5 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.full_a72b::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-4162::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 === */
.overlay_dcb6 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.main_df35 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.main_df35 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.main_df35 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.main_df35 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.overlay_dcb6 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.message_stale_889f {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.message_stale_889f::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.surface-fluid-0102 {
  position: relative;
  margin-bottom: 3rem;
}

.warm_d312 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.warm_d312 .iron-7f63 {
  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;
}

.gas-3ff7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.gas-3ff7 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.gas-3ff7 ul {
  margin: 1rem 0;
}

.gas-3ff7 li {
  margin-bottom: 0.75rem;
}

.secondary_red_6a9b {
  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 === */
.banner_b31f {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.banner_b31f h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.message-blue-bb43 {
  list-style: none;
  margin: 1.5rem 0;
}

.message-blue-bb43 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.message-blue-bb43 a {
  font-weight: 600;
}

.feature-9c87 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.label_dynamic_58c2 {
  margin: 2.5rem 0;
}

.caption_803e {
  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;
}

.caption_803e:hover {
  box-shadow: var(--shadow-lg);
}

.caption_803e.focused-e569 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.image-stone-a94c {
  flex-shrink: 0;
}

.image-stone-a94c 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);
}

.black-c843 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.hero-soft-ed13,
.tertiary-cba6,
.glass-50ca {
  width: 100%;
  margin: 1.5rem 0;
}

.tiny-4707 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.tiny-4707 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.banner-d8e9 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.banner-d8e9 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.hero_4a9c {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.hero_4a9c strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.hard_0b92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.icon_2791 {
  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;
}

.icon_2791:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.icon_2791.chip_prev_9056 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.icon_2791 .short_375f {
  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;
}

.icon_2791 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.text_260b {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.hidden_yellow_1d5b {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.hidden_yellow_1d5b label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.avatar-995a {
  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 === */
.prev-f2ae {
  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;
}

.full_9011 {
  background-color: var(--primary-color);
  color: white;
}

.full_9011:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.background-paper-f1f3 {
  background-color: var(--text-secondary);
  color: white;
}

.background-paper-f1f3:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.texture-5163 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.texture-5163:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.fluid_de83 {
  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;
}

.fluid_de83:hover {
  background-color: var(--primary-dark);
}

.popup-27ca {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.black-f105 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.sort-219f {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.chip-7c71 {
  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 === */
.focus-over-96fa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.wood_48fd {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.wood_48fd h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.breadcrumb_fe88 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.box-7173 {
  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;
}

.notice_f0b9 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.lite_8b49 {
  list-style: none;
  counter-reset: rank-counter;
}

.lite_8b49 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.lite_8b49 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;
}

.light-03bf {
  list-style: none;
}

.light-03bf li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.dropdown-slow-46f1 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.status-wide-dbd9 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.status-wide-dbd9 .fast-587e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.status-wide-dbd9 .center_5690 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.short-7255 {
  margin-top: 3rem;
}

.dim-ed72 {
  width: 100%;
}

.summary-stone-2805 {
  background-color: #fef3c7;
}

.column-52e5 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.active-46e7 {
  margin: 3rem 0;
}

.title-rough-a838 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.motion_6a49 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.motion_6a49:hover {
  box-shadow: var(--shadow-lg);
}

.motion_6a49.center_fe52 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.full_40a9 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.shadow_large_9abc strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.shadow_large_9abc span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.section_24cd {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.motion_6a49 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.middle_f4ba {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.over_a100 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.right_bd2e {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.article_15ab {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.cool-4a62 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.slider-small-9464 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.avatar_hard_ebe1 {
  max-width: 900px;
  margin: 0 auto;
}

.purple-9a6c {
  margin: 2rem 0;
}

.description_mini_955a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.description_mini_955a summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.description_mini_955a summary::-webkit-details-marker {
  display: none;
}

.description_mini_955a summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.pagination_e9af {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.description_mini_955a[open] .pagination_e9af {
  transform: rotate(45deg);
}

.title_hard_7bb4 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.title_hard_7bb4 p:last-child {
  margin-bottom: 0;
}

.icon-2a91 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.block_cool_7c46 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.short_1dde {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.short_1dde p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.short_1dde .prev-f2ae {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.avatar-6bb6 {
  max-width: 900px;
  margin: 0 auto;
}

.dim_6300 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.top-22d0 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.top-22d0.fn-success-4162 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.element-first-6898 {
  font-size: 3rem;
  line-height: 1;
}

.under_917a h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.dirty_5d8c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.summary_under_9ea5,
.mask-4786 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.summary_under_9ea5 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.mask-4786 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.easy-7230,
.heading_be40 {
  margin: 1.5rem 0;
}

.easy-7230 li,
.heading_be40 li {
  margin-bottom: 1rem;
}

.notification_f339 {
  margin: 3rem 0;
}

.video-212f {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.video-212f h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.video-212f ol {
  margin: 1rem 0;
}

.video-212f li {
  margin-bottom: 0.75rem;
}

.gallery-d7ef {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.element-1936 {
  margin: 2rem 0;
}

.shade-silver-f40e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.dropdown-mini-7ffc {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.text_8451 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.action_e197 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.gradient-f250 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.backdrop-easy-8d87 {
  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;
}

.backdrop-easy-8d87 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.light-60b8 {
  flex: 1;
}

.light-60b8 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.element_south_5c04 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.input-3ee6 p {
  margin-bottom: 1rem;
}

.overlay_6d97 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.cool_cf08 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.wide_86dd {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.wide_86dd a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.component_ca6e h3 {
  margin-bottom: 1.5rem;
}

.first_0e9d {
  display: grid;
  gap: 2rem;
}

.carousel-wood-5c35 {
  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;
}

.carousel-wood-5c35 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.carousel-wood-5c35 h4 {
  margin: 0 0 0.25rem;
}

.carousel-wood-5c35 p {
  margin: 0;
  font-size: 0.9375rem;
}

.text-current-2717 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.shade-left-a844 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.shade-left-a844 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.shade-left-a844 ul {
  margin: 1.5rem 0;
}

.shade-left-a844 li {
  margin-bottom: 0.75rem;
}

.thick-fb9b {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.detail_ac47 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.frame_cd91 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.solid_5802 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.solid_5802 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.thick_9880 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.thick_9880 a {
  color: rgba(255, 255, 255, 0.8);
}

.solid-dec2 {
  list-style: none;
}

.solid-dec2 li {
  margin-bottom: 0.75rem;
}

.solid-dec2 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.solid-dec2 a:hover {
  color: white;
}

.slider_163a {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.tertiary_left_e887 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.bright-2ff8 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.bright_e9e6 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.box_south_80cb {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .hidden_a6eb {
    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;
  }

  .label-easy-49b9 {
    font-size: 1.5rem !important;
  }

  .left-6e56 {
    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 */
  .message-north-3e43,
  .iron_2cb2,
  .gas-3ff7,
  .black-c843,
  .full_40a9,
  .motion_6a49,
  .title_hard_7bb4,
  .texture_simple_c8d1,
  .warm_8b68,
  .article_340a {
    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 */
  .fast_9357 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .soft_7ca1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .top-83c8 {
    flex-shrink: 0;
  }

  .light-60b8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .search-087f,
  .accent_tiny_0ea3 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .accent_tiny_0ea3 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .popup-4a10 {
    display: none;
  }

  /* Show mobile actions */
  .button_simple_4441 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .feature_4ce2 {
    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;
  }

  .feature_4ce2 svg {
    flex-shrink: 0;
  }

  .feature_4ce2 .dim_cec4 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .feature_4ce2 .bottom_e839 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .selected-79c6 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .silver-cc61 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .feature_4ce2:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .soft-0829 {
    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;
  }

  .soft-0829.fn-active-4162 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .soft-0829 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .soft-0829 li:last-child {
    border-bottom: none;
  }

  .soft-0829 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .tooltip_first_eb43 {
    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;
  }

  .tooltip_first_eb43 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .tooltip_first_eb43 li:last-child {
    border-bottom: none;
  }

  .tooltip_first_eb43 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .hero-stone-3b31 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .pagination_b499 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .smooth-7b95,
  .north_2dae {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .smooth-7b95 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .north_2dae {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .tooltip_first_eb43.fn-active-4162 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .pressed-a515 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .highlight_5b6f {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .article-7846 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .hero-lower-a376 {
    margin-top: 0;
  }

  /* Hero section */
  .hero-lower-a376 {
    padding: 2rem 0 1.5rem;
  }

  .left-6e56 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .warm_8b68 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .preview_small_6c01 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .green_8f17 {
    max-width: 100%;
    border-radius: 8px;
  }

  .button_simple_4578 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .smooth-a315 {
    padding: 1rem;
  }

  .detail_huge_1b44 {
    font-size: 1.5rem;
  }

  .list_f523 {
    font-size: 0.75rem;
  }

  .texture_simple_c8d1 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .outer-4f86 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .outer-4f86 .prev-f2ae {
    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 */
  .thumbnail_a5fb {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .caption_803e {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .image-stone-a94c {
    margin-bottom: 1rem;
  }

  /* Author */
  .item-cool-09c6 {
    flex-direction: column;
  }

  .backdrop-easy-8d87 {
    flex-direction: column;
  }

  /* Quotes */
  .full_40a9 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .dirty_5d8c {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .action_e197 {
    flex-direction: column;
  }

  .action_e197 .prev-f2ae {
    width: 100%;
  }

  /* Version comparison */
  .hard_0b92 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .focus-over-96fa {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .frame_cd91 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .bright-2ff8 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .search-691c,
  .tertiary-cba6,
  .panel_middle_0e12,
  .dim-ed72,
  .hero-soft-ed13,
  .glass-50ca {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .search-691c table,
  .tertiary-cba6 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .avatar-995a {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hidden_a6eb {
    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;
  }

  .label-easy-49b9 {
    font-size: 1.25rem !important;
  }

  .left-6e56 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .highlight_5b6f {
    position: fixed;
  }

  .article-7846 {
    padding: 0.625rem 0;
  }

  .frame_e7b5 img {
    height: 26px;
  }

  .tooltip_first_eb43 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .soft-0829 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .feature_4ce2 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .feature_4ce2 svg {
    width: 18px;
    height: 18px;
  }

  .feature_4ce2 .dim_cec4 {
    font-size: 0.7rem;
  }

  .feature_4ce2 .bottom_e839 {
    font-size: 0.65rem;
  }

  .smooth-7b95,
  .north_2dae {
    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, .hidden_a6eb, .frame_action_9050, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .preview_small_6c01 {
    padding: 1rem;
  }

  .button_simple_4578 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .smooth-a315 {
    padding: 0.875rem;
  }

  .detail_huge_1b44 {
    font-size: 1.25rem;
  }

  .outer-4f86 .prev-f2ae {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .left-6e56 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .prev-f2ae {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .popup-27ca {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .caption_803e {
    padding: 1rem;
  }

  .image-stone-a94c span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .message-north-3e43,
  .icon-large-c1af,
  .gradient_27ba,
  .secondary_4d78 {
    padding: 1rem;
  }
}

@media print {
  .highlight_5b6f,
  .module_hovered_a6a0,
  .pressed-a515,
  .prev-f2ae,
  .detail_ac47 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .hidden_a6eb {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.south_dddb {
  margin-bottom: 3rem;
  text-align: center;
}

.label-easy-49b9 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.focus-lite-a65c {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.huge-57bd,
.popup_north_7ef6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.progress_current_d8e4 {
  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;
}

.progress_current_d8e4:hover {
  transform: translateY(-5px);
}

.progress_current_d8e4 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.progress_current_d8e4 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.menu_5f5e {
  margin: 3rem 0;
}

.notice-29d2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.avatar-north-50b8 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.avatar-north-50b8:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.input_full_08f8 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.middle_b7e5 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.gold-8858 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.table-3078 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.popup_4733 {
  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;
}

.popup_4733:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.popup_4733.frame_0da6 {
  border-left: 4px solid var(--primary-color);
}

.overlay_pink_62f5 {
  flex-shrink: 0;
}

.overlay_pink_62f5 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.wrapper-14a0 {
  flex: 1;
}

.wrapper-14a0 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.simple_04a3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.glass_8f0a,
.image_new_5474,
.accent_60b2 {
  margin-bottom: 1.5rem;
}

.glass_8f0a h4,
.image_new_5474 h4,
.accent_60b2 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.glass_8f0a ul,
.image_new_5474 ul,
.accent_60b2 ul {
  list-style: none;
  padding: 0;
}

.glass_8f0a li,
.image_new_5474 li,
.accent_60b2 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.glass_8f0a li:before,
.image_new_5474 li:before,
.accent_60b2 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.middle_0da8 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.middle_0da8 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;
}

.middle_0da8 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.pagination-down-c9f3 { margin: 2rem 0; }
.content_f745 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.content_f745 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.overlay-inner-ab94 p { margin-bottom: 1rem; line-height: 1.7; }
.overlay-inner-ab94 strong { color: var(--text-primary); }
.overlay-inner-ab94 ul { list-style: none; padding-left: 0; }
.overlay-inner-ab94 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.overlay-inner-ab94 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.gas-4bf5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.sidebar-hot-662c { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.sidebar-hot-662c:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.detail_pink_3d3c { font-size: 3rem; margin-bottom: 1rem; }
.sidebar-hot-662c h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.sidebar-hot-662c p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.label_5ab4 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.label_5ab4 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.white_82bc { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.west_4e9c { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.accordion_first_aa20 { text-align: center; }
.fluid-61af { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.box-purple-828b { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.texture_bronze_c43a { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.paragraph-outer-7b15 { margin: 2rem 0; }
.last-95a0 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.last-95a0 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.last-95a0 p, .last-95a0 ul { line-height: 1.7; }
.last-95a0 ul { list-style: none; padding-left: 0; }
.last-95a0 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.last-95a0 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.green_1ce8 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.search-9d31 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.iron_acd6 { text-align: center; }
.east_5025 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.warm-3c4f { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.lite-dc9b { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.wide-7088 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.layout-soft-4fce { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.layout-soft-4fce:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.layout-soft-4fce h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.layout-soft-4fce p, .layout-soft-4fce ul { line-height: 1.7; }
.layout-soft-4fce ul { list-style: none; padding-left: 0; }
.layout-soft-4fce ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.layout-soft-4fce ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

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