/* ============================================
   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 */
.card_stale_5599 p,
.caption-red-754d,
.medium-e04f,
.notification-c74f,
.shade-active-a6cf,
.element_copper_e9d3,
.media-selected-8784,
.complex_acb9 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.over-74bd {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.over-74bd > *,
.hot-8897,
.card_stale_5599,
.dim_35fa {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .over-74bd {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .over-74bd {
    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 === */
.pink-362f {
  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 */
.pink-362f.motion_e731 {
  box-shadow: var(--shadow-md);
}

.sidebar-f53b {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.caption-115e img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.aside-8518 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.warm-1b4c {
  display: none;
}

/* Hide mobile actions on desktop */
.gallery-fixed-eaac {
  display: none;
}

.card_basic_3acb a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.card_basic_3acb a:hover,
.card_basic_3acb a.fn-active-7534 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.left-49a7 {
  margin-left: 1rem;
}

.outer-0fdd {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.caption-under-57d8,
.copper_7346 {
  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;
}

.caption-under-57d8 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.caption-under-57d8: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;
}

.copper_7346 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.copper_7346: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;
}

.caption-under-57d8 svg,
.copper_7346 svg {
  flex-shrink: 0;
}

.chip-d7d2 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.slow_5b92 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.slow_5b92::before,
.slow_5b92::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.slow_5b92::before {
  top: -7px;
}

.slow_5b92::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.active-e39f {
  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 === */
.pattern_5012 {
  margin: 2.5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border: 2px solid var(--primary-color);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
}

.purple_2e93 {
  margin: 0 0 2rem;
  text-align: center;
}

.middle-7705 {
  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;
}

.middle-7705:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.nav_875e {
  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);
}

.nav_875e strong {
  color: var(--primary-color);
  font-weight: 700;
}

.aside_west_135c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.caption-dirty-cc2e {
  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;
}

.caption-dirty-cc2e:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.active_2781 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.block-simple-bf74 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.title_5f38 {
  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);
}

.title_5f38 .south-0024 {
  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;
}

.title_5f38 .south-0024 svg {
  flex-shrink: 0;
}

.title_5f38 .nav_narrow_88b9 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.title_5f38 .nav_narrow_88b9: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);
}

.title_5f38 .card_7e03 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.title_5f38 .card_7e03: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) {
  .pattern_5012 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .middle-7705 {
    max-width: 100%;
  }

  .aside_west_135c {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .caption-dirty-cc2e {
    padding: 1rem;
  }

  .active_2781 {
    font-size: 1.5rem;
  }

  .block-simple-bf74 {
    font-size: 0.75rem;
  }

  .nav_875e {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .title_5f38 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .title_5f38 .south-0024 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .aside_west_135c {
    grid-template-columns: 1fr;
  }
}

.stone-a609 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.pagination-glass-b438 {
  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 === */
.video_paper_2f84 {
  margin-bottom: 2.5rem;
}

.slider_a440 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.stone-a609 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.tertiary_blue_d5a3 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.center-6d6c {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.search_c36c {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.title-ae00 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.green-e7ca {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.right-5639 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.easy-34b5 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.easy-34b5 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.pagination-hovered-d85b {
  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);
}

.footer-d37c {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.white_7965 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.nav_3253 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.orange_0150 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.east-cf7e {
  display: grid;
  gap: 1rem;
}

.under_c119 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.primary-ded9 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.fresh_ce24 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.iron_90ed {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.info-new-65e0 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.tabs_north_b46e {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.tabs_north_b46e p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.caption-red-754d {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.simple-ae0f {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.thick_9110 {
  display: grid;
  gap: 2rem;
}

.banner_3401 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.center-6d6c {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.tertiary_blue_d5a3 {
  flex: 1;
}

.title-ae00 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.title-ae00 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.west_4ead {
  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;
}

.green-e7ca {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.text-881f {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.text-881f span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.secondary_2734 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.secondary_2734 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.active-b479 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.active-b479 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.active-b479 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.active-b479 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.layout-liquid-572c {
  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 === */
.popup-fresh-0713 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.media-88ec {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.pink-0918 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.middle-377c h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.middle-377c ol {
  list-style: none;
  counter-reset: toc-counter;
}

.middle-377c ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.middle-377c 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;
}

.middle-377c ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.middle-377c ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.card_stale_5599 {
  padding: 3rem 0 5rem;
}

.dim_35fa {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.dim_35fa.aside-2d8e {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.medium-e04f {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.basic_d30a {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.item-f78d {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.item-f78d h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.south-042c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.active_3eb9 {
  text-align: center;
}

.in_481b {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.silver_452d {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.wrapper_lite_bd94 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.element_copper_e9d3 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.notification-c74f {
  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;
}

.notification-c74f * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.notification-c74f:hover {
  box-shadow: var(--shadow-lg);
}

.notification-c74f.picture-soft-f509 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.notification-c74f h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.notification-c74f ul {
  margin: 1rem 0;
}

.notification-c74f li {
  margin-bottom: 0.75rem;
}

.text_d001 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.south_7c6f {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.south_7c6f a {
  font-weight: 600;
}

/* === Data Tables === */
.hidden-fixed-5225 {
  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;
}

.hidden-fixed-5225 table {
  width: 100%;
  min-width: 600px;
}

.hidden-fixed-5225 thead {
  background-color: var(--primary-color);
  color: white;
}

.hidden-fixed-5225 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.hidden-fixed-5225 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.hidden-fixed-5225 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.hidden-fixed-5225 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.pressed_2c87 {
  list-style: none;
  margin: 1.5rem 0;
}

.pressed_2c87 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.pressed_2c87 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.thumbnail-plasma-078a::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-7534::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 === */
.fresh-5a0c {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.pro-63f3 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.pro-63f3 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.pro-63f3 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.pro-63f3 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.fresh-5a0c blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.media-selected-8784 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.media-selected-8784::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.overlay-first-add1 {
  position: relative;
  margin-bottom: 3rem;
}

.top_5ffa {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.top_5ffa .huge_ac8f {
  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;
}

.primary_d9b6 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.primary_d9b6 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.primary_d9b6 ul {
  margin: 1rem 0;
}

.primary_d9b6 li {
  margin-bottom: 0.75rem;
}

.white-2d34 {
  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 === */
.black-230a {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.black-230a h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.current-02e4 {
  list-style: none;
  margin: 1.5rem 0;
}

.current-02e4 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.current-02e4 a {
  font-weight: 600;
}

.pattern-orange-c5cf {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.complex_acb9 {
  margin: 2.5rem 0;
}

.hard-b6d3 {
  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;
}

.hard-b6d3:hover {
  box-shadow: var(--shadow-lg);
}

.hard-b6d3.easy-7dfc {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.pagination_4d6b {
  flex-shrink: 0;
}

.pagination_4d6b 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);
}

.photo-645d h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.sort-7ab7,
.filter_slow_2186,
.title-action-108a {
  width: 100%;
  margin: 1.5rem 0;
}

.silver_cb5a {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.silver_cb5a strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.component-d9bd {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.component-d9bd strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.first-1630 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.first-1630 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.sidebar_a482 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.hot_4696 {
  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;
}

.hot_4696:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.hot_4696.element_soft_e0e9 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.hot_4696 .status-complex-9585 {
  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;
}

.hot_4696 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.link-tiny-55b0 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.active_over_888d {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.active_over_888d label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.fluid_4185 {
  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 === */
.south-0024 {
  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;
}

.nav_narrow_88b9 {
  background-color: var(--primary-color);
  color: white;
}

.nav_narrow_88b9:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.card_7e03 {
  background-color: var(--text-secondary);
  color: white;
}

.card_7e03:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.upper_4471 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.upper_4471:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.current_d15e {
  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;
}

.current_d15e:hover {
  background-color: var(--primary-dark);
}

.chip_full_fd4b {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.texture-solid-f459 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.icon_2ea1 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.down_749d {
  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 === */
.pink-cc20 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.bright_740f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.bright_740f h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.down-269f {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.warm_c095 {
  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;
}

.in-f373 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.badge-8d58 {
  list-style: none;
  counter-reset: rank-counter;
}

.badge-8d58 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.badge-8d58 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;
}

.pattern_0d6d {
  list-style: none;
}

.pattern_0d6d li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.element-21c5 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.progress-483c {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.progress-483c .gradient-649e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.progress-483c .video_b2f1 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.new-5d3e {
  margin-top: 3rem;
}

.gallery_copper_f186 {
  width: 100%;
}

.pattern-complex-bb63 {
  background-color: #fef3c7;
}

.tooltip-96b5 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.link_dark_857f {
  margin: 3rem 0;
}

.widget_fluid_2b39 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.highlight-tall-22fb {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.highlight-tall-22fb:hover {
  box-shadow: var(--shadow-lg);
}

.highlight-tall-22fb.selected_a65d {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.layout_2015 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.hover-old-9673 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.hover-old-9673 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.right-ff2d {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.highlight-tall-22fb blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.video-orange-5052 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.mask-complex-8b2c {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.down_7544 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.red-83cd {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.column-old-97e2 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.title-d46e {
  margin-top: 1rem;
}

/* === FAQ Section === */
.row_purple_68e8 {
  max-width: 900px;
  margin: 0 auto;
}

.block_6f24 {
  margin: 2rem 0;
}

.grid_pink_adbe {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.grid_pink_adbe summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.grid_pink_adbe summary::-webkit-details-marker {
  display: none;
}

.grid_pink_adbe summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.large-9942 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.grid_pink_adbe[open] .large-9942 {
  transform: rotate(45deg);
}

.green-3c15 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.green-3c15 p:last-child {
  margin-bottom: 0;
}

.table-next-93d2 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.tag-focused-2e78 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.simple_6d80 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.simple_6d80 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.simple_6d80 .south-0024 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.search-rough-ec68 {
  max-width: 900px;
  margin: 0 auto;
}

.wrapper-6526 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.accordion_1d68 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.accordion_1d68.fn-success-7534 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.card-1e3e {
  font-size: 3rem;
  line-height: 1;
}

.north_fca0 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.info_paper_878c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.highlight-dark-d472,
.layout-upper-4a44 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.highlight-dark-d472 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.layout-upper-4a44 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.message-hard-b787,
.menu_7781 {
  margin: 1.5rem 0;
}

.message-hard-b787 li,
.menu_7781 li {
  margin-bottom: 1rem;
}

.hero-south-bac2 {
  margin: 3rem 0;
}

.content-91bf {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.content-91bf h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.content-91bf ol {
  margin: 1rem 0;
}

.content-91bf li {
  margin-bottom: 0.75rem;
}

.menu_black_d132 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.next_0e94 {
  margin: 2rem 0;
}

.backdrop_3c7b {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.brown_62aa {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.fast_93a8 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.stale_00f7 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.action-a92a {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.avatar_aa4d {
  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;
}

.avatar_aa4d img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.search_c36c {
  flex: 1;
}

.search_c36c h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.hover_basic_faae {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.modal_3ef8 p {
  margin-bottom: 1rem;
}

.gas_5d78 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.secondary_e540 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.tall_7522 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.tall_7522 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.lite-5782 h3 {
  margin-bottom: 1.5rem;
}

.text_east_b164 {
  display: grid;
  gap: 2rem;
}

.tag_a3c5 {
  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;
}

.tag_a3c5 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.tag_a3c5 h4 {
  margin: 0 0 0.25rem;
}

.tag_a3c5 p {
  margin: 0;
  font-size: 0.9375rem;
}

.dropdown_8375 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.menu-light-be82 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.menu-light-be82 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.menu-light-be82 ul {
  margin: 1.5rem 0;
}

.menu-light-be82 li {
  margin-bottom: 0.75rem;
}

.lower_82be {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.short-4648 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.modal-copper-90c5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.silver-f6dc h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.silver-f6dc p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.fast_0449 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.fast_0449 a {
  color: rgba(255, 255, 255, 0.8);
}

.progress-b21f {
  list-style: none;
}

.progress-b21f li {
  margin-bottom: 0.75rem;
}

.progress-b21f a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.progress-b21f a:hover {
  color: white;
}

.pro-1d2a {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.message-d974 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.prev-53d2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.huge-38ca {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sort-60ca {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .over-74bd {
    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;
  }

  .focus_stone_5e31 {
    font-size: 1.5rem !important;
  }

  .slider_a440 {
    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 */
  .notification-c74f,
  .shade-active-a6cf,
  .primary_d9b6,
  .photo-645d,
  .layout_2015,
  .highlight-tall-22fb,
  .green-3c15,
  .nav_875e,
  .caption-red-754d,
  .medium-e04f {
    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 */
  .stone-a609 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .tertiary_blue_d5a3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .center-6d6c {
    flex-shrink: 0;
  }

  .search_c36c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .title-ae00,
  .green-e7ca {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .green-e7ca {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .aside-8518 {
    display: none;
  }

  /* Show mobile actions */
  .gallery-fixed-eaac {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .upper-7d91 {
    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;
  }

  .upper-7d91 svg {
    flex-shrink: 0;
  }

  .upper-7d91 .first_90c0 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .upper-7d91 .avatar_huge_951d {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .icon-iron-7f28 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .surface_6ad4 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .upper-7d91:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .warm-1b4c {
    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;
  }

  .warm-1b4c.fn-active-7534 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .warm-1b4c li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .warm-1b4c li:last-child {
    border-bottom: none;
  }

  .warm-1b4c a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .card_basic_3acb {
    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;
  }

  .card_basic_3acb li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .card_basic_3acb li:last-child {
    border-bottom: none;
  }

  .card_basic_3acb a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .left-49a7 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .outer-0fdd {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .caption-under-57d8,
  .copper_7346 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .caption-under-57d8 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .copper_7346 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .card_basic_3acb.fn-active-7534 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .chip-d7d2 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .pink-362f {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .sidebar-f53b {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .active-e39f {
    margin-top: 0;
  }

  /* Hero section */
  .active-e39f {
    padding: 2rem 0 1.5rem;
  }

  .slider_a440 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .caption-red-754d {
    font-size: 1rem;
  }

  /* Hero brand image */
  .pattern_5012 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .middle-7705 {
    max-width: 100%;
    border-radius: 8px;
  }

  .aside_west_135c {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .caption-dirty-cc2e {
    padding: 1rem;
  }

  .active_2781 {
    font-size: 1.5rem;
  }

  .block-simple-bf74 {
    font-size: 0.75rem;
  }

  .nav_875e {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .title_5f38 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .title_5f38 .south-0024 {
    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 */
  .pink-0918 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .hard-b6d3 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .pagination_4d6b {
    margin-bottom: 1rem;
  }

  /* Author */
  .banner_3401 {
    flex-direction: column;
  }

  .avatar_aa4d {
    flex-direction: column;
  }

  /* Quotes */
  .layout_2015 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .info_paper_878c {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .stale_00f7 {
    flex-direction: column;
  }

  .stale_00f7 .south-0024 {
    width: 100%;
  }

  /* Version comparison */
  .sidebar_a482 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .pink-cc20 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .modal-copper-90c5 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .prev-53d2 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .hidden-fixed-5225,
  .filter_slow_2186,
  .form_2a41,
  .gallery_copper_f186,
  .sort-7ab7,
  .title-action-108a {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hidden-fixed-5225 table,
  .filter_slow_2186 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .fluid_4185 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .over-74bd {
    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;
  }

  .focus_stone_5e31 {
    font-size: 1.25rem !important;
  }

  .slider_a440 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .pink-362f {
    position: fixed;
  }

  .sidebar-f53b {
    padding: 0.625rem 0;
  }

  .caption-115e img {
    height: 26px;
  }

  .card_basic_3acb {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .warm-1b4c {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .upper-7d91 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .upper-7d91 svg {
    width: 18px;
    height: 18px;
  }

  .upper-7d91 .first_90c0 {
    font-size: 0.7rem;
  }

  .upper-7d91 .avatar_huge_951d {
    font-size: 0.65rem;
  }

  .caption-under-57d8,
  .copper_7346 {
    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, .over-74bd, .hot-8897, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .pattern_5012 {
    padding: 1rem;
  }

  .aside_west_135c {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .caption-dirty-cc2e {
    padding: 0.875rem;
  }

  .active_2781 {
    font-size: 1.25rem;
  }

  .title_5f38 .south-0024 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .slider_a440 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .south-0024 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .chip_full_fd4b {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .hard-b6d3 {
    padding: 1rem;
  }

  .pagination_4d6b span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .notification-c74f,
  .down_630d,
  .icon_770c,
  .active_center_f218 {
    padding: 1rem;
  }
}

@media print {
  .pink-362f,
  .popup-fresh-0713,
  .chip-d7d2,
  .south-0024,
  .short-4648 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .over-74bd {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.status-da66 {
  margin-bottom: 3rem;
  text-align: center;
}

.focus_stone_5e31 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.dynamic-94d0 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.logo_0462,
.button_top_0759 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.filter-91f0 {
  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;
}

.filter-91f0:hover {
  transform: translateY(-5px);
}

.filter-91f0 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.filter-91f0 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.texture-dim-a165 {
  margin: 3rem 0;
}

.form_active_26aa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.disabled-motion-a7b0 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.disabled-motion-a7b0:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.widget-d38a {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.box_5835 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.caption-west-2f88 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.detail-f0fc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.search_74b5 {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.search_74b5:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.search_74b5.white_1d72 {
  border-left: 4px solid var(--primary-color);
}

.slow-6ff3 {
  flex-shrink: 0;
}

.slow-6ff3 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.basic_0338 {
  flex: 1;
}

.basic_0338 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.row-ff47 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.description-pro-86f2,
.focused_c7c3,
.frame_c1bc {
  margin-bottom: 1.5rem;
}

.description-pro-86f2 h4,
.focused_c7c3 h4,
.frame_c1bc h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.description-pro-86f2 ul,
.focused_c7c3 ul,
.frame_c1bc ul {
  list-style: none;
  padding: 0;
}

.description-pro-86f2 li,
.focused_c7c3 li,
.frame_c1bc li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.description-pro-86f2 li:before,
.focused_c7c3 li:before,
.frame_c1bc li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.east-fd30 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.east-fd30 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;
}

.east-fd30 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.preview-current-57f2 { margin: 2rem 0; }
.preview-slow-e849 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.preview-slow-e849 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.highlight-advanced-a419 p { margin-bottom: 1rem; line-height: 1.7; }
.highlight-advanced-a419 strong { color: var(--text-primary); }
.highlight-advanced-a419 ul { list-style: none; padding-left: 0; }
.highlight-advanced-a419 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.highlight-advanced-a419 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.aside_warm_4d05 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.popup-north-cb99 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.popup-north-cb99:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.focused_3abd { font-size: 3rem; margin-bottom: 1rem; }
.popup-north-cb99 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.popup-north-cb99 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.red-d6d6 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.red-d6d6 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.new-f0f4 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.alert-5ff3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.avatar-07ea { text-align: center; }
.component-advanced-5af0 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.grid-a985 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.thumbnail_e5c3 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.link-gas-ff18 { margin: 2rem 0; }
.tooltip-d6a7 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.tooltip-d6a7 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.tooltip-d6a7 p, .tooltip-d6a7 ul { line-height: 1.7; }
.tooltip-d6a7 ul { list-style: none; padding-left: 0; }
.tooltip-d6a7 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.tooltip-d6a7 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.hot-e602 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.surface-b7e2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.tooltip-tall-422f { text-align: center; }
.gallery-cf78 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.media-lite-8963 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.heading-lower-1a42 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.table-d62b { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.notification_58a3 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.notification_58a3:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.notification_58a3 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.notification_58a3 p, .notification_58a3 ul { line-height: 1.7; }
.notification_58a3 ul { list-style: none; padding-left: 0; }
.notification_58a3 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.notification_58a3 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 2bb0 */
.ghost-box-j4 {
  padding: 0.4rem;
  font-size: 13px;
  line-height: 1.0;
}
