/* ============================================
   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 */
.basic-b8f4 p,
.progress_0bf0,
.cold-9e24,
.black_4eff,
.gradient-last-e682,
.easy-e690,
.text-994f,
.lite_4782 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.alert-096c {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.alert-096c > *,
.grid_c313,
.basic-b8f4,
.table-lite-9ae5 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .alert-096c {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .alert-096c {
    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 === */
.small_9da0 {
  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 */
.small_9da0.medium_f601 {
  box-shadow: var(--shadow-md);
}

.large_ded1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.active_f9fc img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.label-solid-9517 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.sort-aa07 {
  display: none;
}

/* Hide mobile actions on desktop */
.pro-9e7e {
  display: none;
}

.fixed_f73a a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.fixed_f73a a:hover,
.fixed_f73a a.fn-active-ef76 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.modal_purple_e21c {
  margin-left: 1rem;
}

.dark_cc21 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.pattern_a693,
.bottom-ae40 {
  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;
}

.pattern_a693 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.pattern_a693: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;
}

.bottom-ae40 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.bottom-ae40: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;
}

.pattern_a693 svg,
.bottom-ae40 svg {
  flex-shrink: 0;
}

.column-f1d3 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.filter-purple-7259 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.filter-purple-7259::before,
.filter-purple-7259::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.filter-purple-7259::before {
  top: -7px;
}

.filter-purple-7259::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.under_8d40 {
  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 === */
.form-inner-9810 {
  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);
}

.detail_solid_be6a {
  margin: 0 0 2rem;
  text-align: center;
}

.full-911a {
  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;
}

.full-911a:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.hidden-498a {
  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);
}

.hidden-498a strong {
  color: var(--primary-color);
  font-weight: 700;
}

.popup-hot-9847 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.section_solid_fdfd {
  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;
}

.section_solid_fdfd:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.title_15c5 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.out_2db5 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.background_west_e170 {
  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);
}

.background_west_e170 .sort_rough_fba5 {
  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;
}

.background_west_e170 .sort_rough_fba5 svg {
  flex-shrink: 0;
}

.background_west_e170 .carousel-light-5fbd {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.background_west_e170 .carousel-light-5fbd: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);
}

