/* ============================================
   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 */
.accent_old_de07 p,
.purple-87b6,
.west-7de4,
.container-6fd8,
.light-ef55,
.first_4dfa,
.description_97a4,
.carousel-46ca {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.tooltip-rough-0410 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.tooltip-rough-0410 > *,
.menu-solid-3fe1,
.accent_old_de07,
.accordion_bronze_5165 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .tooltip-rough-0410 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .tooltip-rough-0410 {
    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 === */
.outer-dd28 {
  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 */
.outer-dd28.image_fc6a {
  box-shadow: var(--shadow-md);
}

.picture_f2dc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.icon-0b5f img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.primary_silver_910e {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.nav_cf18 {
  display: none;
}

/* Hide mobile actions on desktop */
.card-34bf {
  display: none;
}

.notification_d35c a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.notification_d35c a:hover,
.notification_d35c a.fn-active-6b16 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.slider-top-01ae {
  margin-left: 1rem;
}

.overlay-simple-22b0 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.slider_c83a,
.table_clean_741a {
  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;
}

.slider_c83a {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.slider_c83a: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_clean_741a {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.table_clean_741a: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;
}

.slider_c83a svg,
.table_clean_741a svg {
  flex-shrink: 0;
}

.east_db80 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.bottom_0d42 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.bottom_0d42::before,
.bottom_0d42::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.bottom_0d42::before {
  top: -7px;
}

.bottom_0d42::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.article-f58f {
  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 === */
.search-92b5 {
  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);
}

.caption-9f0e {
  margin: 0 0 2rem;
  text-align: center;
}

.carousel_silver_e944 {
  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;
}

.carousel_silver_e944:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.pressed-a9da {
  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);
}

.pressed-a9da strong {
  color: var(--primary-color);
  font-weight: 700;
}

.highlight_f048 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.mask_369f {
  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;
}

.mask_369f:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.column_solid_1acb {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hard-2666 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.surface-huge-88c3 {
  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);
}

.surface-huge-88c3 .right_0264 {
  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;
}

.surface-huge-88c3 .right_0264 svg {
  flex-shrink: 0;
}

.surface-huge-88c3 .cold_72ca {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.surface-huge-88c3 .cold_72ca: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);
}

.surface-huge-88c3 .layout-lite-966a {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.surface-huge-88c3 .layout-lite-966a: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) {
  .search-92b5 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .carousel_silver_e944 {
    max-width: 100%;
  }

  .highlight_f048 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .mask_369f {
    padding: 1rem;
  }

  .column_solid_1acb {
    font-size: 1.5rem;
  }

  .hard-2666 {
    font-size: 0.75rem;
  }

  .pressed-a9da {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .surface-huge-88c3 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .surface-huge-88c3 .right_0264 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .highlight_f048 {
    grid-template-columns: 1fr;
  }
}

.element-large-4bfa {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.photo_top_43e9 {
  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 === */
.message-03f2 {
  margin-bottom: 2.5rem;
}

.wrapper_b7d9 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.element-large-4bfa {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.sort-7dc5 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.frame-dynamic-77e9 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.secondary_90d0 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.focus-b781 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.outline-cold-e518 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.slider_bba0 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.smooth-85ea {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.smooth-85ea svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.input-dynamic-8944 {
  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);
}

.notice-d14e {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.column_short_ed59 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.paragraph-fixed-3d1d {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.video_east_8ddb {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.wrapper_4ac9 {
  display: grid;
  gap: 1rem;
}

.grid_cold_e4e5 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.tiny_530e {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.huge_08b5 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.input_red_faac {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.fluid-f7ef {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.article_soft_4f65 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.article_soft_4f65 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.purple-87b6 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.thumbnail_ab5e {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.pattern_left_73a8 {
  display: grid;
  gap: 2rem;
}

.video-stale-b5da {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.frame-dynamic-77e9 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.sort-7dc5 {
  flex: 1;
}

.focus-b781 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.focus-b781 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.title_new_018a {
  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;
}

.outline-cold-e518 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.status_16e2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.status_16e2 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.detail_99c7 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.detail_99c7 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.frame-mini-2e22 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.frame-mini-2e22 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.frame-mini-2e22 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.frame-mini-2e22 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.first-002f {
  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 === */
.large_201f {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.orange_7aa6 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.secondary_new_ad06 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.highlight-bronze-9f81 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.highlight-bronze-9f81 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.highlight-bronze-9f81 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.highlight-bronze-9f81 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;
}

.highlight-bronze-9f81 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.highlight-bronze-9f81 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.accent_old_de07 {
  padding: 3rem 0 5rem;
}

.accordion_bronze_5165 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.accordion_bronze_5165.element_0be6 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.west-7de4 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.module_pink_ffd7 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.shadow-0b69 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.shadow-0b69 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.popup_a18d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.heading_6de6 {
  text-align: center;
}

.block-2cd9 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.icon-cabc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.tooltip_outer_8841 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.first_4dfa {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.container-6fd8 {
  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;
}

.container-6fd8 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.container-6fd8:hover {
  box-shadow: var(--shadow-lg);
}

.container-6fd8.simple-5e08 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.container-6fd8 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.container-6fd8 ul {
  margin: 1rem 0;
}

.container-6fd8 li {
  margin-bottom: 0.75rem;
}

.focus_2e22 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.media_next_a7e0 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.media_next_a7e0 a {
  font-weight: 600;
}

/* === Data Tables === */
.hover_8045 {
  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;
}

.hover_8045 table {
  width: 100%;
  min-width: 600px;
}

.hover_8045 thead {
  background-color: var(--primary-color);
  color: white;
}

.hover_8045 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.hover_8045 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.hover_8045 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.hover_8045 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.tooltip-3cd9 {
  list-style: none;
  margin: 1.5rem 0;
}

.tooltip-3cd9 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.tooltip-3cd9 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.banner_3cc4::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-6b16::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 === */
.icon_4366 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.stone-bd5b {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.stone-bd5b img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.stone-bd5b strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.stone-bd5b span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.icon_4366 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.description_97a4 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.description_97a4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.stale-04a6 {
  position: relative;
  margin-bottom: 3rem;
}

.basic_87cd {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.basic_87cd .caption_stone_ee2c {
  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;
}

.breadcrumb_f3fa {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.breadcrumb_f3fa h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.breadcrumb_f3fa ul {
  margin: 1rem 0;
}

.breadcrumb_f3fa li {
  margin-bottom: 0.75rem;
}

.prev-b465 {
  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 === */
.pagination-short-ee83 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.pagination-short-ee83 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.shadow_dc41 {
  list-style: none;
  margin: 1.5rem 0;
}

.shadow_dc41 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.shadow_dc41 a {
  font-weight: 600;
}

.main-purple-71c9 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.carousel-46ca {
  margin: 2.5rem 0;
}

.shadow-tiny-c999 {
  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;
}

.shadow-tiny-c999:hover {
  box-shadow: var(--shadow-lg);
}

.shadow-tiny-c999.orange-b470 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.footer_1968 {
  flex-shrink: 0;
}

.footer_1968 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);
}

.table_stone_4398 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.picture-rough-7f45,
.light_ff44,
.block-iron-99d4 {
  width: 100%;
  margin: 1.5rem 0;
}

.image_0185 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.image_0185 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.module_purple_b6c1 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.module_purple_b6c1 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.blue-abb0 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.blue-abb0 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.image_bottom_0275 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.gallery_purple_06d1 {
  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;
}

.gallery_purple_06d1:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.gallery_purple_06d1.disabled-4689 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.gallery_purple_06d1 .tabs-mini-e60c {
  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;
}

.gallery_purple_06d1 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.modal_ac1c {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.shadow-in-a897 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.shadow-in-a897 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.main_static_202f {
  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 === */
.right_0264 {
  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;
}

.cold_72ca {
  background-color: var(--primary-color);
  color: white;
}

.cold_72ca:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.layout-lite-966a {
  background-color: var(--text-secondary);
  color: white;
}

.layout-lite-966a:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.banner-e126 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.banner-e126:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.panel-cold-1cff {
  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;
}

.panel-cold-1cff:hover {
  background-color: var(--primary-dark);
}

.overlay_clean_3dad {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.widget-hard-c466 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.shade_f26b {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.notification-2287 {
  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 === */
.notification-down-4dac {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.header-bfda {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.header-bfda h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.backdrop_e76f {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.hovered-6eae {
  flex: 1;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
}

.article_5207 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.footer-b68b {
  list-style: none;
  counter-reset: rank-counter;
}

.footer-b68b li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.footer-b68b 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;
}

.right-fee4 {
  list-style: none;
}

.right-fee4 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.feature-pressed-167e {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.column_blue_5951 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.column_blue_5951 .caption-basic-07d4 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.column_blue_5951 .fast-fbef {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.card-78a3 {
  margin-top: 3rem;
}

.narrow-a2e3 {
  width: 100%;
}

.narrow-26f7 {
  background-color: #fef3c7;
}

.message_hot_f9ba {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.basic_4105 {
  margin: 3rem 0;
}

.new_51f2 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.panel_feeb {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.panel_feeb:hover {
  box-shadow: var(--shadow-lg);
}

.panel_feeb.rough_dd2b {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.badge_fc1a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.description-south-ed1a strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.description-south-ed1a span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.list-south-ff01 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.panel_feeb blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.accent_ae22 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.feature-in-1b9b {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.form_pressed_c0ca {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.search-west-6f5f {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.gallery_922a {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.main_tiny_91e7 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.medium_0d34 {
  max-width: 900px;
  margin: 0 auto;
}

.brown_a905 {
  margin: 2rem 0;
}

.accent-thick-dac7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accent-thick-dac7 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.accent-thick-dac7 summary::-webkit-details-marker {
  display: none;
}

.accent-thick-dac7 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.sidebar-ceb9 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.accent-thick-dac7[open] .sidebar-ceb9 {
  transform: rotate(45deg);
}

.button-large-c09a {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.button-large-c09a p:last-child {
  margin-bottom: 0;
}

.paragraph-dirty-6011 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.basic_55db {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.shade-d34d {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.shade-d34d p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.shade-d34d .right_0264 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.logo_east_6a57 {
  max-width: 900px;
  margin: 0 auto;
}

.hover-829a {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.wrapper_e603 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.wrapper_e603.fn-success-6b16 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.item-5227 {
  font-size: 3rem;
  line-height: 1;
}

.modal-77cc h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.sort_lower_f6a4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.accent-smooth-deb4,
.full-7bd3 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.accent-smooth-deb4 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.full-7bd3 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.out-49a2,
.bottom-f8ca {
  margin: 1.5rem 0;
}

.out-49a2 li,
.bottom-f8ca li {
  margin-bottom: 1rem;
}

.dark-7c54 {
  margin: 3rem 0;
}

.avatar-b5dd {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.avatar-b5dd h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.avatar-b5dd ol {
  margin: 1rem 0;
}

.avatar-b5dd li {
  margin-bottom: 0.75rem;
}

.prev_54bd {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.iron_83b3 {
  margin: 2rem 0;
}

.avatar_08d2 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.accent-559f {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.heading-af93 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.overlay-461c {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.overlay-c819 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.chip_c01e {
  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;
}

.chip_c01e img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.secondary_90d0 {
  flex: 1;
}

.secondary_90d0 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.inner_d49f {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.backdrop-gold-8142 p {
  margin-bottom: 1rem;
}

.tag-black-00c7 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.preview-fresh-907d {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.gradient-d5e2 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.gradient-d5e2 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.paragraph_f496 h3 {
  margin-bottom: 1.5rem;
}

.container_purple_47d4 {
  display: grid;
  gap: 2rem;
}

.smooth-ae14 {
  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;
}

.smooth-ae14 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.smooth-ae14 h4 {
  margin: 0 0 0.25rem;
}

.smooth-ae14 p {
  margin: 0;
  font-size: 0.9375rem;
}

.photo_static_6cb6 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.text_b4ff {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.text_b4ff h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.text_b4ff ul {
  margin: 1.5rem 0;
}

.text_b4ff li {
  margin-bottom: 0.75rem;
}

.motion_8635 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.smooth-7d65 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.logo-wide-8899 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.active-bc56 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.active-bc56 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.clean_e214 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.clean_e214 a {
  color: rgba(255, 255, 255, 0.8);
}

.item_pressed_47a7 {
  list-style: none;
}

.item_pressed_47a7 li {
  margin-bottom: 0.75rem;
}

.item_pressed_47a7 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.item_pressed_47a7 a:hover {
  color: white;
}

.tag_d3f9 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.modal_tall_37fc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.last-1d00 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.article_purple_289b {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.huge_9a8a {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .tooltip-rough-0410 {
    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;
  }

  .dynamic_e413 {
    font-size: 1.5rem !important;
  }

  .wrapper_b7d9 {
    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 */
  .container-6fd8,
  .light-ef55,
  .breadcrumb_f3fa,
  .table_stone_4398,
  .badge_fc1a,
  .panel_feeb,
  .button-large-c09a,
  .pressed-a9da,
  .purple-87b6,
  .west-7de4 {
    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 */
  .element-large-4bfa {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .sort-7dc5 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .frame-dynamic-77e9 {
    flex-shrink: 0;
  }

  .secondary_90d0 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .focus-b781,
  .outline-cold-e518 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .outline-cold-e518 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .primary_silver_910e {
    display: none;
  }

  /* Show mobile actions */
  .card-34bf {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .block-under-571d {
    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;
  }

  .block-under-571d svg {
    flex-shrink: 0;
  }

  .block-under-571d .title_c5a2 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .block-under-571d .sort-219e {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .next-0703 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .info-glass-feff {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .block-under-571d:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .nav_cf18 {
    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;
  }

  .nav_cf18.fn-active-6b16 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav_cf18 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .nav_cf18 li:last-child {
    border-bottom: none;
  }

  .nav_cf18 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .notification_d35c {
    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;
  }

  .notification_d35c li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .notification_d35c li:last-child {
    border-bottom: none;
  }

  .notification_d35c a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .slider-top-01ae {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .overlay-simple-22b0 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .slider_c83a,
  .table_clean_741a {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .slider_c83a {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .table_clean_741a {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .notification_d35c.fn-active-6b16 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .east_db80 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .outer-dd28 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .picture_f2dc {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .article-f58f {
    margin-top: 0;
  }

  /* Hero section */
  .article-f58f {
    padding: 2rem 0 1.5rem;
  }

  .wrapper_b7d9 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .purple-87b6 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .search-92b5 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .carousel_silver_e944 {
    max-width: 100%;
    border-radius: 8px;
  }

  .highlight_f048 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .mask_369f {
    padding: 1rem;
  }

  .column_solid_1acb {
    font-size: 1.5rem;
  }

  .hard-2666 {
    font-size: 0.75rem;
  }

  .pressed-a9da {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .surface-huge-88c3 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .surface-huge-88c3 .right_0264 {
    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 */
  .secondary_new_ad06 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .shadow-tiny-c999 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .footer_1968 {
    margin-bottom: 1rem;
  }

  /* Author */
  .video-stale-b5da {
    flex-direction: column;
  }

  .chip_c01e {
    flex-direction: column;
  }

  /* Quotes */
  .badge_fc1a {
    flex-direction: column;
  }

  /* Pros/Cons */
  .sort_lower_f6a4 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .overlay-461c {
    flex-direction: column;
  }

  .overlay-461c .right_0264 {
    width: 100%;
  }

  /* Version comparison */
  .image_bottom_0275 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .notification-down-4dac {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .logo-wide-8899 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .last-1d00 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .hover_8045,
  .light_ff44,
  .smooth-ef80,
  .narrow-a2e3,
  .picture-rough-7f45,
  .block-iron-99d4 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hover_8045 table,
  .light_ff44 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .main_static_202f {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .tooltip-rough-0410 {
    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;
  }

  .dynamic_e413 {
    font-size: 1.25rem !important;
  }

  .wrapper_b7d9 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .outer-dd28 {
    position: fixed;
  }

  .picture_f2dc {
    padding: 0.625rem 0;
  }

  .icon-0b5f img {
    height: 26px;
  }

  .notification_d35c {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .nav_cf18 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .block-under-571d {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .block-under-571d svg {
    width: 18px;
    height: 18px;
  }

  .block-under-571d .title_c5a2 {
    font-size: 0.7rem;
  }

  .block-under-571d .sort-219e {
    font-size: 0.65rem;
  }

  .slider_c83a,
  .table_clean_741a {
    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, .tooltip-rough-0410, .menu-solid-3fe1, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .search-92b5 {
    padding: 1rem;
  }

  .highlight_f048 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .mask_369f {
    padding: 0.875rem;
  }

  .column_solid_1acb {
    font-size: 1.25rem;
  }

  .surface-huge-88c3 .right_0264 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .wrapper_b7d9 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .right_0264 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .overlay_clean_3dad {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .shadow-tiny-c999 {
    padding: 1rem;
  }

  .footer_1968 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .container-6fd8,
  .card_fluid_5368,
  .text-6878,
  .background_inner_7b4d {
    padding: 1rem;
  }
}

@media print {
  .outer-dd28,
  .large_201f,
  .east_db80,
  .right_0264,
  .smooth-7d65 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .tooltip-rough-0410 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.tertiary_easy_a5f0 {
  margin-bottom: 3rem;
  text-align: center;
}

.dynamic_e413 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.accordion_27cf {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.under-97c7,
.feature-993f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.narrow_a37b {
  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;
}

.narrow_a37b:hover {
  transform: translateY(-5px);
}

.narrow_a37b strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.narrow_a37b span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.link-left-8f05 {
  margin: 3rem 0;
}

.table_hard_c7a4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.sidebar_71f9 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.sidebar_71f9:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.search-2716 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.nav_current_a19e {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.icon-mini-470f {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.left_bbdf {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.easy-e4db {
  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;
}

.easy-e4db:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.easy-e4db.full_54df {
  border-left: 4px solid var(--primary-color);
}

.alert_c3f7 {
  flex-shrink: 0;
}

.alert_c3f7 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.old_627c {
  flex: 1;
}

.old_627c h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.orange_7fc5 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.current_df45,
.last_60b8,
.action-b81b {
  margin-bottom: 1.5rem;
}

.current_df45 h4,
.last_60b8 h4,
.action-b81b h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.current_df45 ul,
.last_60b8 ul,
.action-b81b ul {
  list-style: none;
  padding: 0;
}

.current_df45 li,
.last_60b8 li,
.action-b81b li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.current_df45 li:before,
.last_60b8 li:before,
.action-b81b li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.pattern_1fc1 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.pattern_1fc1 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;
}

.pattern_1fc1 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.white-4f33 { margin: 2rem 0; }
.last-ddf2 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.last-ddf2 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.alert-west-a9af p { margin-bottom: 1rem; line-height: 1.7; }
.alert-west-a9af strong { color: var(--text-primary); }
.alert-west-a9af ul { list-style: none; padding-left: 0; }
.alert-west-a9af ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.alert-west-a9af ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.dark-81f1 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.tag_3c07 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.tag_3c07:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.table-645f { font-size: 3rem; margin-bottom: 1rem; }
.tag_3c07 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.tag_3c07 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.progress_11fb { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.progress_11fb span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.thick_e42a { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.button-focused-4e8b { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.hero_5657 { text-align: center; }
.module_focused_a1ff { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.current-e5e5 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.pink_1234 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.component-glass-a142 { margin: 2rem 0; }
.purple_827a { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.purple_827a h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.purple_827a p, .purple_827a ul { line-height: 1.7; }
.purple_827a ul { list-style: none; padding-left: 0; }
.purple_827a ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.purple_827a ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.dynamic-8135 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.input-f7fc { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.banner-purple-04bd { text-align: center; }
.purple_a4f4 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.element-simple-465e { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.list_0609 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.border_33c9 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.right-a6f1 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.right-a6f1:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.right-a6f1 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.right-a6f1 p, .right-a6f1 ul { line-height: 1.7; }
.right-a6f1 ul { list-style: none; padding-left: 0; }
.right-a6f1 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.right-a6f1 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: f4b4 */
.shadow-element-e5 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.0;
}
