/* ============================================
   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 */
.primary_upper_9fd1 p,
.north-e4b3,
.content_tall_5aff,
.tertiary-e661,
.detail_99be,
.gas-f68c,
.complex-41c9,
.label_b9c2 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.disabled_static_c43c {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.disabled_static_c43c > *,
.surface-selected-58c5,
.primary_upper_9fd1,
.steel_32f6 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .disabled_static_c43c {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .disabled_static_c43c {
    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 === */
.solid-bb45 {
  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 */
.solid-bb45.component-23de {
  box-shadow: var(--shadow-md);
}

.fast_1f8d {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.section-motion-34c7 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.label_51a2 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.menu-north-6457 {
  display: none;
}

/* Hide mobile actions on desktop */
.smooth-343b {
  display: none;
}

.hot_b061 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.hot_b061 a:hover,
.hot_b061 a.fn-active-bd5d {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.text_orange_6fb3 {
  margin-left: 1rem;
}

.tabs-upper-a5bf {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.detail_rough_7f31,
.alert_fdf8 {
  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;
}

.detail_rough_7f31 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.detail_rough_7f31: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;
}

.alert_fdf8 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.alert_fdf8: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;
}

.detail_rough_7f31 svg,
.alert_fdf8 svg {
  flex-shrink: 0;
}

.logo-15aa {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.link-action-86b3 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.link-action-86b3::before,
.link-action-86b3::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.link-action-86b3::before {
  top: -7px;
}

.link-action-86b3::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.filter-8c95 {
  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 === */
.pro-a061 {
  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);
}

.form-f3cd {
  margin: 0 0 2rem;
  text-align: center;
}

.background-new-1622 {
  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;
}

.background-new-1622:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.tag-medium-88c3 {
  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);
}

.tag-medium-88c3 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.clean-3358 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.large-1f1a {
  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;
}

.large-1f1a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.soft-ba46 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.sidebar-fluid-3bbb {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.west_4fa8 {
  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);
}

.west_4fa8 .north_6a62 {
  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;
}

.west_4fa8 .north_6a62 svg {
  flex-shrink: 0;
}

.west_4fa8 .preview_hot_ccd9 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.west_4fa8 .preview_hot_ccd9: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);
}

.west_4fa8 .black_4ccb {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.west_4fa8 .black_4ccb: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) {
  .pro-a061 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .background-new-1622 {
    max-width: 100%;
  }

  .clean-3358 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .large-1f1a {
    padding: 1rem;
  }

  .soft-ba46 {
    font-size: 1.5rem;
  }

  .sidebar-fluid-3bbb {
    font-size: 0.75rem;
  }

  .tag-medium-88c3 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .west_4fa8 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .west_4fa8 .north_6a62 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .clean-3358 {
    grid-template-columns: 1fr;
  }
}

.row_2247 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.detail-rough-3c18 {
  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 === */
.surface_d99a {
  margin-bottom: 2.5rem;
}

.info-3d9f {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.row_2247 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumb_out_0458 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pressed_3840 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.basic_6fc5 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.frame-1031 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.icon_7d3a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.detail_gas_150a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.input-pressed-eed7 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.input-pressed-eed7 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.search-lower-1db9 {
  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);
}

.pattern_lite_a710 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.mask_top_ab25 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.popup_a2cd {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.nav-e597 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.item_df0f {
  display: grid;
  gap: 1rem;
}

.panel_yellow_1817 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.panel-gold-9c88 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.secondary-current-da63 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.over_f3eb {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.purple-7dd7 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.video_9850 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.video_9850 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.north-e4b3 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.banner_steel_7301 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.button_tiny_fdbf {
  display: grid;
  gap: 2rem;
}

.sort_glass_139f {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.pressed_3840 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.breadcrumb_out_0458 {
  flex: 1;
}

.frame-1031 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.frame-1031 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.label-pro-bd65 {
  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;
}

.icon_7d3a {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.media_selected_90f4 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.media_selected_90f4 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.pattern_f1c2 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.pattern_f1c2 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.next-2ee8 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.next-2ee8 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.next-2ee8 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.next-2ee8 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.item_cold_c56b {
  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 === */
.accent-a4a6 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.shade-orange-fdd3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.search-pro-8679 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.summary-in-0218 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.summary-in-0218 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.summary-in-0218 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.summary-in-0218 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;
}

.summary-in-0218 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.summary-in-0218 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.primary_upper_9fd1 {
  padding: 3rem 0 5rem;
}

.steel_32f6 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.steel_32f6.right_d4ce {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.content_tall_5aff {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.gold_4710 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.main_rough_e0d3 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.main_rough_e0d3 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.upper_c81f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.active-b746 {
  text-align: center;
}

.item_a8b4 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.steel-23c8 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.tag-0421 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.gas-f68c {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.tertiary-e661 {
  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;
}

.tertiary-e661 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tertiary-e661:hover {
  box-shadow: var(--shadow-lg);
}

.tertiary-e661.motion_277d {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.tertiary-e661 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.tertiary-e661 ul {
  margin: 1rem 0;
}

.tertiary-e661 li {
  margin-bottom: 0.75rem;
}

.row_dim_905f {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.dark-0b5d {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.dark-0b5d a {
  font-weight: 600;
}

/* === Data Tables === */
.warm-bbb9 {
  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;
}

.warm-bbb9 table {
  width: 100%;
  min-width: 600px;
}

.warm-bbb9 thead {
  background-color: var(--primary-color);
  color: white;
}

.warm-bbb9 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.warm-bbb9 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.warm-bbb9 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.warm-bbb9 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.primary-thick-b1ff {
  list-style: none;
  margin: 1.5rem 0;
}

.primary-thick-b1ff li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.primary-thick-b1ff li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.texture_ba28::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-bd5d::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 === */
.layout-def2 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.pattern-466a {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.pattern-466a img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.pattern-466a strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.pattern-466a span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.layout-def2 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.complex-41c9 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.complex-41c9::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.frame_smooth_8298 {
  position: relative;
  margin-bottom: 3rem;
}

.popup-8139 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.popup-8139 .border-bfd7 {
  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;
}

.border_focused_9a40 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.border_focused_9a40 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.border_focused_9a40 ul {
  margin: 1rem 0;
}

.border_focused_9a40 li {
  margin-bottom: 0.75rem;
}

.list-wood-820a {
  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 === */
.steel_454c {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.steel_454c h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.shadow-234d {
  list-style: none;
  margin: 1.5rem 0;
}

.shadow-234d li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.shadow-234d a {
  font-weight: 600;
}

.nav_narrow_0515 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.label_b9c2 {
  margin: 2.5rem 0;
}

.white_c134 {
  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;
}

.white_c134:hover {
  box-shadow: var(--shadow-lg);
}

.white_c134.warm_6753 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.photo-basic-8ea3 {
  flex-shrink: 0;
}

.photo-basic-8ea3 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);
}

.description-531a h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.yellow_9321,
.wrapper-purple-a920,
.info-4452 {
  width: 100%;
  margin: 1.5rem 0;
}

.component-yellow-1852 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.component-yellow-1852 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.hero-35fe {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.hero-35fe strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.basic_0232 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.basic_0232 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.status-center-52c4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.card-a499 {
  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;
}

.card-a499:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card-a499.slider-17c5 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.card-a499 .preview_bd8f {
  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;
}

.card-a499 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.table_right_7394 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.hidden_new_047d {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.hidden_new_047d label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.tabs_c954 {
  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 === */
.north_6a62 {
  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;
}

.preview_hot_ccd9 {
  background-color: var(--primary-color);
  color: white;
}

.preview_hot_ccd9:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.black_4ccb {
  background-color: var(--text-secondary);
  color: white;
}

.black_4ccb:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.media_short_cd1a {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.media_short_cd1a:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.photo_dynamic_d3cb {
  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;
}

.photo_dynamic_d3cb:hover {
  background-color: var(--primary-dark);
}

.table-wood-e923 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.disabled_brown_f85b {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.tabs-lower-60f1 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.action-cae9 {
  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 === */
.hidden_brown_8734 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.out-1207 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.out-1207 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.small_e43d {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.picture_2f6a {
  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;
}

.medium_feb9 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.pagination_prev_6f1b {
  list-style: none;
  counter-reset: rank-counter;
}

.pagination_prev_6f1b li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.pagination_prev_6f1b 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;
}

.sort-stale-f94e {
  list-style: none;
}

.sort-stale-f94e li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.dim_b7a7 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.heading-4d59 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.heading-4d59 .caption_e7c7 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.heading-4d59 .tall-2edd {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.west_1ecf {
  margin-top: 3rem;
}

.progress-12b5 {
  width: 100%;
}

.silver_8c92 {
  background-color: #fef3c7;
}

.description_active_2fb1 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.carousel-8617 {
  margin: 3rem 0;
}

.gradient_dirty_c809 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.filter-small-a3c7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.filter-small-a3c7:hover {
  box-shadow: var(--shadow-lg);
}

.filter-small-a3c7.message_hard_a9e2 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.hover_16ba {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.background-paper-87b8 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.background-paper-87b8 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tooltip-ad5f {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.filter-small-a3c7 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.shadow_1f97 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.fluid-c557 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.active_088b {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.section-middle-4ad6 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.banner_d6c0 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.element_east_0ef3 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.iron_caea {
  max-width: 900px;
  margin: 0 auto;
}

.header_4119 {
  margin: 2rem 0;
}

.rough_bab6 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.rough_bab6 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.rough_bab6 summary::-webkit-details-marker {
  display: none;
}

.rough_bab6 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.video-brown-e8e8 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.rough_bab6[open] .video-brown-e8e8 {
  transform: rotate(45deg);
}

.filter_34f1 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.filter_34f1 p:last-child {
  margin-bottom: 0;
}

.preview-focused-2359 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.border-fixed-9c34 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.feature_d60e {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.feature_d60e p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.feature_d60e .north_6a62 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.form-dim-6438 {
  max-width: 900px;
  margin: 0 auto;
}

.menu_focused_9dc3 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hidden-medium-3bf1 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.hidden-medium-3bf1.fn-success-bd5d {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.active_bronze_1685 {
  font-size: 3rem;
  line-height: 1;
}

.content_green_f88b h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.hot-9413 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.center-1d3f,
.filter_39ee {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.center-1d3f h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.filter_39ee h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.focused_0d1c,
.gold_af5c {
  margin: 1.5rem 0;
}

.focused_0d1c li,
.gold_af5c li {
  margin-bottom: 1rem;
}

.media-gas-b7c5 {
  margin: 3rem 0;
}

.sidebar_wood_f27b {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.sidebar_wood_f27b h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.sidebar_wood_f27b ol {
  margin: 1rem 0;
}

.sidebar_wood_f27b li {
  margin-bottom: 0.75rem;
}

.static-e544 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.text_a997 {
  margin: 2rem 0;
}

.wood_5d5b {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.south_e729 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.active-a5d1 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.small-7c99 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.complex-e730 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.accordion_warm_0d5e {
  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;
}

.accordion_warm_0d5e img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.basic_6fc5 {
  flex: 1;
}

.basic_6fc5 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.surface_right_bd88 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.stale-9f4f p {
  margin-bottom: 1rem;
}

.link-5428 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.active-action-658a {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.caption_a4ff {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.caption_a4ff a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.up_371b h3 {
  margin-bottom: 1.5rem;
}

.label_d922 {
  display: grid;
  gap: 2rem;
}

.banner-33f9 {
  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;
}

.banner-33f9 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.banner-33f9 h4 {
  margin: 0 0 0.25rem;
}

.banner-33f9 p {
  margin: 0;
  font-size: 0.9375rem;
}

.in-55d4 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.center_35d5 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.center_35d5 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.center_35d5 ul {
  margin: 1.5rem 0;
}

.center_35d5 li {
  margin-bottom: 0.75rem;
}

.prev_a74e {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.link-hard-bf55 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.lower-da0e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.avatar_305f h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.avatar_305f p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.image_8e42 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.image_8e42 a {
  color: rgba(255, 255, 255, 0.8);
}

.layout-d88c {
  list-style: none;
}

.layout-d88c li {
  margin-bottom: 0.75rem;
}

.layout-d88c a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.layout-d88c a:hover {
  color: white;
}

.outer_d99d {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.cool_6e43 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.disabled_24c5 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.gas_eff9 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.disabled_upper_75c4 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .disabled_static_c43c {
    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;
  }

  .current_f1c5 {
    font-size: 1.5rem !important;
  }

  .info-3d9f {
    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 */
  .tertiary-e661,
  .detail_99be,
  .border_focused_9a40,
  .description-531a,
  .hover_16ba,
  .filter-small-a3c7,
  .filter_34f1,
  .tag-medium-88c3,
  .north-e4b3,
  .content_tall_5aff {
    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 */
  .row_2247 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .breadcrumb_out_0458 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .pressed_3840 {
    flex-shrink: 0;
  }

  .basic_6fc5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .frame-1031,
  .icon_7d3a {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .icon_7d3a {
    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_51a2 {
    display: none;
  }

  /* Show mobile actions */
  .smooth-343b {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .sort-699c {
    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;
  }

  .sort-699c svg {
    flex-shrink: 0;
  }

  .sort-699c .heading-b5e7 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .sort-699c .backdrop_2b6d {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .complex_a7be {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .border_137f {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .sort-699c:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .menu-north-6457 {
    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;
  }

  .menu-north-6457.fn-active-bd5d {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .menu-north-6457 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .menu-north-6457 li:last-child {
    border-bottom: none;
  }

  .menu-north-6457 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .hot_b061 {
    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;
  }

  .hot_b061 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .hot_b061 li:last-child {
    border-bottom: none;
  }

  .hot_b061 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .text_orange_6fb3 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .tabs-upper-a5bf {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .detail_rough_7f31,
  .alert_fdf8 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .detail_rough_7f31 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .alert_fdf8 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .hot_b061.fn-active-bd5d {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .logo-15aa {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .solid-bb45 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .fast_1f8d {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .filter-8c95 {
    margin-top: 0;
  }

  /* Hero section */
  .filter-8c95 {
    padding: 2rem 0 1.5rem;
  }

  .info-3d9f {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .north-e4b3 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .pro-a061 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .background-new-1622 {
    max-width: 100%;
    border-radius: 8px;
  }

  .clean-3358 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .large-1f1a {
    padding: 1rem;
  }

  .soft-ba46 {
    font-size: 1.5rem;
  }

  .sidebar-fluid-3bbb {
    font-size: 0.75rem;
  }

  .tag-medium-88c3 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .west_4fa8 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .west_4fa8 .north_6a62 {
    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 */
  .search-pro-8679 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .white_c134 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .photo-basic-8ea3 {
    margin-bottom: 1rem;
  }

  /* Author */
  .sort_glass_139f {
    flex-direction: column;
  }

  .accordion_warm_0d5e {
    flex-direction: column;
  }

  /* Quotes */
  .hover_16ba {
    flex-direction: column;
  }

  /* Pros/Cons */
  .hot-9413 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .small-7c99 {
    flex-direction: column;
  }

  .small-7c99 .north_6a62 {
    width: 100%;
  }

  /* Version comparison */
  .status-center-52c4 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .hidden_brown_8734 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .lower-da0e {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .disabled_24c5 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .warm-bbb9,
  .wrapper-purple-a920,
  .border_smooth_1d68,
  .progress-12b5,
  .yellow_9321,
  .info-4452 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .warm-bbb9 table,
  .wrapper-purple-a920 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .tabs_c954 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .disabled_static_c43c {
    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;
  }

  .current_f1c5 {
    font-size: 1.25rem !important;
  }

  .info-3d9f {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .solid-bb45 {
    position: fixed;
  }

  .fast_1f8d {
    padding: 0.625rem 0;
  }

  .section-motion-34c7 img {
    height: 26px;
  }

  .hot_b061 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .menu-north-6457 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .sort-699c {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .sort-699c svg {
    width: 18px;
    height: 18px;
  }

  .sort-699c .heading-b5e7 {
    font-size: 0.7rem;
  }

  .sort-699c .backdrop_2b6d {
    font-size: 0.65rem;
  }

  .detail_rough_7f31,
  .alert_fdf8 {
    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, .disabled_static_c43c, .surface-selected-58c5, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .pro-a061 {
    padding: 1rem;
  }

  .clean-3358 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .large-1f1a {
    padding: 0.875rem;
  }

  .soft-ba46 {
    font-size: 1.25rem;
  }

  .west_4fa8 .north_6a62 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .info-3d9f {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .north_6a62 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .table-wood-e923 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .white_c134 {
    padding: 1rem;
  }

  .photo-basic-8ea3 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .tertiary-e661,
  .backdrop-narrow-94a3,
  .over_1282,
  .paragraph-338f {
    padding: 1rem;
  }
}

@media print {
  .solid-bb45,
  .accent-a4a6,
  .logo-15aa,
  .north_6a62,
  .link-hard-bf55 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .disabled_static_c43c {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.hovered_3510 {
  margin-bottom: 3rem;
  text-align: center;
}

.current_f1c5 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.article-e108 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.pagination-d435,
.top_6a2a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.breadcrumb_2a53 {
  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;
}

.breadcrumb_2a53:hover {
  transform: translateY(-5px);
}

.breadcrumb_2a53 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.breadcrumb_2a53 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.secondary_next_7e67 {
  margin: 3rem 0;
}

.row-cool-a1f4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.basic_0d5e {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.basic_0d5e:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.fast-2361 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.footer_b97b {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.input_soft_c928 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.fast_e62c {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.search_pro_f291 {
  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;
}

.search_pro_f291:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.search_pro_f291.preview-277a {
  border-left: 4px solid var(--primary-color);
}

.shadow_2eff {
  flex-shrink: 0;
}

.shadow_2eff svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.link-out-a3c7 {
  flex: 1;
}

.link-out-a3c7 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.active_b2b8 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.down-7227,
.status-solid-81bb,
.item-active-c925 {
  margin-bottom: 1.5rem;
}

.down-7227 h4,
.status-solid-81bb h4,
.item-active-c925 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.down-7227 ul,
.status-solid-81bb ul,
.item-active-c925 ul {
  list-style: none;
  padding: 0;
}

.down-7227 li,
.status-solid-81bb li,
.item-active-c925 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.down-7227 li:before,
.status-solid-81bb li:before,
.item-active-c925 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.fast-1ec7 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.fast-1ec7 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;
}

.fast-1ec7 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.cool_c3fb { margin: 2rem 0; }
.down_03c5 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.down_03c5 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.banner_gold_f66c p { margin-bottom: 1rem; line-height: 1.7; }
.banner_gold_f66c strong { color: var(--text-primary); }
.banner_gold_f66c ul { list-style: none; padding-left: 0; }
.banner_gold_f66c ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.banner_gold_f66c ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.left_17c8 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.dim_df4b { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.dim_df4b:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.banner-paper-4d2f { font-size: 3rem; margin-bottom: 1rem; }
.dim_df4b h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.dim_df4b p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.header-5af2 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.header-5af2 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.box-897c { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.focus_abcf { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.hot-e83e { text-align: center; }
.search-f1f5 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.section-1eea { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.white-d174 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.photo-10d5 { margin: 2rem 0; }
.article-c6c5 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.article-c6c5 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.article-c6c5 p, .article-c6c5 ul { line-height: 1.7; }
.article-c6c5 ul { list-style: none; padding-left: 0; }
.article-c6c5 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.article-c6c5 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.simple-d1ce { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.info_749b { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.hero-steel-9408 { text-align: center; }
.list-right-dc0a { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.highlight-4e98 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.article_over_e662 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.widget-fed7 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.banner_easy_f218 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.banner_easy_f218:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.banner_easy_f218 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.banner_easy_f218 p, .banner_easy_f218 ul { line-height: 1.7; }
.banner_easy_f218 ul { list-style: none; padding-left: 0; }
.banner_easy_f218 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.banner_easy_f218 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 72c9 */
.ghost-box-d2 {
  padding: 0.4rem;
  font-size: 13px;
  line-height: 1.2;
}
