/* ============================================
   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 */
.detail-light-dfe0 p,
.disabled-gas-b8d8,
.south_5a10,
.primary-9e7d,
.photo_iron_cf25,
.breadcrumb-soft-30c5,
.caption-tall-4d5e,
.lite-3e01 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.progress_blue_b275 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.progress_blue_b275 > *,
.feature_4f1a,
.detail-light-dfe0,
.backdrop-white-53bc {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .progress_blue_b275 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .progress_blue_b275 {
    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 === */
.full-1199 {
  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 */
.full-1199.tag-south-2883 {
  box-shadow: var(--shadow-md);
}

.next-43f5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.mini_b7c6 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.secondary_pro_6991 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.thumbnail-fa68 {
  display: none;
}

/* Hide mobile actions on desktop */
.carousel-34d3 {
  display: none;
}

.badge_1523 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.badge_1523 a:hover,
.badge_1523 a.fn-active-d493 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.cold_e1aa {
  margin-left: 1rem;
}

.item-out-fb45 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.large_a821,
.north_e60c {
  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;
}

.large_a821 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.large_a821: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_e60c {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.north_e60c: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;
}

.large_a821 svg,
.north_e60c svg {
  flex-shrink: 0;
}

.hover_f92d {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.thick-ce9c {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.thick-ce9c::before,
.thick-ce9c::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.thick-ce9c::before {
  top: -7px;
}

.thick-ce9c::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.article_wide_7acb {
  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 === */
.hovered_27c8 {
  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);
}

.short-cc17 {
  margin: 0 0 2rem;
  text-align: center;
}

.shadow_9f47 {
  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;
}

.shadow_9f47:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.item-over-309f {
  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);
}

.item-over-309f strong {
  color: var(--primary-color);
  font-weight: 700;
}

.smooth_6337 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.breadcrumb-b6a7 {
  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;
}

.breadcrumb-b6a7:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.wood_8031 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hard_4b92 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.notification_tiny_5e50 {
  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);
}

.notification_tiny_5e50 .surface-left-fa43 {
  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;
}

.notification_tiny_5e50 .surface-left-fa43 svg {
  flex-shrink: 0;
}

.notification_tiny_5e50 .filter-c637 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.notification_tiny_5e50 .filter-c637: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);
}

.notification_tiny_5e50 .row-e181 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.notification_tiny_5e50 .row-e181: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) {
  .hovered_27c8 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .shadow_9f47 {
    max-width: 100%;
  }

  .smooth_6337 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .breadcrumb-b6a7 {
    padding: 1rem;
  }

  .wood_8031 {
    font-size: 1.5rem;
  }

  .hard_4b92 {
    font-size: 0.75rem;
  }

  .item-over-309f {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .notification_tiny_5e50 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .notification_tiny_5e50 .surface-left-fa43 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .smooth_6337 {
    grid-template-columns: 1fr;
  }
}

.layout_2aa6 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.filter-c8bc {
  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 === */
.slider_02f5 {
  margin-bottom: 2.5rem;
}

.outline-41eb {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.layout_2aa6 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.light_4a79 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tiny_77e2 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.notice_current_af61 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.gas_4485 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.tiny-04eb {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.tooltip_steel_8eaf {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.frame-stone-8ae4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.frame-stone-8ae4 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.pressed-9cc4 {
  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);
}

.progress-soft-e0a6 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.accordion_next_192c {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.card_018c {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.popup-d3f9 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.active_dark_fe69 {
  display: grid;
  gap: 1rem;
}

.hovered-fa56 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.motion-8f8e {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.text-gas-fa22 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.old-72b2 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.popup-fast-098e {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.last-54a2 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.last-54a2 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.disabled-gas-b8d8 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.basic_cf3e {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.steel_a0ee {
  display: grid;
  gap: 2rem;
}

.fluid_4e3b {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.tiny_77e2 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.light_4a79 {
  flex: 1;
}

.gas_4485 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.gas_4485 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.chip_0cd7 {
  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;
}

.tiny-04eb {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.purple-d129 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.purple-d129 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.modal-dynamic-b024 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.modal-dynamic-b024 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.chip_5dd5 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.chip_5dd5 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.chip_5dd5 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.chip_5dd5 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.east_21d3 {
  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 === */
.action_a32c {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.upper-2d32 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.smooth_cc63 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.east_c368 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.east_c368 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.east_c368 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.east_c368 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;
}

.east_c368 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.east_c368 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.detail-light-dfe0 {
  padding: 3rem 0 5rem;
}

.backdrop-white-53bc {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.backdrop-white-53bc.widget-old-8b10 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.south_5a10 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.alert-tall-4f1d {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.main_lower_d835 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.main_lower_d835 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.summary-6fe2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.large-3323 {
  text-align: center;
}

.thick-636b {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hidden-full-f7ea {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.widget-2855 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.breadcrumb-soft-30c5 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.primary-9e7d {
  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;
}

.primary-9e7d * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.primary-9e7d:hover {
  box-shadow: var(--shadow-lg);
}

.primary-9e7d.copper_39e1 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.primary-9e7d h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.primary-9e7d ul {
  margin: 1rem 0;
}

.primary-9e7d li {
  margin-bottom: 0.75rem;
}

.pagination-270d {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.tertiary-solid-809a {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.tertiary-solid-809a a {
  font-weight: 600;
}

/* === Data Tables === */
.photo_iron_47ef {
  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;
}

.photo_iron_47ef table {
  width: 100%;
  min-width: 600px;
}

.photo_iron_47ef thead {
  background-color: var(--primary-color);
  color: white;
}

.photo_iron_47ef th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.photo_iron_47ef td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.photo_iron_47ef tbody tr:hover {
  background-color: var(--bg-secondary);
}

.photo_iron_47ef tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.popup-liquid-e23d {
  list-style: none;
  margin: 1.5rem 0;
}

.popup-liquid-e23d li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.popup-liquid-e23d li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.thumbnail-narrow-79b8::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-d493::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 === */
.thick_397a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.avatar-301e {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.avatar-301e img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.avatar-301e strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.avatar-301e span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.thick_397a blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.caption-tall-4d5e {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.caption-tall-4d5e::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.input_cool_a4db {
  position: relative;
  margin-bottom: 3rem;
}

.gold-060c {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.gold-060c .hover_yellow_2594 {
  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;
}

.narrow-9748 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.narrow-9748 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.narrow-9748 ul {
  margin: 1rem 0;
}

.narrow-9748 li {
  margin-bottom: 0.75rem;
}

.table_bronze_0ecf {
  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 === */
.feature_e7b1 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.feature_e7b1 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.slow_f615 {
  list-style: none;
  margin: 1.5rem 0;
}

.slow_f615 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.slow_f615 a {
  font-weight: 600;
}

.widget_5c4f {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.lite-3e01 {
  margin: 2.5rem 0;
}

.old_3599 {
  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;
}

.old_3599:hover {
  box-shadow: var(--shadow-lg);
}

.old_3599.picture-7c5d {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.box-down-b1f4 {
  flex-shrink: 0;
}

.box-down-b1f4 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);
}

.detail-56a9 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.panel_5ed4,
.alert-23b9,
.row_368a {
  width: 100%;
  margin: 1.5rem 0;
}

.module_5efe {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.module_5efe strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.lite_e9df {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.lite_e9df strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.smooth-3e3b {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.smooth-3e3b strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.tabs-af96 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.bottom_c92e {
  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;
}

.bottom_c92e:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.bottom_c92e.medium_3907 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.bottom_c92e .tooltip-next-790a {
  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;
}

.bottom_c92e h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.main_selected_94cd {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.form_a424 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.form_a424 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.icon_cd72 {
  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 === */
.surface-left-fa43 {
  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;
}

.filter-c637 {
  background-color: var(--primary-color);
  color: white;
}

.filter-c637:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.row-e181 {
  background-color: var(--text-secondary);
  color: white;
}

.row-e181:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.heading-f367 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.heading-f367:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.image_df50 {
  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;
}

.image_df50:hover {
  background-color: var(--primary-dark);
}

.thick-3909 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.pro_67c6 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.warm_8532 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.summary-cold-aefc {
  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 === */
.surface_smooth_5211 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.upper-8571 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.upper-8571 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.row-ebaf {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.wood_f679 {
  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;
}

.cold_8162 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.focus-6b86 {
  list-style: none;
  counter-reset: rank-counter;
}

.focus-6b86 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.focus-6b86 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;
}

.container_4bd4 {
  list-style: none;
}

.container_4bd4 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.backdrop_984d {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.stone-ecd8 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stone-ecd8 .avatar-black-809f {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.stone-ecd8 .hidden_9fd6 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hero-hot-e68f {
  margin-top: 3rem;
}

.link-prev-7a53 {
  width: 100%;
}

.footer_cold_a56e {
  background-color: #fef3c7;
}

.alert-8887 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.hover_blue_dbaf {
  margin: 3rem 0;
}

.feature_811e {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.widget-5a49 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.widget-5a49:hover {
  box-shadow: var(--shadow-lg);
}

.widget-5a49.orange-2b96 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.warm-5c5c {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.solid-ee91 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.solid-ee91 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.dropdown-2997 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.widget-5a49 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.under_7d02 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.selected-4552 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.action_32e8 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.section-soft-3bc0 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.motion-ad90 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.description_in_6532 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.section_tall_8606 {
  max-width: 900px;
  margin: 0 auto;
}

.purple_380a {
  margin: 2rem 0;
}

.paragraph-active-eddf {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.paragraph-active-eddf summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.paragraph-active-eddf summary::-webkit-details-marker {
  display: none;
}

.paragraph-active-eddf summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.item_white_03fa {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.paragraph-active-eddf[open] .item_white_03fa {
  transform: rotate(45deg);
}

.logo_pressed_4194 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.logo_pressed_4194 p:last-child {
  margin-bottom: 0;
}

.mini-5564 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.disabled_iron_2167 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.pro-fb57 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.pro-fb57 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.pro-fb57 .surface-left-fa43 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.large_70a9 {
  max-width: 900px;
  margin: 0 auto;
}

.overlay-middle-a51e {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.focus_5529 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.focus_5529.fn-success-d493 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.first_7841 {
  font-size: 3rem;
  line-height: 1;
}

.card-complex-fa33 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.tooltip_b594 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.filter-slow-07ec,
.list_2a13 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.filter-slow-07ec h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.list_2a13 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.row_fresh_c515,
.slider_glass_2933 {
  margin: 1.5rem 0;
}

.row_fresh_c515 li,
.slider_glass_2933 li {
  margin-bottom: 1rem;
}

.hard_ddea {
  margin: 3rem 0;
}

.row-c724 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.row-c724 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.row-c724 ol {
  margin: 1rem 0;
}

.row-c724 li {
  margin-bottom: 0.75rem;
}

.notification_a8ba {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.icon_8bbd {
  margin: 2rem 0;
}

.dirty_c8ec {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.nav_tall_bbe6 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.highlight-a06e {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.accordion-small-b0a2 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.active-853d {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.search-full-0488 {
  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;
}

.search-full-0488 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.notice_current_af61 {
  flex: 1;
}

.notice_current_af61 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.gradient_middle_4ab1 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.message-57ce p {
  margin-bottom: 1rem;
}

.north_9ac1 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.advanced_b701 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.dropdown_3f65 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.dropdown_3f65 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.outline_prev_9c58 h3 {
  margin-bottom: 1.5rem;
}

.current_870c {
  display: grid;
  gap: 2rem;
}

.short-5dd9 {
  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;
}

.short-5dd9 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.short-5dd9 h4 {
  margin: 0 0 0.25rem;
}

.short-5dd9 p {
  margin: 0;
  font-size: 0.9375rem;
}

.preview-c8d6 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.accent_7bfc {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.accent_7bfc h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.accent_7bfc ul {
  margin: 1.5rem 0;
}

.accent_7bfc li {
  margin-bottom: 0.75rem;
}

.gradient_left_b299 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.wrapper-top-85e6 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.tertiary-orange-b1a0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.element_pro_a424 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.element_pro_a424 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.list_4ba3 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.list_4ba3 a {
  color: rgba(255, 255, 255, 0.8);
}

.disabled_large_910b {
  list-style: none;
}

.disabled_large_910b li {
  margin-bottom: 0.75rem;
}

.disabled_large_910b a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.disabled_large_910b a:hover {
  color: white;
}

.sort-d2e1 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.lower-175a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.disabled_710d {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.backdrop_smooth_30b9 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.description_left_9384 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .progress_blue_b275 {
    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;
  }

  .block_2951 {
    font-size: 1.5rem !important;
  }

  .outline-41eb {
    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 */
  .primary-9e7d,
  .photo_iron_cf25,
  .narrow-9748,
  .detail-56a9,
  .warm-5c5c,
  .widget-5a49,
  .logo_pressed_4194,
  .item-over-309f,
  .disabled-gas-b8d8,
  .south_5a10 {
    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 */
  .layout_2aa6 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .light_4a79 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .tiny_77e2 {
    flex-shrink: 0;
  }

  .notice_current_af61 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .gas_4485,
  .tiny-04eb {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .tiny-04eb {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .secondary_pro_6991 {
    display: none;
  }

  /* Show mobile actions */
  .carousel-34d3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .shade_lite_6ed1 {
    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;
  }

  .shade_lite_6ed1 svg {
    flex-shrink: 0;
  }

  .shade_lite_6ed1 .old-645c {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .shade_lite_6ed1 .nav_60b5 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .solid-bd68 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .detail_575a {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .shade_lite_6ed1:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .thumbnail-fa68 {
    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;
  }

  .thumbnail-fa68.fn-active-d493 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .thumbnail-fa68 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .thumbnail-fa68 li:last-child {
    border-bottom: none;
  }

  .thumbnail-fa68 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .badge_1523 {
    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;
  }

  .badge_1523 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .badge_1523 li:last-child {
    border-bottom: none;
  }

  .badge_1523 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .cold_e1aa {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .item-out-fb45 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .large_a821,
  .north_e60c {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .large_a821 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .north_e60c {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .badge_1523.fn-active-d493 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hover_f92d {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .full-1199 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .next-43f5 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .article_wide_7acb {
    margin-top: 0;
  }

  /* Hero section */
  .article_wide_7acb {
    padding: 2rem 0 1.5rem;
  }

  .outline-41eb {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .disabled-gas-b8d8 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .hovered_27c8 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .shadow_9f47 {
    max-width: 100%;
    border-radius: 8px;
  }

  .smooth_6337 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .breadcrumb-b6a7 {
    padding: 1rem;
  }

  .wood_8031 {
    font-size: 1.5rem;
  }

  .hard_4b92 {
    font-size: 0.75rem;
  }

  .item-over-309f {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .notification_tiny_5e50 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .notification_tiny_5e50 .surface-left-fa43 {
    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 */
  .smooth_cc63 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .old_3599 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .box-down-b1f4 {
    margin-bottom: 1rem;
  }

  /* Author */
  .fluid_4e3b {
    flex-direction: column;
  }

  .search-full-0488 {
    flex-direction: column;
  }

  /* Quotes */
  .warm-5c5c {
    flex-direction: column;
  }

  /* Pros/Cons */
  .tooltip_b594 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .accordion-small-b0a2 {
    flex-direction: column;
  }

  .accordion-small-b0a2 .surface-left-fa43 {
    width: 100%;
  }

  /* Version comparison */
  .tabs-af96 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .surface_smooth_5211 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .tertiary-orange-b1a0 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .disabled_710d {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .photo_iron_47ef,
  .alert-23b9,
  .background_south_067c,
  .link-prev-7a53,
  .panel_5ed4,
  .row_368a {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .photo_iron_47ef table,
  .alert-23b9 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .icon_cd72 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .progress_blue_b275 {
    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;
  }

  .block_2951 {
    font-size: 1.25rem !important;
  }

  .outline-41eb {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .full-1199 {
    position: fixed;
  }

  .next-43f5 {
    padding: 0.625rem 0;
  }

  .mini_b7c6 img {
    height: 26px;
  }

  .badge_1523 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .thumbnail-fa68 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .shade_lite_6ed1 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .shade_lite_6ed1 svg {
    width: 18px;
    height: 18px;
  }

  .shade_lite_6ed1 .old-645c {
    font-size: 0.7rem;
  }

  .shade_lite_6ed1 .nav_60b5 {
    font-size: 0.65rem;
  }

  .large_a821,
  .north_e60c {
    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, .progress_blue_b275, .feature_4f1a, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .hovered_27c8 {
    padding: 1rem;
  }

  .smooth_6337 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .breadcrumb-b6a7 {
    padding: 0.875rem;
  }

  .wood_8031 {
    font-size: 1.25rem;
  }

  .notification_tiny_5e50 .surface-left-fa43 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .outline-41eb {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .surface-left-fa43 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .thick-3909 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .old_3599 {
    padding: 1rem;
  }

  .box-down-b1f4 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .primary-9e7d,
  .bronze_8a35,
  .fast-a15f,
  .inner_6d0e {
    padding: 1rem;
  }
}

@media print {
  .full-1199,
  .action_a32c,
  .hover_f92d,
  .surface-left-fa43,
  .wrapper-top-85e6 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .progress_blue_b275 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.menu_dynamic_96ad {
  margin-bottom: 3rem;
  text-align: center;
}

.block_2951 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero-547c {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.link-6edb,
.tag_hot_f9e1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.paragraph_8806 {
  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;
}

.paragraph_8806:hover {
  transform: translateY(-5px);
}

.paragraph_8806 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.paragraph_8806 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.fast-2703 {
  margin: 3rem 0;
}

.basic_c891 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.north-92f9 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.north-92f9:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.frame-bbe7 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.info_stone_8874 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.gas_a46c {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.notification-5116 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.module_a639 {
  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;
}

.module_a639:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.module_a639.alert-brown-0386 {
  border-left: 4px solid var(--primary-color);
}

.sort-action-22f4 {
  flex-shrink: 0;
}

.sort-action-22f4 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.thumbnail_544c {
  flex: 1;
}

.thumbnail_544c h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.wood_7ac2 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.shadow-f033,
.fast-042b,
.header_51f3 {
  margin-bottom: 1.5rem;
}

.shadow-f033 h4,
.fast-042b h4,
.header_51f3 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.shadow-f033 ul,
.fast-042b ul,
.header_51f3 ul {
  list-style: none;
  padding: 0;
}

.shadow-f033 li,
.fast-042b li,
.header_51f3 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.shadow-f033 li:before,
.fast-042b li:before,
.header_51f3 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.down-6586 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.down-6586 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;
}

.down-6586 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.blue_7e7c { margin: 2rem 0; }
.tooltip_black_0b51 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.tooltip_black_0b51 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.right_6435 p { margin-bottom: 1rem; line-height: 1.7; }
.right_6435 strong { color: var(--text-primary); }
.right_6435 ul { list-style: none; padding-left: 0; }
.right_6435 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.right_6435 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.heading-fresh-9c7c { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.sort-ae27 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.sort-ae27:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.current-0e9d { font-size: 3rem; margin-bottom: 1rem; }
.sort-ae27 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.sort-ae27 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.filter_action_19cb { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.filter_action_19cb span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.breadcrumb-south-f328 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.text-4161 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.component_fresh_0f85 { text-align: center; }
.west-9555 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.status-ca1f { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.primary_wood_b3e9 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.active_9fad { margin: 2rem 0; }
.carousel-1ff7 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.carousel-1ff7 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.carousel-1ff7 p, .carousel-1ff7 ul { line-height: 1.7; }
.carousel-1ff7 ul { list-style: none; padding-left: 0; }
.carousel-1ff7 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.carousel-1ff7 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.current-0b58 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.glass_a623 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.item_west_e9d0 { text-align: center; }
.current_35e8 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.card_9b71 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.caption-731f { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.widget_bec9 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.item-817e { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.item-817e:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.item-817e h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.item-817e p, .item-817e ul { line-height: 1.7; }
.item-817e ul { list-style: none; padding-left: 0; }
.item-817e ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.item-817e ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: c69d */
.promo-block-s5 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.3;
}
