/* ============================================
   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 */
.sort-static-7491 p,
.component-bottom-8a6b,
.shade-f3e0,
.grid-e827,
.cool-7027,
.accordion-dark-544d,
.notification-motion-05dc,
.alert_667c {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.footer_center_dd01 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.footer_center_dd01 > *,
.border_focused_76ed,
.sort-static-7491,
.button_97b0 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .footer_center_dd01 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .footer_center_dd01 {
    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_81ec {
  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_81ec.gold_c4ce {
  box-shadow: var(--shadow-md);
}

.status-cedb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.article-orange-d184 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.breadcrumb-b6d0 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.yellow_0443 {
  display: none;
}

/* Hide mobile actions on desktop */
.pagination_d5cb {
  display: none;
}

.shade-cc6c a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.shade-cc6c a:hover,
.shade-cc6c a.fn-active-2d92 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.list_pink_a95f {
  margin-left: 1rem;
}

.shade-2c84 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.gas_9842,
.logo-7697 {
  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;
}

.gas_9842 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.gas_9842: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;
}

.logo-7697 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.logo-7697: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;
}

.gas_9842 svg,
.logo-7697 svg {
  flex-shrink: 0;
}

.primary-adce {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.feature_1397 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.feature_1397::before,
.feature_1397::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.feature_1397::before {
  top: -7px;
}

.feature_1397::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.search_focused_208c {
  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 === */
.row-action-7cec {
  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);
}

.purple-3cdd {
  margin: 0 0 2rem;
  text-align: center;
}

.alert_in_ab1a {
  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;
}

.alert_in_ab1a:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.pink-71dc {
  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);
}

.pink-71dc strong {
  color: var(--primary-color);
  font-weight: 700;
}

.backdrop-83f5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.complex_3fd9 {
  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;
}

.complex_3fd9:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.carousel-f92d {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.button_gas_6a90 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.border-52bd {
  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);
}

.border-52bd .tooltip_31ef {
  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;
}

.border-52bd .tooltip_31ef svg {
  flex-shrink: 0;
}

.border-52bd .orange-7757 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.border-52bd .orange-7757: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);
}

