/* ============================================
   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 */
.button_under_c336 p,
.sidebar-white-3faa,
.plasma-67ba,
.easy_0592,
.article-small-22c7,
.first-0ff7,
.full_265c,
.selected-56d7 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.button_under_22bf {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.button_under_22bf > *,
.over-40fb,
.button_under_c336,
.wood_441b {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .button_under_22bf {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .button_under_22bf {
    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 === */
.nav_1ab9 {
  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 */
.nav_1ab9.plasma_3500 {
  box-shadow: var(--shadow-md);
}

.hard_bcae {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.medium_c165 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.menu_outer_8cd7 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.first-0d23 {
  display: none;
}

/* Hide mobile actions on desktop */
.left-ec2f {
  display: none;
}

.out_5f02 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.out_5f02 a:hover,
.out_5f02 a.fn-active-19ec {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.sort_tall_e07e {
  margin-left: 1rem;
}

.label-huge-1b24 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.popup-motion-1434,
.table-08ab {
  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;
}

.popup-motion-1434 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.popup-motion-1434: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;
}

.table-08ab {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.table-08ab: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;
}

.popup-motion-1434 svg,
.table-08ab svg {
  flex-shrink: 0;
}

.grid-1088 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.outline-selected-fc21 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.outline-selected-fc21::before,
.outline-selected-fc21::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.outline-selected-fc21::before {
  top: -7px;
}

.outline-selected-fc21::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.mask_center_6ea5 {
  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 === */
.status_cedf {
  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);
}

.simple_ca4f {
  margin: 0 0 2rem;
  text-align: center;
}

.item-stale-7c54 {
  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;
}

.item-stale-7c54:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.button-7747 {
  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);
}

.button-7747 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.cold-9340 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.picture_12ee {
  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;
}

.picture_12ee:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.texture-77a2 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tooltip-tall-4b40 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.red_9f05 {
  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);
}

.red_9f05 .accordion_pink_9488 {
  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;
}

.red_9f05 .accordion_pink_9488 svg {
  flex-shrink: 0;
}

.red_9f05 .badge_stone_904f {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.red_9f05 .badge_stone_904f: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);
}

.red_9f05 .gradient_6f96 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.red_9f05 .gradient_6f96: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) {
  .status_cedf {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .item-stale-7c54 {
    max-width: 100%;
  }

  .cold-9340 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .picture_12ee {
    padding: 1rem;
  }

  .texture-77a2 {
    font-size: 1.5rem;
  }

  .tooltip-tall-4b40 {
    font-size: 0.75rem;
  }

  .button-7747 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .red_9f05 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .red_9f05 .accordion_pink_9488 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .cold-9340 {
    grid-template-columns: 1fr;
  }
}

.fast-f7a8 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.advanced-3fa7 {
  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 === */
.bottom-26ba {
  margin-bottom: 2.5rem;
}

.easy-c27c {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.fast-f7a8 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.action_eb08 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.aside-old-3347 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.primary_down_3e88 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.bronze_5264 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.focused-12e6 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.hard-e9c4 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.smooth-6798 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.smooth-6798 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.cold_3d46 {
  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);
}

.mask-12e4 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.icon-25f5 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.article_517f {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.avatar-2e42 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.bottom-f4a2 {
  display: grid;
  gap: 1rem;
}

.avatar_rough_401e {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.breadcrumb_ea5f {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.accent_ea07 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.notification_orange_dec2 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.summary-top-0c88 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.basic_2386 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.basic_2386 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.sidebar-white-3faa {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.filter_c0bb {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.cold_ebc1 {
  display: grid;
  gap: 2rem;
}

.dirty_17e0 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.aside-old-3347 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.action_eb08 {
  flex: 1;
}

.bronze_5264 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.bronze_5264 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.picture-bright-0b71 {
  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;
}

.focused-12e6 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.first_9716 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.first_9716 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.tooltip-dark-ebc2 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.tooltip-dark-ebc2 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.cool-de29 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.cool-de29 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.cool-de29 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cool-de29 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.easy_2561 {
  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 === */
.border-center-3d17 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.over-eed6 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.image_feae {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.hot-83c5 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.hot-83c5 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.hot-83c5 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.hot-83c5 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;
}

.hot-83c5 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.hot-83c5 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.button_under_c336 {
  padding: 3rem 0 5rem;
}

.wood_441b {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.wood_441b.middle_da64 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.plasma-67ba {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.row-798f {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.small_1240 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.small_1240 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.picture-basic-3381 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.pattern-d5ea {
  text-align: center;
}

.sort-simple-7ae6 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tag-6ec9 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.yellow_a34a {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.first-0ff7 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.easy_0592 {
  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;
}

.easy_0592 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.easy_0592:hover {
  box-shadow: var(--shadow-lg);
}

.easy_0592.hidden_hot_9830 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.easy_0592 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.easy_0592 ul {
  margin: 1rem 0;
}

.easy_0592 li {
  margin-bottom: 0.75rem;
}

.widget_top_538e {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.selected_c8fa {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.selected_c8fa a {
  font-weight: 600;
}

/* === Data Tables === */
.accordion_8ea7 {
  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;
}

.accordion_8ea7 table {
  width: 100%;
  min-width: 600px;
}

.accordion_8ea7 thead {
  background-color: var(--primary-color);
  color: white;
}

.accordion_8ea7 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.accordion_8ea7 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.accordion_8ea7 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.accordion_8ea7 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.active_5241 {
  list-style: none;
  margin: 1.5rem 0;
}

.active_5241 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.active_5241 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.plasma-1c1e::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-19ec::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 === */
.yellow_3fed {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.container-6895 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.container-6895 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.container-6895 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.container-6895 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.yellow_3fed blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.full_265c {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.full_265c::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.panel-outer-3928 {
  position: relative;
  margin-bottom: 3rem;
}

.video_steel_64ed {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.video_steel_64ed .secondary-d60e {
  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;
}

.label_d7f8 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.label_d7f8 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.label_d7f8 ul {
  margin: 1rem 0;
}

.label_d7f8 li {
  margin-bottom: 0.75rem;
}

.cold-a90f {
  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 === */
.paragraph-pro-b754 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.paragraph-pro-b754 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.preview-narrow-7675 {
  list-style: none;
  margin: 1.5rem 0;
}

.preview-narrow-7675 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.preview-narrow-7675 a {
  font-weight: 600;
}

.card_e2d8 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.selected-56d7 {
  margin: 2.5rem 0;
}

.row-6107 {
  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;
}

.row-6107:hover {
  box-shadow: var(--shadow-lg);
}

.row-6107.filter_huge_b097 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.tiny-9b17 {
  flex-shrink: 0;
}

.tiny-9b17 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);
}

.media-9e71 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.form_dim_a289,
.shade_full_8c5b,
.paper-9b11 {
  width: 100%;
  margin: 1.5rem 0;
}

.silver_eb7a {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.silver_eb7a strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.accordion_stone_cada {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.accordion_stone_cada strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.widget_e256 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.widget_e256 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.smooth-79ba {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.frame_purple_57e4 {
  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;
}

.frame_purple_57e4:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.frame_purple_57e4.disabled_lite_1321 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.frame_purple_57e4 .tag-dirty-d3bb {
  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;
}

.frame_purple_57e4 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.gradient_bcbb {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.chip_current_22f6 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.chip_current_22f6 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.layout-selected-e4cb {
  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 === */
.accordion_pink_9488 {
  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;
}

.badge_stone_904f {
  background-color: var(--primary-color);
  color: white;
}

.badge_stone_904f:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.gradient_6f96 {
  background-color: var(--text-secondary);
  color: white;
}

.gradient_6f96:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.cool_2f40 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.cool_2f40:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.popup-8c8d {
  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;
}

.popup-8c8d:hover {
  background-color: var(--primary-dark);
}

.description-pink-f46a {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.west_9e6a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.wood-0f92 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.aside_glass_5e63 {
  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 === */
.popup-2994 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.main-paper-207f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.main-paper-207f h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.feature-4605 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.aside-basic-0fac {
  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;
}

.border_6d1a {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.icon-9bca {
  list-style: none;
  counter-reset: rank-counter;
}

.icon-9bca li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.icon-9bca 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;
}

.breadcrumb-warm-92be {
  list-style: none;
}

.breadcrumb-warm-92be li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.plasma_6f3c {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.south_d383 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.south_d383 .article-east-1a32 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.south_d383 .wrapper_4b6b {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.clean_9920 {
  margin-top: 3rem;
}

.texture_in_e053 {
  width: 100%;
}

.item-fresh-f8fa {
  background-color: #fef3c7;
}

.search_over_bc36 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.notice-468e {
  margin: 3rem 0;
}

.logo_solid_4291 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.logo_def7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.logo_def7:hover {
  box-shadow: var(--shadow-lg);
}

.logo_def7.old_6a99 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.medium-4d55 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.background_7bcd strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.background_7bcd span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.focused_9b33 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.logo_def7 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.input-full-2159 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.detail_46db {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.backdrop-99b1 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.breadcrumb_f9a1 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.footer-dee4 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.advanced_9172 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.copper_423e {
  max-width: 900px;
  margin: 0 auto;
}

.item_f5c1 {
  margin: 2rem 0;
}

.aside_lower_4b9b {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.aside_lower_4b9b summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.aside_lower_4b9b summary::-webkit-details-marker {
  display: none;
}

.aside_lower_4b9b summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.hero-brown-764b {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.aside_lower_4b9b[open] .hero-brown-764b {
  transform: rotate(45deg);
}

.image_8d0d {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.image_8d0d p:last-child {
  margin-bottom: 0;
}

.motion-215a {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.shadow-hovered-e469 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.container-black-ab30 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.container-black-ab30 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.container-black-ab30 .accordion_pink_9488 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.text-right-f8e8 {
  max-width: 900px;
  margin: 0 auto;
}

.detail-d82e {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.bottom-cdb9 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.bottom-cdb9.fn-success-19ec {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.mini_4c01 {
  font-size: 3rem;
  line-height: 1;
}

.white_3f85 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.left-d0c9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.gallery_d68a,
.link-hovered-87be {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.gallery_d68a h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.link-hovered-87be h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.content_outer_9553,
.carousel-c8c4 {
  margin: 1.5rem 0;
}

.content_outer_9553 li,
.carousel-c8c4 li {
  margin-bottom: 1rem;
}

.search_edf4 {
  margin: 3rem 0;
}

.surface_1711 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.surface_1711 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.surface_1711 ol {
  margin: 1rem 0;
}

.surface_1711 li {
  margin-bottom: 0.75rem;
}

.heading-5119 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.fluid-00bf {
  margin: 2rem 0;
}

.border-pro-c6c6 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.dropdown-080f {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.header-1f77 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.border-stale-0923 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.image_598e {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.hero-bright-e2c0 {
  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;
}

.hero-bright-e2c0 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.primary_down_3e88 {
  flex: 1;
}

.primary_down_3e88 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.action_c4c4 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.background_cf2a p {
  margin-bottom: 1rem;
}

.photo-f77d {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.input-green-7b6f {
  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_d5db {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.tall_d5db a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.gallery-7a25 h3 {
  margin-bottom: 1.5rem;
}

.dim_8a15 {
  display: grid;
  gap: 2rem;
}

.primary_497d {
  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;
}

.primary_497d img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.primary_497d h4 {
  margin: 0 0 0.25rem;
}

.primary_497d p {
  margin: 0;
  font-size: 0.9375rem;
}

.pattern-pro-26de {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.text_ddda {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.text_ddda h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.text_ddda ul {
  margin: 1.5rem 0;
}

.text_ddda li {
  margin-bottom: 0.75rem;
}

.list-1405 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.module-short-9831 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.section_26bc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.message-hard-772e h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.message-hard-772e p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.form_22c4 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.form_22c4 a {
  color: rgba(255, 255, 255, 0.8);
}

.overlay-c4ae {
  list-style: none;
}

.overlay-c4ae li {
  margin-bottom: 0.75rem;
}

.overlay-c4ae a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.overlay-c4ae a:hover {
  color: white;
}

.full-6d63 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.caption_out_ae86 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.west-7a09 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.focus_b85d {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.hot_d0b3 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .button_under_22bf {
    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;
  }

  .photo_thick_e34c {
    font-size: 1.5rem !important;
  }

  .easy-c27c {
    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 */
  .easy_0592,
  .article-small-22c7,
  .label_d7f8,
  .media-9e71,
  .medium-4d55,
  .logo_def7,
  .image_8d0d,
  .button-7747,
  .sidebar-white-3faa,
  .plasma-67ba {
    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 */
  .fast-f7a8 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .action_eb08 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .aside-old-3347 {
    flex-shrink: 0;
  }

  .primary_down_3e88 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .bronze_5264,
  .focused-12e6 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .focused-12e6 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .menu_outer_8cd7 {
    display: none;
  }

  /* Show mobile actions */
  .left-ec2f {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .disabled-494e {
    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;
  }

  .disabled-494e svg {
    flex-shrink: 0;
  }

  .disabled-494e .bottom_4c3d {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .disabled-494e .dirty-0090 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .black-3e90 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .narrow_7d17 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .disabled-494e:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .first-0d23 {
    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;
  }

  .first-0d23.fn-active-19ec {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .first-0d23 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .first-0d23 li:last-child {
    border-bottom: none;
  }

  .first-0d23 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .out_5f02 {
    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;
  }

  .out_5f02 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .out_5f02 li:last-child {
    border-bottom: none;
  }

  .out_5f02 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .sort_tall_e07e {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .label-huge-1b24 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .popup-motion-1434,
  .table-08ab {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .popup-motion-1434 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .table-08ab {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .out_5f02.fn-active-19ec {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .grid-1088 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .nav_1ab9 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .hard_bcae {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .mask_center_6ea5 {
    margin-top: 0;
  }

  /* Hero section */
  .mask_center_6ea5 {
    padding: 2rem 0 1.5rem;
  }

  .easy-c27c {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .sidebar-white-3faa {
    font-size: 1rem;
  }

  /* Hero brand image */
  .status_cedf {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .item-stale-7c54 {
    max-width: 100%;
    border-radius: 8px;
  }

  .cold-9340 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .picture_12ee {
    padding: 1rem;
  }

  .texture-77a2 {
    font-size: 1.5rem;
  }

  .tooltip-tall-4b40 {
    font-size: 0.75rem;
  }

  .button-7747 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .red_9f05 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .red_9f05 .accordion_pink_9488 {
    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 */
  .image_feae {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .row-6107 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .tiny-9b17 {
    margin-bottom: 1rem;
  }

  /* Author */
  .dirty_17e0 {
    flex-direction: column;
  }

  .hero-bright-e2c0 {
    flex-direction: column;
  }

  /* Quotes */
  .medium-4d55 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .left-d0c9 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .border-stale-0923 {
    flex-direction: column;
  }

  .border-stale-0923 .accordion_pink_9488 {
    width: 100%;
  }

  /* Version comparison */
  .smooth-79ba {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .popup-2994 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .section_26bc {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .west-7a09 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .accordion_8ea7,
  .shade_full_8c5b,
  .focus-52d1,
  .texture_in_e053,
  .form_dim_a289,
  .paper-9b11 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .accordion_8ea7 table,
  .shade_full_8c5b table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .layout-selected-e4cb {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .button_under_22bf {
    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;
  }

  .photo_thick_e34c {
    font-size: 1.25rem !important;
  }

  .easy-c27c {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .nav_1ab9 {
    position: fixed;
  }

  .hard_bcae {
    padding: 0.625rem 0;
  }

  .medium_c165 img {
    height: 26px;
  }

  .out_5f02 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .first-0d23 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .disabled-494e {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .disabled-494e svg {
    width: 18px;
    height: 18px;
  }

  .disabled-494e .bottom_4c3d {
    font-size: 0.7rem;
  }

  .disabled-494e .dirty-0090 {
    font-size: 0.65rem;
  }

  .popup-motion-1434,
  .table-08ab {
    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, .button_under_22bf, .over-40fb, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .status_cedf {
    padding: 1rem;
  }

  .cold-9340 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .picture_12ee {
    padding: 0.875rem;
  }

  .texture-77a2 {
    font-size: 1.25rem;
  }

  .red_9f05 .accordion_pink_9488 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .easy-c27c {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .accordion_pink_9488 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .description-pink-f46a {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .row-6107 {
    padding: 1rem;
  }

  .tiny-9b17 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .easy_0592,
  .pressed_48d1,
  .narrow_e466,
  .feature-3d01 {
    padding: 1rem;
  }
}

@media print {
  .nav_1ab9,
  .border-center-3d17,
  .grid-1088,
  .accordion_pink_9488,
  .module-short-9831 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .button_under_22bf {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.steel_b232 {
  margin-bottom: 3rem;
  text-align: center;
}

.photo_thick_e34c {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.menu_25bf {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.logo_cdd2,
.media-0fda {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.highlight-light-c28f {
  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;
}

.highlight-light-c28f:hover {
  transform: translateY(-5px);
}

.highlight-light-c28f strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.highlight-light-c28f span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.footer-purple-934c {
  margin: 3rem 0;
}

.modal_fluid_aba0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.thumbnail-glass-372f {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.thumbnail-glass-372f:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.bottom_22eb {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pagination-current-e308 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.info_outer_92d0 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.lower-efd7 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.form_6c1c {
  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;
}

.form_6c1c:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.form_6c1c.container_east_c1e8 {
  border-left: 4px solid var(--primary-color);
}

.active-silver-c277 {
  flex-shrink: 0;
}

.active-silver-c277 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.lite-13a1 {
  flex: 1;
}

.lite-13a1 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.thumbnail-7345 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.logo_101c,
.text_36fe,
.block_pink_66f2 {
  margin-bottom: 1.5rem;
}

.logo_101c h4,
.text_36fe h4,
.block_pink_66f2 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo_101c ul,
.text_36fe ul,
.block_pink_66f2 ul {
  list-style: none;
  padding: 0;
}

.logo_101c li,
.text_36fe li,
.block_pink_66f2 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.logo_101c li:before,
.text_36fe li:before,
.block_pink_66f2 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.picture-focused-4f8f {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.picture-focused-4f8f 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;
}

.picture-focused-4f8f a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.list_cold_f9c8 { margin: 2rem 0; }
.video_fluid_9efc { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.video_fluid_9efc h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.iron_09b0 p { margin-bottom: 1rem; line-height: 1.7; }
.iron_09b0 strong { color: var(--text-primary); }
.iron_09b0 ul { list-style: none; padding-left: 0; }
.iron_09b0 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.iron_09b0 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.tag-80b0 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.large-88a0 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.large-88a0:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.hovered_d674 { font-size: 3rem; margin-bottom: 1rem; }
.large-88a0 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.large-88a0 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.bronze_f1fb { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.bronze_f1fb span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.footer-c07c { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.label_a395 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.chip_87f9 { text-align: center; }
.focus_under_9565 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.overlay_current_f386 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.message_07ec { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.hovered_85bb { margin: 2rem 0; }
.focused_aac7 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.focused_aac7 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.focused_aac7 p, .focused_aac7 ul { line-height: 1.7; }
.focused_aac7 ul { list-style: none; padding-left: 0; }
.focused_aac7 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.focused_aac7 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.highlight-d0c7 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.list_plasma_ecf4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.pattern-down-6c60 { text-align: center; }
.white_78b7 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.modal-smooth-3dc3 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.slow-e570 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.header_new_711e { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.accent-in-9e19 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.accent-in-9e19:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.accent-in-9e19 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.accent-in-9e19 p, .accent-in-9e19 ul { line-height: 1.7; }
.accent-in-9e19 ul { list-style: none; padding-left: 0; }
.accent-in-9e19 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.accent-in-9e19 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: d931 */
.phantom-card-m2 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.0;
}