.background_west_e170 .section-paper-775b {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.background_west_e170 .section-paper-775b: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) {
  .form-inner-9810 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .full-911a {
    max-width: 100%;
  }

  .popup-hot-9847 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .section_solid_fdfd {
    padding: 1rem;
  }

  .title_15c5 {
    font-size: 1.5rem;
  }

  .out_2db5 {
    font-size: 0.75rem;
  }

  .hidden-498a {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .background_west_e170 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .background_west_e170 .sort_rough_fba5 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .popup-hot-9847 {
    grid-template-columns: 1fr;
  }
}

.dropdown_e828 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hard-6171 {
  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 === */
.secondary-887c {
  margin-bottom: 2.5rem;
}

.accordion_d20c {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.dropdown_e828 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.label_2ceb {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.west-5a06 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.element-in-7005 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.gold-443d {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.hard-91dc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.menu_34f5 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.purple-167a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.purple-167a svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.avatar-900f {
  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);
}

.current_720c {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.next_a7c9 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hard_b3f8 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.paper-dbcd {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.tabs-a9f7 {
  display: grid;
  gap: 1rem;
}

.preview-ea91 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.hard_f66c {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.warm-97d3 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.slow_58c0 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.hot_ccf9 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.carousel_plasma_9117 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.carousel_plasma_9117 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.progress_0bf0 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.container_2926 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.east-45d0 {
  display: grid;
  gap: 2rem;
}

.sidebar_dbb7 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.west-5a06 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.label_2ceb {
  flex: 1;
}

.gold-443d {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.gold-443d a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.purple_0cde {
  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;
}

.hard-91dc {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.thumbnail-0338 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.thumbnail-0338 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.dynamic-2397 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.dynamic-2397 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.widget_d46d {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.widget_d46d strong {
  display: block;
  margin-bottom: 0.75rem;
}

.widget_d46d ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.widget_d46d li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.background-basic-f2fc {
  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 === */
.pagination-71ba {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.wood-5bf2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.solid-1b28 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.narrow-c6ba h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.narrow-c6ba ol {
  list-style: none;
  counter-reset: toc-counter;
}

.narrow-c6ba ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.narrow-c6ba 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;
}

.narrow-c6ba ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.narrow-c6ba ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.basic-b8f4 {
  padding: 3rem 0 5rem;
}

.table-lite-9ae5 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.table-lite-9ae5.rough_d3c2 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.cold-9e24 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.advanced-b709 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.item_8208 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.item_8208 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.content_1e67 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.over-1723 {
  text-align: center;
}

.dim_214d {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.inner_5389 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.popup_focused_71aa {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.easy-e690 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.black_4eff {
  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;
}

.black_4eff * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.black_4eff:hover {
  box-shadow: var(--shadow-lg);
}

.black_4eff.carousel_wide_9190 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.black_4eff h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.black_4eff ul {
  margin: 1rem 0;
}

.black_4eff li {
  margin-bottom: 0.75rem;
}

.purple-de70 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.tertiary_huge_4e79 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.tertiary_huge_4e79 a {
  font-weight: 600;
}

/* === Data Tables === */
.active-fc22 {
  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-fc22 table {
  width: 100%;
  min-width: 600px;
}

.active-fc22 thead {
  background-color: var(--primary-color);
  color: white;
}

.active-fc22 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.active-fc22 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.active-fc22 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.active-fc22 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.image_3d4e {
  list-style: none;
  margin: 1.5rem 0;
}

.image_3d4e li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.image_3d4e li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.notice_16bd::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-ef76::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 === */
.alert_6cb7 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.modal_5562 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.modal_5562 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.modal_5562 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.modal_5562 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.alert_6cb7 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.text-994f {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.text-994f::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.top-58c2 {
  position: relative;
  margin-bottom: 3rem;
}

.action-2769 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.action-2769 .stale_270a {
  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;
}

.tooltip-fe6b {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.tooltip-fe6b h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.tooltip-fe6b ul {
  margin: 1rem 0;
}

.tooltip-fe6b li {
  margin-bottom: 0.75rem;
}

.widget-hot-d408 {
  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 === */
.hero-cac3 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.hero-cac3 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.wide-9c64 {
  list-style: none;
  margin: 1.5rem 0;
}

.wide-9c64 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.wide-9c64 a {
  font-weight: 600;
}

.box-wide-bc17 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.lite_4782 {
  margin: 2.5rem 0;
}

.shadow-417c {
  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;
}

.shadow-417c:hover {
  box-shadow: var(--shadow-lg);
}

.shadow-417c.notice_ee3b {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.photo-cc09 {
  flex-shrink: 0;
}

.photo-cc09 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);
}

.up_ae93 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.alert-931d,
.mask_54b6,
.icon-5aab {
  width: 100%;
  margin: 1.5rem 0;
}

.texture_28c6 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.texture_28c6 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.hover_f2d8 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.hover_f2d8 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.panel-01d7 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.panel-01d7 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.shadow-pressed-cc84 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.shadow_next_1a6d {
  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;
}

.shadow_next_1a6d:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.shadow_next_1a6d.slider-wide-d7a4 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.shadow_next_1a6d .info_d9ae {
  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;
}

.shadow_next_1a6d h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.pattern_f38d {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.module-db0f {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.module-db0f label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.sort_4f42 {
  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 === */
.sort_rough_fba5 {
  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;
}

.carousel-light-5fbd {
  background-color: var(--primary-color);
  color: white;
}

.carousel-light-5fbd:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.section-paper-775b {
  background-color: var(--text-secondary);
  color: white;
}

.section-paper-775b:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.widget_49cd {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.widget_49cd:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.list-9fd1 {
  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;
}

.list-9fd1:hover {
  background-color: var(--primary-dark);
}

.picture_c452 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.orange_6793 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.pink-145c {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.dropdown-0d69 {
  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 === */
.thumbnail-505d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.large-cd12 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.large-cd12 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.paragraph-3e99 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.caption_8578 {
  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;
}

.frame_d1b9 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.avatar-liquid-1303 {
  list-style: none;
  counter-reset: rank-counter;
}

.avatar-liquid-1303 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.avatar-liquid-1303 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;
}

.alert-0635 {
  list-style: none;
}

.alert-0635 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.slow_8761 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.outline_south_d62a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.outline_south_d62a .short_0791 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.outline_south_d62a .message_d45b {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.media_bottom_c26e {
  margin-top: 3rem;
}

.content_white_e99b {
  width: 100%;
}

.notification-down-2446 {
  background-color: #fef3c7;
}

.liquid-0341 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.down-d969 {
  margin: 3rem 0;
}

.background_dynamic_95c1 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.search_3f75 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.search_3f75:hover {
  box-shadow: var(--shadow-lg);
}

.search_3f75.short-9fb8 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.message-warm-e79f {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero_10d4 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.hero_10d4 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.down-6ab6 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.search_3f75 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.info_3dd5 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.new-4407 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.detail_1c67 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.tabs_gold_99e1 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.dark_ba5a {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.hover_right_12e7 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.main_56a5 {
  max-width: 900px;
  margin: 0 auto;
}

.breadcrumb-copper-d333 {
  margin: 2rem 0;
}

.row-4f66 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.row-4f66 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.row-4f66 summary::-webkit-details-marker {
  display: none;
}

.row-4f66 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.white-ba90 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.row-4f66[open] .white-ba90 {
  transform: rotate(45deg);
}

.outer-9b9d {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.outer-9b9d p:last-child {
  margin-bottom: 0;
}

.text-cool-641b {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.detail_dca6 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.aside_solid_12b4 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.aside_solid_12b4 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.aside_solid_12b4 .sort_rough_fba5 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.large-85a6 {
  max-width: 900px;
  margin: 0 auto;
}

.dim-4bca {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.secondary_dirty_8d10 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.secondary_dirty_8d10.fn-success-ef76 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.frame-c10d {
  font-size: 3rem;
  line-height: 1;
}

.gallery-lite-d999 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.card_mini_823d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.cold-7ca2,
.west-cc17 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.cold-7ca2 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.west-cc17 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.nav-a294,
.first_606c {
  margin: 1.5rem 0;
}

.nav-a294 li,
.first_606c li {
  margin-bottom: 1rem;
}

.paper_29d7 {
  margin: 3rem 0;
}

.smooth-250e {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.smooth-250e h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.smooth-250e ol {
  margin: 1rem 0;
}

.smooth-250e li {
  margin-bottom: 0.75rem;
}

.link-80df {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.menu_fast_e05e {
  margin: 2rem 0;
}

.grid_8398 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.heading-da93 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.link-c367 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.panel-easy-678d {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.main_5c93 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.inner_8dfd {
  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;
}

.inner_8dfd img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.element-in-7005 {
  flex: 1;
}

.element-in-7005 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.carousel_5d3d {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.backdrop_3d2a p {
  margin-bottom: 1rem;
}

.column-a042 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.caption-hard-72de {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.pagination-07f7 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.pagination-07f7 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.section_prev_9b75 h3 {
  margin-bottom: 1.5rem;
}

.header-warm-9a79 {
  display: grid;
  gap: 2rem;
}

.sidebar-e176 {
  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;
}

.sidebar-e176 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.sidebar-e176 h4 {
  margin: 0 0 0.25rem;
}

.sidebar-e176 p {
  margin: 0;
  font-size: 0.9375rem;
}

.tag-first-ef41 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.highlight_under_9cb5 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.highlight_under_9cb5 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.highlight_under_9cb5 ul {
  margin: 1.5rem 0;
}

.highlight_under_9cb5 li {
  margin-bottom: 0.75rem;
}

.alert_copper_9f6e {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.link_yellow_4b7d {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.aside-a068 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.widget_c339 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.widget_c339 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.under_d5f4 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.under_d5f4 a {
  color: rgba(255, 255, 255, 0.8);
}

.component_over_7c90 {
  list-style: none;
}

.component_over_7c90 li {
  margin-bottom: 0.75rem;
}

.component_over_7c90 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.component_over_7c90 a:hover {
  color: white;
}

.heading_6d27 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.cold-30c7 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.primary_bronze_1d3f {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.menu-5443 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.left-2bea {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .alert-096c {
    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;
  }

  .right_2f76 {
    font-size: 1.5rem !important;
  }

  .accordion_d20c {
    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 */
  .black_4eff,
  .gradient-last-e682,
  .tooltip-fe6b,
  .up_ae93,
  .message-warm-e79f,
  .search_3f75,
  .outer-9b9d,
  .hidden-498a,
  .progress_0bf0,
  .cold-9e24 {
    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 */
  .dropdown_e828 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .label_2ceb {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .west-5a06 {
    flex-shrink: 0;
  }

  .element-in-7005 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .gold-443d,
  .hard-91dc {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hard-91dc {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .label-solid-9517 {
    display: none;
  }

  /* Show mobile actions */
  .pro-9e7e {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .table_f57a {
    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;
  }

  .table_f57a svg {
    flex-shrink: 0;
  }

  .table_f57a .old_c202 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .table_f57a .heading-simple-8229 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .mask-fc51 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .info-b566 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .table_f57a:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .sort-aa07 {
    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;
  }

  .sort-aa07.fn-active-ef76 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .sort-aa07 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .sort-aa07 li:last-child {
    border-bottom: none;
  }

  .sort-aa07 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .fixed_f73a {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background-color: var(--bg-primary);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-height: calc(100vh - 65px);
    overflow-y: auto;
    gap: 0;
  }

  .fixed_f73a li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .fixed_f73a li:last-child {
    border-bottom: none;
  }

  .fixed_f73a a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .modal_purple_e21c {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .dark_cc21 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .pattern_a693,
  .bottom-ae40 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .pattern_a693 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .bottom-ae40 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .fixed_f73a.fn-active-ef76 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .column-f1d3 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .small_9da0 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .large_ded1 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .under_8d40 {
    margin-top: 0;
  }

  /* Hero section */
  .under_8d40 {
    padding: 2rem 0 1.5rem;
  }

  .accordion_d20c {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .progress_0bf0 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .form-inner-9810 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .full-911a {
    max-width: 100%;
    border-radius: 8px;
  }

  .popup-hot-9847 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .section_solid_fdfd {
    padding: 1rem;
  }

  .title_15c5 {
    font-size: 1.5rem;
  }

  .out_2db5 {
    font-size: 0.75rem;
  }

  .hidden-498a {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .background_west_e170 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .background_west_e170 .sort_rough_fba5 {
    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 */
  .solid-1b28 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .shadow-417c {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .photo-cc09 {
    margin-bottom: 1rem;
  }

  /* Author */
  .sidebar_dbb7 {
    flex-direction: column;
  }

  .inner_8dfd {
    flex-direction: column;
  }

  /* Quotes */
  .message-warm-e79f {
    flex-direction: column;
  }

  /* Pros/Cons */
  .card_mini_823d {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .panel-easy-678d {
    flex-direction: column;
  }

  .panel-easy-678d .sort_rough_fba5 {
    width: 100%;
  }

  /* Version comparison */
  .shadow-pressed-cc84 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .thumbnail-505d {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .aside-a068 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .primary_bronze_1d3f {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .active-fc22,
  .mask_54b6,
  .summary_542d,
  .content_white_e99b,
  .alert-931d,
  .icon-5aab {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .active-fc22 table,
  .mask_54b6 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .sort_4f42 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .alert-096c {
    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;
  }

  .right_2f76 {
    font-size: 1.25rem !important;
  }

  .accordion_d20c {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .small_9da0 {
    position: fixed;
  }

  .large_ded1 {
    padding: 0.625rem 0;
  }

  .active_f9fc img {
    height: 26px;
  }

  .fixed_f73a {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .sort-aa07 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .table_f57a {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .table_f57a svg {
    width: 18px;
    height: 18px;
  }

  .table_f57a .old_c202 {
    font-size: 0.7rem;
  }

  .table_f57a .heading-simple-8229 {
    font-size: 0.65rem;
  }

  .pattern_a693,
  .bottom-ae40 {
    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, .alert-096c, .grid_c313, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .form-inner-9810 {
    padding: 1rem;
  }

  .popup-hot-9847 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .section_solid_fdfd {
    padding: 0.875rem;
  }

  .title_15c5 {
    font-size: 1.25rem;
  }

  .background_west_e170 .sort_rough_fba5 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .accordion_d20c {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .sort_rough_fba5 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .picture_c452 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .shadow-417c {
    padding: 1rem;
  }

  .photo-cc09 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .black_4eff,
  .background_center_f76c,
  .hidden_center_6f42,
  .gallery-e4a3 {
    padding: 1rem;
  }
}

@media print {
  .small_9da0,
  .pagination-71ba,
  .column-f1d3,
  .sort_rough_fba5,
  .link_yellow_4b7d {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .alert-096c {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.highlight_f2e4 {
  margin-bottom: 3rem;
  text-align: center;
}

.right_2f76 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.title-complex-b37b {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.footer-bottom-6347,
.simple-c9b5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.header-steel-5544 {
  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;
}

.header-steel-5544:hover {
  transform: translateY(-5px);
}

.header-steel-5544 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.header-steel-5544 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.next_4cf3 {
  margin: 3rem 0;
}

.container_699b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.simple_9125 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.simple_9125:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.tooltip-current-afa7 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.secondary-left-d3f9 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.sidebar-ff04 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.stale-b7aa {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.text_middle_c50f {
  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;
}

.text_middle_c50f:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.text_middle_c50f.thumbnail-ced3 {
  border-left: 4px solid var(--primary-color);
}

.warm-df41 {
  flex-shrink: 0;
}

.warm-df41 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.pro_ebdb {
  flex: 1;
}

.pro_ebdb h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.up-b91b {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.inner-7936,
.footer_f1c1,
.caption-c916 {
  margin-bottom: 1.5rem;
}

.inner-7936 h4,
.footer_f1c1 h4,
.caption-c916 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.inner-7936 ul,
.footer_f1c1 ul,
.caption-c916 ul {
  list-style: none;
  padding: 0;
}

.inner-7936 li,
.footer_f1c1 li,
.caption-c916 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.inner-7936 li:before,
.footer_f1c1 li:before,
.caption-c916 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.chip-white-00bf {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.chip-white-00bf 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;
}

.chip-white-00bf a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.slow-f791 { margin: 2rem 0; }
.center-8691 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.center-8691 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.video_soft_3d91 p { margin-bottom: 1rem; line-height: 1.7; }
.video_soft_3d91 strong { color: var(--text-primary); }
.video_soft_3d91 ul { list-style: none; padding-left: 0; }
.video_soft_3d91 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.video_soft_3d91 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.element-7f22 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.bronze-e45c { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.bronze-e45c:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.sort-bdcc { font-size: 3rem; margin-bottom: 1rem; }
.bronze-e45c h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.bronze-e45c p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.basic-aadf { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.basic-aadf span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.lite-87a8 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.secondary-tiny-6e56 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.fresh-ddca { text-align: center; }
.message-9e5b { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.banner_old_fe4a { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.black-1ff0 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.picture_hard_5f64 { margin: 2rem 0; }
.plasma_621b { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.plasma_621b h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.plasma_621b p, .plasma_621b ul { line-height: 1.7; }
.plasma_621b ul { list-style: none; padding-left: 0; }
.plasma_621b ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.plasma_621b ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.mask_fixed_bb36 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.hover_12e4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.iron-9ad9 { text-align: center; }
.fixed-5013 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.fixed_bd6e { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.nav_4ef9 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.button_old_2b41 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.border-east-35c9 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.border-east-35c9:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.border-east-35c9 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.border-east-35c9 p, .border-east-35c9 ul { line-height: 1.7; }
.border-east-35c9 ul { list-style: none; padding-left: 0; }
.border-east-35c9 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.border-east-35c9 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: d301 */
.widget-item-m3 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.1;
}
