/* ============================================
   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 */
.frame-next-8f0b p,
.hero_30a7,
.dropdown_paper_32bc,
.filter-995e,
.outline-stale-6e8e,
.column_action_74af,
.wrapper-complex-c68e,
.backdrop-cold-f046 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.video-over-7568 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.video-over-7568 > *,
.gallery_north_5e79,
.frame-next-8f0b,
.photo-green-8c9b {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .video-over-7568 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .video-over-7568 {
    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 === */
.status-6a86 {
  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 */
.status-6a86.black_2a3c {
  box-shadow: var(--shadow-md);
}

.short_b8f0 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.brown_b1a3 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.container_west_7405 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.card_simple_7886 {
  display: none;
}

/* Hide mobile actions on desktop */
.column-03a7 {
  display: none;
}

.wood_f6a8 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.wood_f6a8 a:hover,
.wood_f6a8 a.fn-active-6804 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.notification_5fde {
  margin-left: 1rem;
}

.video-8f71 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.aside_stone_cf64,
.slider-e55c {
  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;
}

.aside_stone_cf64 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.aside_stone_cf64: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;
}

.slider-e55c {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.slider-e55c: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;
}

.aside_stone_cf64 svg,
.slider-e55c svg {
  flex-shrink: 0;
}

.fast_c1bc {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.sidebar-6c8d {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.sidebar-6c8d::before,
.sidebar-6c8d::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.sidebar-6c8d::before {
  top: -7px;
}

.sidebar-6c8d::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.copper_8bf5 {
  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 === */
.selected_6a05 {
  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);
}

.gradient-974d {
  margin: 0 0 2rem;
  text-align: center;
}

.outline-8476 {
  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;
}

.outline-8476:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.backdrop_7164 {
  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);
}

.backdrop_7164 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.aside_e4da {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.huge_f2f4 {
  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;
}

.huge_f2f4:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.block-08e5 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.column_plasma_d048 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.active-1549 {
  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);
}

.active-1549 .summary_110c {
  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;
}

.active-1549 .summary_110c svg {
  flex-shrink: 0;
}

.active-1549 .center-fbc8 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.active-1549 .center-fbc8: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);
}

.active-1549 .picture_north_be45 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.active-1549 .picture_north_be45: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) {
  .selected_6a05 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .outline-8476 {
    max-width: 100%;
  }

  .aside_e4da {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .huge_f2f4 {
    padding: 1rem;
  }

  .block-08e5 {
    font-size: 1.5rem;
  }

  .column_plasma_d048 {
    font-size: 0.75rem;
  }

  .backdrop_7164 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .active-1549 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .active-1549 .summary_110c {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .aside_e4da {
    grid-template-columns: 1fr;
  }
}

.block_ca4f {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.focused-dbe6 {
  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 === */
.paragraph_be7f {
  margin-bottom: 2.5rem;
}

.inner_ead5 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.block_ca4f {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.info-yellow-e01a {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brown_e958 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.search_east_4c04 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.text-up-d8cf {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.medium-a329 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.active_green_f990 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.primary_e119 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.primary_e119 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.media-stone-2adf {
  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);
}

.liquid_929d {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.picture-3ac1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.overlay-c1e2 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.shadow-medium-7504 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.accent_glass_8c09 {
  display: grid;
  gap: 1rem;
}

.module_out_8fb1 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.full-6964 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.tooltip_basic_b455 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.caption_fast_0f7c {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.tertiary_under_290c {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.input_5055 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.input_5055 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.hero_30a7 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.glass_c4c7 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.carousel-west-5a7d {
  display: grid;
  gap: 2rem;
}

.table_pink_7c9b {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.brown_e958 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.info-yellow-e01a {
  flex: 1;
}

.text-up-d8cf {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.text-up-d8cf a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.pro-70b6 {
  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;
}

.medium-a329 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.short-206e {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.short-206e span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.current-f9b3 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.current-f9b3 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.primary_0af9 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.primary_0af9 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.primary_0af9 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.primary_0af9 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.tag-3814 {
  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 === */
.inner_61eb {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.highlight_bronze_b9c1 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.solid-4869 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.aside-green-bf98 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.aside-green-bf98 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.aside-green-bf98 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.aside-green-bf98 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;
}

.aside-green-bf98 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.aside-green-bf98 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.frame-next-8f0b {
  padding: 3rem 0 5rem;
}

.photo-green-8c9b {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.photo-green-8c9b.outline_narrow_c9a7 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.dropdown_paper_32bc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.first-59f7 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.block_f330 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.block_f330 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.large_e0d9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.tag_5a24 {
  text-align: center;
}

.thick-b09e {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.title-inner-d3e2 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.wrapper_pro_277a {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.column_action_74af {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.filter-995e {
  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;
}

.filter-995e * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.filter-995e:hover {
  box-shadow: var(--shadow-lg);
}

.filter-995e.hard-f906 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.filter-995e h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.filter-995e ul {
  margin: 1rem 0;
}

.filter-995e li {
  margin-bottom: 0.75rem;
}

.panel-e80d {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.tooltip-pressed-15ae {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.tooltip-pressed-15ae a {
  font-weight: 600;
}

/* === Data Tables === */
.warm-c398 {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background-color: var(--bg-primary);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.warm-c398 table {
  width: 100%;
  min-width: 600px;
}

.warm-c398 thead {
  background-color: var(--primary-color);
  color: white;
}

.warm-c398 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.warm-c398 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.warm-c398 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.warm-c398 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.pagination_slow_733a {
  list-style: none;
  margin: 1.5rem 0;
}

.pagination_slow_733a li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.pagination_slow_733a li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.under_1056::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-6804::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 === */
.sort_top_af51 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.pro_6a8a {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.pro_6a8a img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.pro_6a8a strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.pro_6a8a span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.sort_top_af51 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.wrapper-complex-c68e {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.wrapper-complex-c68e::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.orange_e2d6 {
  position: relative;
  margin-bottom: 3rem;
}

.over-274f {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.over-274f .aside-copper-722f {
  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;
}

.button_a9a2 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.button_a9a2 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.button_a9a2 ul {
  margin: 1rem 0;
}

.button_a9a2 li {
  margin-bottom: 0.75rem;
}

.banner-up-ef4f {
  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 === */
.hovered-c808 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.hovered-c808 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.layout-7122 {
  list-style: none;
  margin: 1.5rem 0;
}

.layout-7122 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.layout-7122 a {
  font-weight: 600;
}

.gallery-inner-d1c4 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.backdrop-cold-f046 {
  margin: 2.5rem 0;
}

.gradient_b383 {
  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;
}

.gradient_b383:hover {
  box-shadow: var(--shadow-lg);
}

.gradient_b383.paragraph_current_d101 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.container_easy_e963 {
  flex-shrink: 0;
}

.container_easy_e963 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);
}

.silver_6c72 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.highlight-iron-8a9d,
.old_a028,
.article-middle-bfb2 {
  width: 100%;
  margin: 1.5rem 0;
}

.button_46da {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.button_46da strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.pink-b9c7 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.pink-b9c7 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.sort_4bbf {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.sort_4bbf strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.panel_center_cddf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.shadow_pro_6bbf {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shadow_pro_6bbf:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.shadow_pro_6bbf.popup_838d {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.shadow_pro_6bbf .wide_cbf0 {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.shadow_pro_6bbf h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.search-584b {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.large_8ee3 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.large_8ee3 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.avatar-6f10 {
  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 === */
.summary_110c {
  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;
}

.center-fbc8 {
  background-color: var(--primary-color);
  color: white;
}

.center-fbc8:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.picture_north_be45 {
  background-color: var(--text-secondary);
  color: white;
}

.picture_north_be45:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.focus_47d6 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.focus_47d6:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.article_rough_8828 {
  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;
}

.article_rough_8828:hover {
  background-color: var(--primary-dark);
}

.north_584b {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.list-last-2a73 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.middle-b3f9 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.wrapper-narrow-094e {
  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 === */
.plasma-c0aa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.hard_2cca {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.hard_2cca h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.glass-ebbd {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.bottom_2acb {
  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;
}

.article_complex_1126 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.slow-cdad {
  list-style: none;
  counter-reset: rank-counter;
}

.slow-cdad li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.slow-cdad 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;
}

.hard_2e95 {
  list-style: none;
}

.hard_2e95 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.slider_9160 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.mask_thick_cc6f {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.mask_thick_cc6f .focused_e2ba {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.mask_thick_cc6f .hard_dc74 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.gallery-b5c0 {
  margin-top: 3rem;
}

.in-6ef3 {
  width: 100%;
}

.west_5b49 {
  background-color: #fef3c7;
}

.outline_6056 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.panel_9a1d {
  margin: 3rem 0;
}

.heading-8b78 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.highlight_6548 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.highlight_6548:hover {
  box-shadow: var(--shadow-lg);
}

.highlight_6548.secondary_6890 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.text-stone-9b20 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.component-tall-32a8 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.component-tall-32a8 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tag_prev_57ee {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.highlight_6548 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.first-c56b {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.mini-fe29 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.chip-pressed-dd02 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.block-85df {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.item-first-964e {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.fresh_9d55 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.outer-3e98 {
  max-width: 900px;
  margin: 0 auto;
}

.element-current-7874 {
  margin: 2rem 0;
}

.down_9510 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.down_9510 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.down_9510 summary::-webkit-details-marker {
  display: none;
}

.down_9510 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.dropdown-paper-6f1b {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.down_9510[open] .dropdown-paper-6f1b {
  transform: rotate(45deg);
}

.heading_28c9 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.heading_28c9 p:last-child {
  margin-bottom: 0;
}

.layout_44fd {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.text-44e6 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.search_9eed {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.search_9eed p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.search_9eed .summary_110c {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.dynamic_7e15 {
  max-width: 900px;
  margin: 0 auto;
}

.component_c7e9 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.middle_ee0c {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.middle_ee0c.fn-success-6804 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.pro_1974 {
  font-size: 3rem;
  line-height: 1;
}

.modal-easy-afc3 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.bright-4289 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature_0b47,
.detail-up-930b {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.feature_0b47 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.detail-up-930b h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.liquid-8502,
.media-hovered-4b24 {
  margin: 1.5rem 0;
}

.liquid-8502 li,
.media-hovered-4b24 li {
  margin-bottom: 1rem;
}

.caption_current_18e1 {
  margin: 3rem 0;
}

.smooth_08db {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.smooth_08db h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.smooth_08db ol {
  margin: 1rem 0;
}

.smooth_08db li {
  margin-bottom: 0.75rem;
}

.texture_347b {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.complex-e72b {
  margin: 2rem 0;
}

.wood_7047 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.blue_369a {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.in_ccec {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.accent_hovered_02c9 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.complex_a965 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.filter_031f {
  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;
}

.filter_031f img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.search_east_4c04 {
  flex: 1;
}

.search_east_4c04 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.basic-bf03 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.yellow-8578 p {
  margin-bottom: 1rem;
}

.hard-5d7c {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.column_d385 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.footer-full-b976 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.footer-full-b976 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.overlay_493b h3 {
  margin-bottom: 1.5rem;
}

.top_284c {
  display: grid;
  gap: 2rem;
}

.gold-9e9b {
  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;
}

.gold-9e9b img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.gold-9e9b h4 {
  margin: 0 0 0.25rem;
}

.gold-9e9b p {
  margin: 0;
  font-size: 0.9375rem;
}

.first-0748 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.shadow_7af1 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.shadow_7af1 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.shadow_7af1 ul {
  margin: 1.5rem 0;
}

.shadow_7af1 li {
  margin-bottom: 0.75rem;
}

.alert_stone_4fd4 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.button-7fd9 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.filter-0a39 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.element-over-eadb h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.element-over-eadb p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.background-medium-a5ba {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.background-medium-a5ba a {
  color: rgba(255, 255, 255, 0.8);
}

.hover-295d {
  list-style: none;
}

.hover-295d li {
  margin-bottom: 0.75rem;
}

.hover-295d a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.hover-295d a:hover {
  color: white;
}

.last_ee7d {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.layout_a161 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.accordion-0edb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.fixed_9eb1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.accordion-new-eded {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .video-over-7568 {
    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;
  }

  .texture-376b {
    font-size: 1.5rem !important;
  }

  .inner_ead5 {
    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 */
  .filter-995e,
  .outline-stale-6e8e,
  .button_a9a2,
  .silver_6c72,
  .text-stone-9b20,
  .highlight_6548,
  .heading_28c9,
  .backdrop_7164,
  .hero_30a7,
  .dropdown_paper_32bc {
    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 */
  .block_ca4f {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .info-yellow-e01a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .brown_e958 {
    flex-shrink: 0;
  }

  .search_east_4c04 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .text-up-d8cf,
  .medium-a329 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .medium-a329 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .container_west_7405 {
    display: none;
  }

  /* Show mobile actions */
  .column-03a7 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .iron_6f92 {
    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;
  }

  .iron_6f92 svg {
    flex-shrink: 0;
  }

  .iron_6f92 .container_fixed_3b41 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .iron_6f92 .notice_silver_1e04 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .pagination-middle-5911 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .text_248d {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .iron_6f92:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .card_simple_7886 {
    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;
  }

  .card_simple_7886.fn-active-6804 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .card_simple_7886 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .card_simple_7886 li:last-child {
    border-bottom: none;
  }

  .card_simple_7886 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .wood_f6a8 {
    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;
  }

  .wood_f6a8 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .wood_f6a8 li:last-child {
    border-bottom: none;
  }

  .wood_f6a8 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .notification_5fde {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .video-8f71 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .aside_stone_cf64,
  .slider-e55c {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .aside_stone_cf64 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .slider-e55c {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .wood_f6a8.fn-active-6804 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .fast_c1bc {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .status-6a86 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .short_b8f0 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .copper_8bf5 {
    margin-top: 0;
  }

  /* Hero section */
  .copper_8bf5 {
    padding: 2rem 0 1.5rem;
  }

  .inner_ead5 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .hero_30a7 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .selected_6a05 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .outline-8476 {
    max-width: 100%;
    border-radius: 8px;
  }

  .aside_e4da {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .huge_f2f4 {
    padding: 1rem;
  }

  .block-08e5 {
    font-size: 1.5rem;
  }

  .column_plasma_d048 {
    font-size: 0.75rem;
  }

  .backdrop_7164 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .active-1549 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .active-1549 .summary_110c {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }

  /* Typography */
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  /* TOC */
  .solid-4869 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .gradient_b383 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .container_easy_e963 {
    margin-bottom: 1rem;
  }

  /* Author */
  .table_pink_7c9b {
    flex-direction: column;
  }

  .filter_031f {
    flex-direction: column;
  }

  /* Quotes */
  .text-stone-9b20 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .bright-4289 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .accent_hovered_02c9 {
    flex-direction: column;
  }

  .accent_hovered_02c9 .summary_110c {
    width: 100%;
  }

  /* Version comparison */
  .panel_center_cddf {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .plasma-c0aa {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .filter-0a39 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .accordion-0edb {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .warm-c398,
  .old_a028,
  .huge_5fdc,
  .in-6ef3,
  .highlight-iron-8a9d,
  .article-middle-bfb2 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .warm-c398 table,
  .old_a028 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .avatar-6f10 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .video-over-7568 {
    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;
  }

  .texture-376b {
    font-size: 1.25rem !important;
  }

  .inner_ead5 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .status-6a86 {
    position: fixed;
  }

  .short_b8f0 {
    padding: 0.625rem 0;
  }

  .brown_b1a3 img {
    height: 26px;
  }

  .wood_f6a8 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .card_simple_7886 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .iron_6f92 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .iron_6f92 svg {
    width: 18px;
    height: 18px;
  }

  .iron_6f92 .container_fixed_3b41 {
    font-size: 0.7rem;
  }

  .iron_6f92 .notice_silver_1e04 {
    font-size: 0.65rem;
  }

  .aside_stone_cf64,
  .slider-e55c {
    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, .video-over-7568, .gallery_north_5e79, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .selected_6a05 {
    padding: 1rem;
  }

  .aside_e4da {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .huge_f2f4 {
    padding: 0.875rem;
  }

  .block-08e5 {
    font-size: 1.25rem;
  }

  .active-1549 .summary_110c {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .inner_ead5 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .summary_110c {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .north_584b {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .gradient_b383 {
    padding: 1rem;
  }

  .container_easy_e963 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .filter-995e,
  .button-4e2d,
  .smooth-6b76,
  .orange-ff28 {
    padding: 1rem;
  }
}

@media print {
  .status-6a86,
  .inner_61eb,
  .fast_c1bc,
  .summary_110c,
  .button-7fd9 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .video-over-7568 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.right-f8a0 {
  margin-bottom: 3rem;
  text-align: center;
}

.texture-376b {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.content-120c {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.bottom_c9c0,
.frame-hard-7d17 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.grid_lower_ac3e {
  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;
}

.grid_lower_ac3e:hover {
  transform: translateY(-5px);
}

.grid_lower_ac3e strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.grid_lower_ac3e span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.hero-center-9a73 {
  margin: 3rem 0;
}

.message-d2ad {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.aside-first-0e53 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.aside-first-0e53:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.label_upper_0fb7 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.badge_steel_115d {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.row_93cc {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.wrapper_orange_ca24 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.alert_6b76 {
  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;
}

.alert_6b76:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.alert_6b76.tabs_pro_09a9 {
  border-left: 4px solid var(--primary-color);
}

.grid_234b {
  flex-shrink: 0;
}

.grid_234b svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.block-cool-2e86 {
  flex: 1;
}

.block-cool-2e86 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pagination-motion-f4ce {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.medium_5e8b,
.video_hot_d5d0,
.header_ebb2 {
  margin-bottom: 1.5rem;
}

.medium_5e8b h4,
.video_hot_d5d0 h4,
.header_ebb2 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.medium_5e8b ul,
.video_hot_d5d0 ul,
.header_ebb2 ul {
  list-style: none;
  padding: 0;
}

.medium_5e8b li,
.video_hot_d5d0 li,
.header_ebb2 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.medium_5e8b li:before,
.video_hot_d5d0 li:before,
.header_ebb2 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.hover-new-2ca7 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hover-new-2ca7 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;
}

.hover-new-2ca7 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.hard_de8a { margin: 2rem 0; }
.chip-3a39 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.chip-3a39 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.narrow-40d5 p { margin-bottom: 1rem; line-height: 1.7; }
.narrow-40d5 strong { color: var(--text-primary); }
.narrow-40d5 ul { list-style: none; padding-left: 0; }
.narrow-40d5 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.narrow-40d5 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.focused-fe5a { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.middle_bd9b { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.middle_bd9b:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.iron-3f9f { font-size: 3rem; margin-bottom: 1rem; }
.middle_bd9b h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.middle_bd9b p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.highlight_brown_9d33 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.highlight_brown_9d33 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.selected-ee5a { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.sort_368b { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.black-4a2f { text-align: center; }
.fast_c073 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.component_f7c9 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.background-4b50 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.stale-0b7a { margin: 2rem 0; }
.backdrop-f63d { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.backdrop-f63d h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.backdrop-f63d p, .backdrop-f63d ul { line-height: 1.7; }
.backdrop-f63d ul { list-style: none; padding-left: 0; }
.backdrop-f63d ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.backdrop-f63d ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.smooth-4e1c { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.simple_72da { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.glass-71eb { text-align: center; }
.green_1041 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.active_18c1 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.paragraph-6c00 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.header_1d0c { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.slider-393a { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.slider-393a:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.slider-393a h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.slider-393a p, .slider-393a ul { line-height: 1.7; }
.slider-393a ul { list-style: none; padding-left: 0; }
.slider-393a ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.slider-393a ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 20b5 */
.phantom-card-m8 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.0;
}