.border-52bd .large_8480 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.border-52bd .large_8480: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) {
  .row-action-7cec {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .alert_in_ab1a {
    max-width: 100%;
  }

  .backdrop-83f5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .complex_3fd9 {
    padding: 1rem;
  }

  .carousel-f92d {
    font-size: 1.5rem;
  }

  .button_gas_6a90 {
    font-size: 0.75rem;
  }

  .pink-71dc {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .border-52bd {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .border-52bd .tooltip_31ef {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .backdrop-83f5 {
    grid-template-columns: 1fr;
  }
}

.list_1e87 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.grid_20ed {
  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 === */
.box-white-1d77 {
  margin-bottom: 2.5rem;
}

.grid-eb4c {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.list_1e87 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hover_13d8 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.card_solid_fdb8 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.search-1378 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sidebar_bd44 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.message_2540 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.message_east_9e91 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.logo_632c {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.logo_632c svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.tooltip_9080 {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-lg);
}

.feature_lite_fc5a {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.prev_61e6 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.advanced_716b {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.active-last-de1a {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.menu_south_e25d {
  display: grid;
  gap: 1rem;
}

.text_bottom_b238 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.heading_82a3 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.detail-blue-8e09 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.description-6388 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.easy_fef1 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.photo-plasma-16c8 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.photo-plasma-16c8 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.component-bottom-8a6b {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.element_advanced_b704 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.frame_bbd2 {
  display: grid;
  gap: 2rem;
}

.banner-4025 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.card_solid_fdb8 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.hover_13d8 {
  flex: 1;
}

.sidebar_bd44 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.sidebar_bd44 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.media_6a14 {
  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;
}

.message_2540 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.message-df1f {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.message-df1f span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.full-0f00 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.full-0f00 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.narrow-68c9 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.narrow-68c9 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.narrow-68c9 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.narrow-68c9 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.label-631e {
  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 === */
.white_847d {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.banner_865a {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.prev-94dc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pagination-copper-330d h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.pagination-copper-330d ol {
  list-style: none;
  counter-reset: toc-counter;
}

.pagination-copper-330d ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.pagination-copper-330d 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;
}

.pagination-copper-330d ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.pagination-copper-330d ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.sort-static-7491 {
  padding: 3rem 0 5rem;
}

.button_97b0 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.button_97b0.smooth_3312 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.shade-f3e0 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.tertiary_f33d {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.content_441a {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.content_441a h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.hero-7229 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.out-90de {
  text-align: center;
}

.rough-b0fb {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.wrapper-red-2c2c {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.carousel-e28a {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.accordion-dark-544d {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.grid-e827 {
  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;
}

.grid-e827 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.grid-e827:hover {
  box-shadow: var(--shadow-lg);
}

.grid-e827.backdrop-1d89 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.grid-e827 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.grid-e827 ul {
  margin: 1rem 0;
}

.grid-e827 li {
  margin-bottom: 0.75rem;
}

.sidebar_gold_7483 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.sort-complex-7b7c {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.sort-complex-7b7c a {
  font-weight: 600;
}

/* === Data Tables === */
.message-stale-3f6e {
  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;
}

.message-stale-3f6e table {
  width: 100%;
  min-width: 600px;
}

.message-stale-3f6e thead {
  background-color: var(--primary-color);
  color: white;
}

.message-stale-3f6e th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.message-stale-3f6e td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.message-stale-3f6e tbody tr:hover {
  background-color: var(--bg-secondary);
}

.message-stale-3f6e tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.preview-tiny-0f97 {
  list-style: none;
  margin: 1.5rem 0;
}

.preview-tiny-0f97 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.preview-tiny-0f97 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.steel_1b51::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-2d92::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 === */
.item_easy_cb8b {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.button_orange_c3e7 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.button_orange_c3e7 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.button_orange_c3e7 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.button_orange_c3e7 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.item_easy_cb8b blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.notification-motion-05dc {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.notification-motion-05dc::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.green_17ff {
  position: relative;
  margin-bottom: 3rem;
}

.iron-163b {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.iron-163b .gradient_103a {
  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;
}

.fluid-7f1f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.fluid-7f1f h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.fluid-7f1f ul {
  margin: 1rem 0;
}

.fluid-7f1f li {
  margin-bottom: 0.75rem;
}

.center-fc5d {
  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 === */
.focused-debf {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.focused-debf h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.panel_tall_48d3 {
  list-style: none;
  margin: 1.5rem 0;
}

.panel_tall_48d3 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.panel_tall_48d3 a {
  font-weight: 600;
}

.smooth_b98d {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.alert_667c {
  margin: 2.5rem 0;
}

.narrow_a988 {
  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;
}

.narrow_a988:hover {
  box-shadow: var(--shadow-lg);
}

.narrow_a988.blue_1874 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.warm_73f1 {
  flex-shrink: 0;
}

.warm_73f1 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);
}

.summary_up_9e24 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.container-042d,
.silver_3bc4,
.gold-4497 {
  width: 100%;
  margin: 1.5rem 0;
}

.action-20fb {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.action-20fb strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.tag_9548 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.tag_9548 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.north-e6cc {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.north-e6cc strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.blue-af8b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.thumbnail_simple_5625 {
  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;
}

.thumbnail_simple_5625:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.thumbnail_simple_5625.static-4f57 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.thumbnail_simple_5625 .fixed_6140 {
  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;
}

.thumbnail_simple_5625 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.lower_7418 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.tooltip-b0eb {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.tooltip-b0eb label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.middle-f5a9 {
  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 === */
.tooltip_31ef {
  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;
}

.orange-7757 {
  background-color: var(--primary-color);
  color: white;
}

.orange-7757:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.large_8480 {
  background-color: var(--text-secondary);
  color: white;
}

.large_8480:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.gas-95be {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.gas-95be:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.tabs-906f {
  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;
}

.tabs-906f:hover {
  background-color: var(--primary-dark);
}

.accordion_be13 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.icon-5327 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.purple-91d3 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.wrapper-fluid-ca17 {
  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 === */
.wood_a17a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.current-e3c3 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.current-e3c3 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.easy_aa2c {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.surface-9b50 {
  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;
}

.huge_bf19 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.section-slow-8285 {
  list-style: none;
  counter-reset: rank-counter;
}

.section-slow-8285 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.section-slow-8285 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;
}

.mini_8cc9 {
  list-style: none;
}

.mini_8cc9 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.button-a57a {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.form_new_313d {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.form_new_313d .article-9a4d {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.form_new_313d .secondary_purple_9cd9 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.info_11cb {
  margin-top: 3rem;
}

.avatar-aec8 {
  width: 100%;
}

.pagination_top_d8e7 {
  background-color: #fef3c7;
}

.article-stone-08be {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.detail_a458 {
  margin: 3rem 0;
}

.dim_1a88 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.preview-small-12a6 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.preview-small-12a6:hover {
  box-shadow: var(--shadow-lg);
}

.preview-small-12a6.message_08ce {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.pro-83d7 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.over-d866 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.over-d866 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.active-cee8 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.preview-small-12a6 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.aside-yellow-2de8 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.nav-outer-c06d {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.icon_25b8 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.gallery_east_a290 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.backdrop-yellow-61eb {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.current_786a {
  margin-top: 1rem;
}

/* === FAQ Section === */
.new-7e76 {
  max-width: 900px;
  margin: 0 auto;
}

.hover_ef63 {
  margin: 2rem 0;
}

.article_red_db26 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.article_red_db26 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.article_red_db26 summary::-webkit-details-marker {
  display: none;
}

.article_red_db26 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.form_d7e3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.article_red_db26[open] .form_d7e3 {
  transform: rotate(45deg);
}

.progress_ee1a {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.progress_ee1a p:last-child {
  margin-bottom: 0;
}

.glass-f971 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.yellow-d214 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.button_d14f {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.button_d14f p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.button_d14f .tooltip_31ef {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.mini-7989 {
  max-width: 900px;
  margin: 0 auto;
}

.alert_6aae {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.row-5169 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.row-5169.fn-success-2d92 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.steel_ee3a {
  font-size: 3rem;
  line-height: 1;
}

.article-selected-e3aa h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.link-next-3cbd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.description-focused-4007,
.message-dirty-6460 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.description-focused-4007 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.message-dirty-6460 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.widget_gold_eb98,
.banner_thick_6d6f {
  margin: 1.5rem 0;
}

.widget_gold_eb98 li,
.banner_thick_6d6f li {
  margin-bottom: 1rem;
}

.logo-765a {
  margin: 3rem 0;
}

.border-4a46 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.border-4a46 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.border-4a46 ol {
  margin: 1rem 0;
}

.border-4a46 li {
  margin-bottom: 0.75rem;
}

.focus_8780 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.image_300d {
  margin: 2rem 0;
}

.stone_1f37 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.main_up_035b {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.solid_89ac {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.block-gas-d8f3 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.north-f107 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.liquid-cbca {
  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;
}

.liquid-cbca img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.search-1378 {
  flex: 1;
}

.search-1378 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.active_757a {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.gallery_f9f4 p {
  margin-bottom: 1rem;
}

.dim-500d {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.tertiary_97d4 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.card-basic-e62e {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.card-basic-e62e a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.modal-4a0c h3 {
  margin-bottom: 1.5rem;
}

.modal-bd37 {
  display: grid;
  gap: 2rem;
}

.table-lower-7d40 {
  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;
}

.table-lower-7d40 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.table-lower-7d40 h4 {
  margin: 0 0 0.25rem;
}

.table-lower-7d40 p {
  margin: 0;
  font-size: 0.9375rem;
}

.hero-middle-b154 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.dirty-a205 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.dirty-a205 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.dirty-a205 ul {
  margin: 1.5rem 0;
}

.dirty-a205 li {
  margin-bottom: 0.75rem;
}

.right_292f {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.panel-5155 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.title_simple_1cf0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.article_0ff2 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.article_0ff2 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.shadow_b397 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.shadow_b397 a {
  color: rgba(255, 255, 255, 0.8);
}

.footer_steel_b514 {
  list-style: none;
}

.footer_steel_b514 li {
  margin-bottom: 0.75rem;
}

.footer_steel_b514 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.footer_steel_b514 a:hover {
  color: white;
}

.advanced_3a65 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.right-565f {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.module_light_7499 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.large_efb7 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.shade_fbcf {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .footer_center_dd01 {
    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;
  }

  .tag-dad0 {
    font-size: 1.5rem !important;
  }

  .grid-eb4c {
    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 */
  .grid-e827,
  .cool-7027,
  .fluid-7f1f,
  .summary_up_9e24,
  .pro-83d7,
  .preview-small-12a6,
  .progress_ee1a,
  .pink-71dc,
  .component-bottom-8a6b,
  .shade-f3e0 {
    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 */
  .list_1e87 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hover_13d8 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .card_solid_fdb8 {
    flex-shrink: 0;
  }

  .search-1378 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .sidebar_bd44,
  .message_2540 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .message_2540 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .breadcrumb-b6d0 {
    display: none;
  }

  /* Show mobile actions */
  .pagination_d5cb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .bronze_4b79 {
    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;
  }

  .bronze_4b79 svg {
    flex-shrink: 0;
  }

  .bronze_4b79 .notice-d69d {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .bronze_4b79 .preview_d4ab {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .frame_2d73 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .panel_bf85 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .bronze_4b79:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .yellow_0443 {
    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;
  }

  .yellow_0443.fn-active-2d92 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .yellow_0443 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .yellow_0443 li:last-child {
    border-bottom: none;
  }

  .yellow_0443 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .shade-cc6c {
    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;
  }

  .shade-cc6c li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .shade-cc6c li:last-child {
    border-bottom: none;
  }

  .shade-cc6c a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .list_pink_a95f {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .shade-2c84 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .gas_9842,
  .logo-7697 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .gas_9842 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .logo-7697 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .shade-cc6c.fn-active-2d92 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .primary-adce {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .full_81ec {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .status-cedb {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .search_focused_208c {
    margin-top: 0;
  }

  /* Hero section */
  .search_focused_208c {
    padding: 2rem 0 1.5rem;
  }

  .grid-eb4c {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .component-bottom-8a6b {
    font-size: 1rem;
  }

  /* Hero brand image */
  .row-action-7cec {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .alert_in_ab1a {
    max-width: 100%;
    border-radius: 8px;
  }

  .backdrop-83f5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .complex_3fd9 {
    padding: 1rem;
  }

  .carousel-f92d {
    font-size: 1.5rem;
  }

  .button_gas_6a90 {
    font-size: 0.75rem;
  }

  .pink-71dc {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .border-52bd {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .border-52bd .tooltip_31ef {
    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 */
  .prev-94dc {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .narrow_a988 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .warm_73f1 {
    margin-bottom: 1rem;
  }

  /* Author */
  .banner-4025 {
    flex-direction: column;
  }

  .liquid-cbca {
    flex-direction: column;
  }

  /* Quotes */
  .pro-83d7 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .link-next-3cbd {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .block-gas-d8f3 {
    flex-direction: column;
  }

  .block-gas-d8f3 .tooltip_31ef {
    width: 100%;
  }

  /* Version comparison */
  .blue-af8b {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .wood_a17a {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .title_simple_1cf0 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .module_light_7499 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .message-stale-3f6e,
  .silver_3bc4,
  .wide-ee4d,
  .avatar-aec8,
  .container-042d,
  .gold-4497 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .message-stale-3f6e table,
  .silver_3bc4 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .middle-f5a9 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .footer_center_dd01 {
    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;
  }

  .tag-dad0 {
    font-size: 1.25rem !important;
  }

  .grid-eb4c {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .full_81ec {
    position: fixed;
  }

  .status-cedb {
    padding: 0.625rem 0;
  }

  .article-orange-d184 img {
    height: 26px;
  }

  .shade-cc6c {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .yellow_0443 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .bronze_4b79 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .bronze_4b79 svg {
    width: 18px;
    height: 18px;
  }

  .bronze_4b79 .notice-d69d {
    font-size: 0.7rem;
  }

  .bronze_4b79 .preview_d4ab {
    font-size: 0.65rem;
  }

  .gas_9842,
  .logo-7697 {
    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, .footer_center_dd01, .border_focused_76ed, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .row-action-7cec {
    padding: 1rem;
  }

  .backdrop-83f5 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .complex_3fd9 {
    padding: 0.875rem;
  }

  .carousel-f92d {
    font-size: 1.25rem;
  }

  .border-52bd .tooltip_31ef {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .grid-eb4c {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .tooltip_31ef {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .accordion_be13 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .narrow_a988 {
    padding: 1rem;
  }

  .warm_73f1 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .grid-e827,
  .east-aae1,
  .accordion-plasma-5de1,
  .picture_ffad {
    padding: 1rem;
  }
}

@media print {
  .full_81ec,
  .white_847d,
  .primary-adce,
  .tooltip_31ef,
  .panel-5155 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .footer_center_dd01 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.column-paper-d4e8 {
  margin-bottom: 3rem;
  text-align: center;
}

.tag-dad0 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.over_11a5 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.dropdown_simple_ae0b,
.surface_5f21 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.module_1b4a {
  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;
}

.module_1b4a:hover {
  transform: translateY(-5px);
}

.module_1b4a strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.module_1b4a span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.orange-182b {
  margin: 3rem 0;
}

.tabs_full_65e4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.backdrop-outer-0d77 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.backdrop-outer-0d77:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.item_down_f138 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.photo_ee4a {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.description_fixed_02b9 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.carousel_wood_9621 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.dirty-5373 {
  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;
}

.dirty-5373:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.dirty-5373.carousel-f798 {
  border-left: 4px solid var(--primary-color);
}

.title-fresh-9b62 {
  flex-shrink: 0;
}

.title-fresh-9b62 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.large-d276 {
  flex: 1;
}

.large-d276 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.dim-149b {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.pressed-48f6,
.focus-gold-0a8a,
.detail-mini-c4df {
  margin-bottom: 1.5rem;
}

.pressed-48f6 h4,
.focus-gold-0a8a h4,
.detail-mini-c4df h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pressed-48f6 ul,
.focus-gold-0a8a ul,
.detail-mini-c4df ul {
  list-style: none;
  padding: 0;
}

.pressed-48f6 li,
.focus-gold-0a8a li,
.detail-mini-c4df li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.pressed-48f6 li:before,
.focus-gold-0a8a li:before,
.detail-mini-c4df li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.progress_1a26 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.progress_1a26 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;
}

.progress_1a26 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.title-c29a { margin: 2rem 0; }
.icon_in_94ad { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.icon_in_94ad h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.chip_glass_85ab p { margin-bottom: 1rem; line-height: 1.7; }
.chip_glass_85ab strong { color: var(--text-primary); }
.chip_glass_85ab ul { list-style: none; padding-left: 0; }
.chip_glass_85ab ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.chip_glass_85ab ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.search_narrow_8f9a { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.modal_stone_ae8e { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.modal_stone_ae8e:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.tertiary_02fa { font-size: 3rem; margin-bottom: 1rem; }
.modal_stone_ae8e h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.modal_stone_ae8e p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.primary-4fe3 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.primary-4fe3 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.search-0a31 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.thumbnail-8b5d { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.surface-3cd8 { text-align: center; }
.column_cc5d { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.tall-7fc0 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.pressed-00e5 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.row-e5c4 { margin: 2rem 0; }
.container_wood_3f51 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.container_wood_3f51 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.container_wood_3f51 p, .container_wood_3f51 ul { line-height: 1.7; }
.container_wood_3f51 ul { list-style: none; padding-left: 0; }
.container_wood_3f51 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.container_wood_3f51 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.fast-98e8 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.narrow_6099 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.smooth-c25b { text-align: center; }
.notice-f006 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.heading_263c { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.video_bright_8530 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.thick_5de8 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.table_mini_6693 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.table_mini_6693:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.table_mini_6693 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.table_mini_6693 p, .table_mini_6693 ul { line-height: 1.7; }
.table_mini_6693 ul { list-style: none; padding-left: 0; }
.table_mini_6693 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.table_mini_6693 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 3a9b */
.shadow-element-i8 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.3;
}
