/* ============================================
   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 */
.section_4196 p,
.logo-warm-e506,
.static-d90a,
.border-2a13,
.sidebar_d549,
.layout-a3e5,
.white-f229,
.mask_e9e9 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.clean_9d0a {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.clean_9d0a > *,
.badge_cool_f4f9,
.section_4196,
.modal_4849 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .clean_9d0a {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .clean_9d0a {
    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 === */
.bronze-0f22 {
  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 */
.bronze-0f22.logo-solid-c99d {
  box-shadow: var(--shadow-md);
}

.banner-bottom-46cf {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.block-in-2447 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.header-hot-947c {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.dim_5047 {
  display: none;
}

/* Hide mobile actions on desktop */
.secondary-9870 {
  display: none;
}

.link-simple-35b6 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.link-simple-35b6 a:hover,
.link-simple-35b6 a.fn-active-1d52 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.large_079e {
  margin-left: 1rem;
}

.dropdown-hard-b6ac {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.bronze-b84c,
.row_24a8 {
  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;
}

.bronze-b84c {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.bronze-b84c: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;
}

.row_24a8 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.row_24a8: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;
}

.bronze-b84c svg,
.row_24a8 svg {
  flex-shrink: 0;
}

.status_focused_a3f3 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.section-motion-e39d {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.section-motion-e39d::before,
.section-motion-e39d::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.section-motion-e39d::before {
  top: -7px;
}

.section-motion-e39d::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.last_aac9 {
  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 === */
.image-0010 {
  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);
}

.hover_dcd2 {
  margin: 0 0 2rem;
  text-align: center;
}

.input-9343 {
  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;
}

.input-9343:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.message_7be2 {
  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);
}

.message_7be2 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.pagination-fresh-b5d5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.alert-c34a {
  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;
}

.alert-c34a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.caption-stale-a859 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.selected_3f34 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.card-west-6cd2 {
  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);
}

.card-west-6cd2 .chip-wide-ea7f {
  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;
}

.card-west-6cd2 .chip-wide-ea7f svg {
  flex-shrink: 0;
}

.card-west-6cd2 .button_steel_1931 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.card-west-6cd2 .button_steel_1931: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);
}

.card-west-6cd2 .background-east-6607 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.card-west-6cd2 .background-east-6607: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) {
  .image-0010 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .input-9343 {
    max-width: 100%;
  }

  .pagination-fresh-b5d5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .alert-c34a {
    padding: 1rem;
  }

  .caption-stale-a859 {
    font-size: 1.5rem;
  }

  .selected_3f34 {
    font-size: 0.75rem;
  }

  .message_7be2 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .card-west-6cd2 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .card-west-6cd2 .chip-wide-ea7f {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .pagination-fresh-b5d5 {
    grid-template-columns: 1fr;
  }
}

.modal-yellow-809a {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.pagination-6dab {
  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 === */
.layout_4fb3 {
  margin-bottom: 2.5rem;
}

.focused-f6bf {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.modal-yellow-809a {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.nav_middle_4005 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.fresh-8903 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.shade_clean_ba95 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.motion_6cff {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.list-glass-1afb {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.banner-static-bcdc {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.dark-3465 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.dark-3465 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.column-a286 {
  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);
}

.motion_c08d {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.dirty_2d7c {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.dim-4d81 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.wide_fd81 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.disabled_tall_0230 {
  display: grid;
  gap: 1rem;
}

.element_fixed_f731 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.title-wood-f9b8 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.brown-0d05 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.pattern_pressed_ff3b {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.detail_b08c {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.dropdown_left_35ee {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.dropdown_left_35ee p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.logo-warm-e506 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.lower-3f33 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.surface-3004 {
  display: grid;
  gap: 2rem;
}

.list-5be4 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.fresh-8903 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.nav_middle_4005 {
  flex: 1;
}

.motion_6cff {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.motion_6cff a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.title-out-7881 {
  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;
}

.list-glass-1afb {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.search_1705 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.search_1705 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.bottom-b79a {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.bottom-b79a a {
  font-size: 0.875rem;
  font-weight: 500;
}

.gradient_09bb {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.gradient_09bb strong {
  display: block;
  margin-bottom: 0.75rem;
}

.gradient_09bb ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gradient_09bb li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.wide_7da5 {
  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 === */
.texture_mini_830a {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.iron-05fd {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.texture_stale_4689 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.article-west-66d9 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.article-west-66d9 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.article-west-66d9 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.article-west-66d9 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;
}

.article-west-66d9 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.article-west-66d9 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.section_4196 {
  padding: 3rem 0 5rem;
}

.modal_4849 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.modal_4849.hovered-f3e2 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.static-d90a {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.slow-e8e5 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.shade-93ef {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.shade-93ef h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.south-e2b7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.under-abfd {
  text-align: center;
}

.stale-a954 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.notification_warm_17be {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.form_pro_90f8 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.layout-a3e5 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.border-2a13 {
  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;
}

.border-2a13 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.border-2a13:hover {
  box-shadow: var(--shadow-lg);
}

.border-2a13.main-51e7 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.border-2a13 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.border-2a13 ul {
  margin: 1rem 0;
}

.border-2a13 li {
  margin-bottom: 0.75rem;
}

.bronze_e20b {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.main_paper_e201 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.main_paper_e201 a {
  font-weight: 600;
}

/* === Data Tables === */
.aside_f655 {
  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;
}

.aside_f655 table {
  width: 100%;
  min-width: 600px;
}

.aside_f655 thead {
  background-color: var(--primary-color);
  color: white;
}

.aside_f655 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.aside_f655 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.aside_f655 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.aside_f655 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.mask_3ccc {
  list-style: none;
  margin: 1.5rem 0;
}

.mask_3ccc li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.mask_3ccc li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.nav_huge_ad2e::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-1d52::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 === */
.grid-3f10 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.gallery_in_1a39 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.gallery_in_1a39 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.gallery_in_1a39 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.gallery_in_1a39 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.grid-3f10 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.white-f229 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.white-f229::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.fast-d2d7 {
  position: relative;
  margin-bottom: 3rem;
}

.surface_a290 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.surface_a290 .soft-2c8c {
  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;
}

.container_copper_d37d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.container_copper_d37d h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.container_copper_d37d ul {
  margin: 1rem 0;
}

.container_copper_d37d li {
  margin-bottom: 0.75rem;
}

.notice_67f3 {
  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 === */
.paper_e3cb {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.paper_e3cb h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.tertiary_4470 {
  list-style: none;
  margin: 1.5rem 0;
}

.tertiary_4470 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.tertiary_4470 a {
  font-weight: 600;
}

.aside_light_ef13 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.mask_e9e9 {
  margin: 2.5rem 0;
}

.list-da7c {
  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;
}

.list-da7c:hover {
  box-shadow: var(--shadow-lg);
}

.list-da7c.slider_outer_dc39 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.main_2fa6 {
  flex-shrink: 0;
}

.main_2fa6 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);
}

.layout_steel_c65e h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.container_1db6,
.wrapper_a124,
.popup_bottom_1c26 {
  width: 100%;
  margin: 1.5rem 0;
}

.accordion-bright-668e {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.accordion-bright-668e strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.tag-ff18 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.tag-ff18 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.label_in_715b {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.label_in_715b strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.plasma_c4fe {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.badge_steel_4c9f {
  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;
}

.badge_steel_4c9f:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.badge_steel_4c9f.footer-be4a {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.badge_steel_4c9f .fast_6163 {
  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;
}

.badge_steel_4c9f h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.outer-bd43 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.slider_8ff1 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.slider_8ff1 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.grid-silver-3b31 {
  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 === */
.chip-wide-ea7f {
  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;
}

.button_steel_1931 {
  background-color: var(--primary-color);
  color: white;
}

.button_steel_1931:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.background-east-6607 {
  background-color: var(--text-secondary);
  color: white;
}

.background-east-6607:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.badge_wood_f839 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.badge_wood_f839:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.search-action-a1e8 {
  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;
}

.search-action-a1e8:hover {
  background-color: var(--primary-dark);
}

.medium-5619 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.chip_huge_cbee {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.row-dark-bb7a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.footer_blue_c60c {
  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 === */
.hovered-891d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.focus_b16e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.focus_b16e h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.tooltip_1340 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.feature-78eb {
  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;
}

.glass-ad42 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.backdrop-f9af {
  list-style: none;
  counter-reset: rank-counter;
}

.backdrop-f9af li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.backdrop-f9af 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;
}

.hidden-cold-7f78 {
  list-style: none;
}

.hidden-cold-7f78 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.background_bf29 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.basic_51ad {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.basic_51ad .progress-slow-75fd {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.basic_51ad .media-2da4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.old_92d3 {
  margin-top: 3rem;
}

.complex-3b71 {
  width: 100%;
}

.video_9305 {
  background-color: #fef3c7;
}

.video-5d93 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.shadow_white_2683 {
  margin: 3rem 0;
}

.outer_8532 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.huge-ba5e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.huge-ba5e:hover {
  box-shadow: var(--shadow-lg);
}

.huge-ba5e.fresh-7b83 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.hidden_88db {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.item-narrow-9a4e strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.item-narrow-9a4e span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.soft_4c87 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.huge-ba5e blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.thumbnail-thick-a49a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.dim-0fbe {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.north_0be8 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.badge-next-c2c3 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.dynamic_4414 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.disabled-ca8d {
  margin-top: 1rem;
}

/* === FAQ Section === */
.small_c098 {
  max-width: 900px;
  margin: 0 auto;
}

.bronze_05fa {
  margin: 2rem 0;
}

.mask-light-802f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.mask-light-802f summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.mask-light-802f summary::-webkit-details-marker {
  display: none;
}

.mask-light-802f summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.shadow-c9ba {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.mask-light-802f[open] .shadow-c9ba {
  transform: rotate(45deg);
}

.icon_1a55 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.icon_1a55 p:last-child {
  margin-bottom: 0;
}

.pagination-orange-891c {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.label-b9aa {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.module-last-a999 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.module-last-a999 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.module-last-a999 .chip-wide-ea7f {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.prev_d569 {
  max-width: 900px;
  margin: 0 auto;
}

.highlight-mini-47e4 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.menu-mini-2612 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.menu-mini-2612.fn-success-1d52 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.north_d7c6 {
  font-size: 3rem;
  line-height: 1;
}

.shade-gold-158d h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.easy-c497 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.grid-plasma-cad0,
.thick-dace {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.grid-plasma-cad0 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.thick-dace h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.highlight-d1aa,
.top_400c {
  margin: 1.5rem 0;
}

.highlight-d1aa li,
.top_400c li {
  margin-bottom: 1rem;
}

.disabled_over_15cf {
  margin: 3rem 0;
}

.box_4765 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.box_4765 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.box_4765 ol {
  margin: 1rem 0;
}

.box_4765 li {
  margin-bottom: 0.75rem;
}

.box_narrow_4aa6 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.solid-63e0 {
  margin: 2rem 0;
}

.paragraph_2c30 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.mask_hovered_5d08 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.main_basic_d132 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.center-d989 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.sort_gold_9efd {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.list_dirty_d3fd {
  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;
}

.list_dirty_d3fd img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.shade_clean_ba95 {
  flex: 1;
}

.shade_clean_ba95 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.detail-6559 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.liquid-1123 p {
  margin-bottom: 1rem;
}

.description-stale-d518 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.search_8618 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.smooth_a3a5 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.smooth_a3a5 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.box-paper-2b37 h3 {
  margin-bottom: 1.5rem;
}

.overlay_9e3f {
  display: grid;
  gap: 2rem;
}

.modal-2a9b {
  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;
}

.modal-2a9b img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.modal-2a9b h4 {
  margin: 0 0 0.25rem;
}

.modal-2a9b p {
  margin: 0;
  font-size: 0.9375rem;
}

.active_0a6c {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.alert-4e3d {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.alert-4e3d h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.alert-4e3d ul {
  margin: 1.5rem 0;
}

.alert-4e3d li {
  margin-bottom: 0.75rem;
}

.caption_simple_b687 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.outer-ba7c {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.soft-45d2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.paragraph-orange-f5ed h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.paragraph-orange-f5ed p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.accordion-blue-5267 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.accordion-blue-5267 a {
  color: rgba(255, 255, 255, 0.8);
}

.container_wood_25ce {
  list-style: none;
}

.container_wood_25ce li {
  margin-bottom: 0.75rem;
}

.container_wood_25ce a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.container_wood_25ce a:hover {
  color: white;
}

.liquid-5c0b {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.dropdown-upper-8053 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.over-5195 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.pattern_inner_3edc {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.notice-0857 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .clean_9d0a {
    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;
  }

  .light_06ba {
    font-size: 1.5rem !important;
  }

  .focused-f6bf {
    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 */
  .border-2a13,
  .sidebar_d549,
  .container_copper_d37d,
  .layout_steel_c65e,
  .hidden_88db,
  .huge-ba5e,
  .icon_1a55,
  .message_7be2,
  .logo-warm-e506,
  .static-d90a {
    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 */
  .modal-yellow-809a {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav_middle_4005 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .fresh-8903 {
    flex-shrink: 0;
  }

  .shade_clean_ba95 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .motion_6cff,
  .list-glass-1afb {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .list-glass-1afb {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .header-hot-947c {
    display: none;
  }

  /* Show mobile actions */
  .secondary-9870 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .focus-8063 {
    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;
  }

  .focus-8063 svg {
    flex-shrink: 0;
  }

  .focus-8063 .mask_0b8b {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .focus-8063 .bottom-c022 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .paper_6039 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .accent_dynamic_b7d8 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .focus-8063:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .dim_5047 {
    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;
  }

  .dim_5047.fn-active-1d52 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .dim_5047 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .dim_5047 li:last-child {
    border-bottom: none;
  }

  .dim_5047 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .link-simple-35b6 {
    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;
  }

  .link-simple-35b6 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .link-simple-35b6 li:last-child {
    border-bottom: none;
  }

  .link-simple-35b6 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .large_079e {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .dropdown-hard-b6ac {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .bronze-b84c,
  .row_24a8 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .bronze-b84c {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .row_24a8 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .link-simple-35b6.fn-active-1d52 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .status_focused_a3f3 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .bronze-0f22 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .banner-bottom-46cf {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .last_aac9 {
    margin-top: 0;
  }

  /* Hero section */
  .last_aac9 {
    padding: 2rem 0 1.5rem;
  }

  .focused-f6bf {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .logo-warm-e506 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .image-0010 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .input-9343 {
    max-width: 100%;
    border-radius: 8px;
  }

  .pagination-fresh-b5d5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .alert-c34a {
    padding: 1rem;
  }

  .caption-stale-a859 {
    font-size: 1.5rem;
  }

  .selected_3f34 {
    font-size: 0.75rem;
  }

  .message_7be2 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .card-west-6cd2 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .card-west-6cd2 .chip-wide-ea7f {
    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 */
  .texture_stale_4689 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .list-da7c {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .main_2fa6 {
    margin-bottom: 1rem;
  }

  /* Author */
  .list-5be4 {
    flex-direction: column;
  }

  .list_dirty_d3fd {
    flex-direction: column;
  }

  /* Quotes */
  .hidden_88db {
    flex-direction: column;
  }

  /* Pros/Cons */
  .easy-c497 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .center-d989 {
    flex-direction: column;
  }

  .center-d989 .chip-wide-ea7f {
    width: 100%;
  }

  /* Version comparison */
  .plasma_c4fe {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .hovered-891d {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .soft-45d2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .over-5195 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .aside_f655,
  .wrapper_a124,
  .nav_34f9,
  .complex-3b71,
  .container_1db6,
  .popup_bottom_1c26 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .aside_f655 table,
  .wrapper_a124 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .grid-silver-3b31 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .clean_9d0a {
    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;
  }

  .light_06ba {
    font-size: 1.25rem !important;
  }

  .focused-f6bf {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .bronze-0f22 {
    position: fixed;
  }

  .banner-bottom-46cf {
    padding: 0.625rem 0;
  }

  .block-in-2447 img {
    height: 26px;
  }

  .link-simple-35b6 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .dim_5047 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .focus-8063 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .focus-8063 svg {
    width: 18px;
    height: 18px;
  }

  .focus-8063 .mask_0b8b {
    font-size: 0.7rem;
  }

  .focus-8063 .bottom-c022 {
    font-size: 0.65rem;
  }

  .bronze-b84c,
  .row_24a8 {
    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, .clean_9d0a, .badge_cool_f4f9, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .image-0010 {
    padding: 1rem;
  }

  .pagination-fresh-b5d5 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .alert-c34a {
    padding: 0.875rem;
  }

  .caption-stale-a859 {
    font-size: 1.25rem;
  }

  .card-west-6cd2 .chip-wide-ea7f {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .focused-f6bf {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .chip-wide-ea7f {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .medium-5619 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .list-da7c {
    padding: 1rem;
  }

  .main_2fa6 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .border-2a13,
  .block_563f,
  .cold-9d4a,
  .grid_e643 {
    padding: 1rem;
  }
}

@media print {
  .bronze-0f22,
  .texture_mini_830a,
  .status_focused_a3f3,
  .chip-wide-ea7f,
  .outer-ba7c {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .clean_9d0a {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.badge-6f88 {
  margin-bottom: 3rem;
  text-align: center;
}

.light_06ba {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.inner-df60 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.module-fresh-c239,
.popup-5716 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.slow-5f9b {
  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;
}

.slow-5f9b:hover {
  transform: translateY(-5px);
}

.slow-5f9b strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.slow-5f9b span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.summary_gold_1c9b {
  margin: 3rem 0;
}

.bronze-5493 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.slow_71d8 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.slow_71d8:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.pattern_e48e {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.column_lite_6e40 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.hero-north-c1c6 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.aside-fresh-358b {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.down_0f6c {
  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;
}

.down_0f6c:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.down_0f6c.hero_focused_c848 {
  border-left: 4px solid var(--primary-color);
}

.section_2299 {
  flex-shrink: 0;
}

.section_2299 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.picture_b645 {
  flex: 1;
}

.picture_b645 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.block-1a8f {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.highlight-1ece,
.shadow-bdcc,
.dynamic_669a {
  margin-bottom: 1.5rem;
}

.highlight-1ece h4,
.shadow-bdcc h4,
.dynamic_669a h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.highlight-1ece ul,
.shadow-bdcc ul,
.dynamic_669a ul {
  list-style: none;
  padding: 0;
}

.highlight-1ece li,
.shadow-bdcc li,
.dynamic_669a li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.highlight-1ece li:before,
.shadow-bdcc li:before,
.dynamic_669a li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.widget-action-2abb {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.widget-action-2abb 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;
}

.widget-action-2abb a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.highlight-7b9e { margin: 2rem 0; }
.container-0d62 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.container-0d62 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.section-bright-9776 p { margin-bottom: 1rem; line-height: 1.7; }
.section-bright-9776 strong { color: var(--text-primary); }
.section-bright-9776 ul { list-style: none; padding-left: 0; }
.section-bright-9776 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.section-bright-9776 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.layout-north-1c21 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.panel-pressed-56a3 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.panel-pressed-56a3:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.aside_dynamic_8942 { font-size: 3rem; margin-bottom: 1rem; }
.panel-pressed-56a3 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.panel-pressed-56a3 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.component_brown_79fd { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.component_brown_79fd span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.basic-f88d { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.pink-303c { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.thumbnail_fe5a { text-align: center; }
.current_ba0a { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.lower-9321 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.dim_2355 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.icon_a4cb { margin: 2rem 0; }
.chip-cd33 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.chip-cd33 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.chip-cd33 p, .chip-cd33 ul { line-height: 1.7; }
.chip-cd33 ul { list-style: none; padding-left: 0; }
.chip-cd33 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.chip-cd33 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.clean-935e { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.notification-large-7b51 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.steel-c432 { text-align: center; }
.shade-full-9442 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.top_59e5 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.gallery-fixed-3e42 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.yellow-a1ca { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.rough-a2ac { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.rough-a2ac:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.rough-a2ac h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.rough-a2ac p, .rough-a2ac ul { line-height: 1.7; }
.rough-a2ac ul { list-style: none; padding-left: 0; }
.rough-a2ac ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.rough-a2ac ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 8aa4 */
.shadow-element-j4 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.3;
}
