/* ============================================
   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 */
.texture-2a59 p,
.hard-20d7,
.focus_0070,
.gallery_wood_484c,
.red_1c85,
.pattern-bbde,
.column_short_e7d4,
.secondary-hovered-c15c {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.nav_7c91 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.nav_7c91 > *,
.accent_f2a7,
.texture-2a59,
.hovered_2005 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .nav_7c91 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .nav_7c91 {
    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 === */
.old-d785 {
  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 */
.old-d785.copper-1af3 {
  box-shadow: var(--shadow-md);
}

.gallery-south-17a0 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.primary_e81e img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.video_4936 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.photo-smooth-4ccc {
  display: none;
}

/* Hide mobile actions on desktop */
.hidden_1474 {
  display: none;
}

.stone-9fff a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.stone-9fff a:hover,
.stone-9fff a.fn-active-6a2c {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.lower-abb2 {
  margin-left: 1rem;
}

.thumbnail_e0a8 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.label-liquid-cf2e,
.hero_69b6 {
  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;
}

.label-liquid-cf2e {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.label-liquid-cf2e: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;
}

.hero_69b6 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.hero_69b6: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;
}

.label-liquid-cf2e svg,
.hero_69b6 svg {
  flex-shrink: 0;
}

.section-selected-f868 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.image-722e {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.image-722e::before,
.image-722e::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.image-722e::before {
  top: -7px;
}

.image-722e::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.primary_current_2526 {
  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 === */
.complex-f4ab {
  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);
}

.easy-1264 {
  margin: 0 0 2rem;
  text-align: center;
}

.paragraph-30c8 {
  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;
}

.paragraph-30c8:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.banner-2e56 {
  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);
}

.banner-2e56 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.advanced_8508 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.hidden_17c0 {
  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;
}

.hidden_17c0:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.widget-glass-145e {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.medium-9961 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.shade_9d6c {
  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);
}

.shade_9d6c .heading-huge-1015 {
  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;
}

.shade_9d6c .heading-huge-1015 svg {
  flex-shrink: 0;
}

.shade_9d6c .box-e740 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.shade_9d6c .box-e740: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);
}

.shade_9d6c .overlay-tiny-ce25 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.shade_9d6c .overlay-tiny-ce25: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) {
  .complex-f4ab {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .paragraph-30c8 {
    max-width: 100%;
  }

  .advanced_8508 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hidden_17c0 {
    padding: 1rem;
  }

  .widget-glass-145e {
    font-size: 1.5rem;
  }

  .medium-9961 {
    font-size: 0.75rem;
  }

  .banner-2e56 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .shade_9d6c {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .shade_9d6c .heading-huge-1015 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .advanced_8508 {
    grid-template-columns: 1fr;
  }
}

.accent_005b {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.active_middle_6dec {
  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 === */
.status_2d11 {
  margin-bottom: 2.5rem;
}

.hero-smooth-7fdd {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.accent_005b {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.primary_orange_4574 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.popup_4e7b {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.chip_dirty_19cd {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.content_right_4056 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.tiny-3796 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.label_2353 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.search_9cc8 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.search_9cc8 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.caption_5e6b {
  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);
}

.tooltip_3bd5 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.logo-47ae {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.box-new-a215 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.selected_3be8 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.list_7fc8 {
  display: grid;
  gap: 1rem;
}

.last-f9e3 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.outline-thick-3e94 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.inner_e890 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.item-small-400a {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.texture_a7d4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.content_bright_9c74 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.content_bright_9c74 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.hard-20d7 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.banner-center-bdd0 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.tall_fc1c {
  display: grid;
  gap: 2rem;
}

.surface_lower_6109 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.popup_4e7b {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.primary_orange_4574 {
  flex: 1;
}

.content_right_4056 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.content_right_4056 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.texture_4363 {
  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;
}

.tiny-3796 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.label-b9d8 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.label-b9d8 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.link_0386 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.link_0386 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.header-white-6432 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.header-white-6432 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.header-white-6432 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.header-white-6432 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.info-d8b7 {
  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 === */
.soft_9f31 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.header-2686 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.tertiary-fccb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.video_easy_ad71 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.video_easy_ad71 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.video_easy_ad71 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.video_easy_ad71 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;
}

.video_easy_ad71 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.video_easy_ad71 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.texture-2a59 {
  padding: 3rem 0 5rem;
}

.hovered_2005 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.hovered_2005.paragraph_8ad8 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.focus_0070 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.hover_hot_05dd {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.button-15fc {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.button-15fc h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.info_57ff {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.hidden-fast-a3a1 {
  text-align: center;
}

.clean-0db9 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.popup-da24 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.summary_purple_8a25 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.pattern-bbde {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.gallery_wood_484c {
  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;
}

.gallery_wood_484c * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.gallery_wood_484c:hover {
  box-shadow: var(--shadow-lg);
}

.gallery_wood_484c.row_957b {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.gallery_wood_484c h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.gallery_wood_484c ul {
  margin: 1rem 0;
}

.gallery_wood_484c li {
  margin-bottom: 0.75rem;
}

.left_bebd {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.primary_clean_7aae {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.primary_clean_7aae a {
  font-weight: 600;
}

/* === Data Tables === */
.element-ee40 {
  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;
}

.element-ee40 table {
  width: 100%;
  min-width: 600px;
}

.element-ee40 thead {
  background-color: var(--primary-color);
  color: white;
}

.element-ee40 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.element-ee40 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.element-ee40 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.element-ee40 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.large_0abe {
  list-style: none;
  margin: 1.5rem 0;
}

.large_0abe li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.large_0abe li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.texture_ee14::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-6a2c::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 === */
.shade_prev_8d8b {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.tall_91a3 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.tall_91a3 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.tall_91a3 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.tall_91a3 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.shade_prev_8d8b blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.column_short_e7d4 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.column_short_e7d4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.slow-e9ce {
  position: relative;
  margin-bottom: 3rem;
}

.hot_34df {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.hot_34df .row-c796 {
  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;
}

.orange_c3d9 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.orange_c3d9 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.orange_c3d9 ul {
  margin: 1rem 0;
}

.orange_c3d9 li {
  margin-bottom: 0.75rem;
}

.notice_tiny_92d8 {
  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 === */
.media-9b41 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.media-9b41 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.header_3d83 {
  list-style: none;
  margin: 1.5rem 0;
}

.header_3d83 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.header_3d83 a {
  font-weight: 600;
}

.hero_advanced_2a37 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.secondary-hovered-c15c {
  margin: 2.5rem 0;
}

.copper-e186 {
  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;
}

.copper-e186:hover {
  box-shadow: var(--shadow-lg);
}

.copper-e186.clean_d5f9 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.down-3c08 {
  flex-shrink: 0;
}

.down-3c08 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);
}

.hover-ed3e h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.primary-9935,
.tooltip_de80,
.media_dynamic_f7ab {
  width: 100%;
  margin: 1.5rem 0;
}

.thick-dfb1 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.thick-dfb1 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.badge_tiny_d9b2 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.badge_tiny_d9b2 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.content-719a {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.content-719a strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.overlay-small-a92a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.media-7d8a {
  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;
}

.media-7d8a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.media-7d8a.border-592a {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.media-7d8a .nav_dc6b {
  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;
}

.media-7d8a h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.tag-first-94ea {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.hidden_aa98 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.hidden_aa98 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.basic_237c {
  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 === */
.heading-huge-1015 {
  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;
}

.box-e740 {
  background-color: var(--primary-color);
  color: white;
}

.box-e740:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.overlay-tiny-ce25 {
  background-color: var(--text-secondary);
  color: white;
}

.overlay-tiny-ce25:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.middle_6066 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.middle_6066:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.summary-fluid-b32c {
  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;
}

.summary-fluid-b32c:hover {
  background-color: var(--primary-dark);
}

.outline_bronze_d630 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.focused-0de9 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.basic_6fea {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.chip_upper_48e8 {
  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 === */
.dark-0a4b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.lite_ab68 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.lite_ab68 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.under-0310 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.chip-e963 {
  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;
}

.yellow-8971 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.mask_in_a73b {
  list-style: none;
  counter-reset: rank-counter;
}

.mask_in_a73b li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.mask_in_a73b 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;
}

.banner_b45d {
  list-style: none;
}

.banner_b45d li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.slow_9589 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.primary_ad8a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.primary_ad8a .over_b1d0 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.primary_ad8a .fixed-b91e {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.center-9c9e {
  margin-top: 3rem;
}

.over_d4d9 {
  width: 100%;
}

.shade-bronze-df71 {
  background-color: #fef3c7;
}

.east_8cf0 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.gallery-3589 {
  margin: 3rem 0;
}

.fixed-4866 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.carousel_dynamic_8515 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.carousel_dynamic_8515:hover {
  box-shadow: var(--shadow-lg);
}

.carousel_dynamic_8515.filter-3db4 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.mini-ede8 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.cool-9a54 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.cool-9a54 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.preview-0a16 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.carousel_dynamic_8515 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.pro_5151 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.shade_21a3 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.disabled-e89e {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.blue-3403 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.nav_597d {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.notice_dim_b9f1 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.panel_cool_6c6e {
  max-width: 900px;
  margin: 0 auto;
}

.label_lite_ba92 {
  margin: 2rem 0;
}

.logo_5cb4 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.logo_5cb4 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.logo_5cb4 summary::-webkit-details-marker {
  display: none;
}

.logo_5cb4 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.focused_b629 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.logo_5cb4[open] .focused_b629 {
  transform: rotate(45deg);
}

.info-03c3 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.info-03c3 p:last-child {
  margin-bottom: 0;
}

.wide-7b08 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.north-a755 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.full-b281 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.full-b281 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.full-b281 .heading-huge-1015 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.red-0af2 {
  max-width: 900px;
  margin: 0 auto;
}

.hovered_c4da {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.preview_4579 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.preview_4579.fn-success-6a2c {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.old_9cf8 {
  font-size: 3rem;
  line-height: 1;
}

.paper_3914 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.active_6696 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.search-gold-7d74,
.row_d03d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.search-gold-7d74 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.row_d03d h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.down-12c1,
.background_38db {
  margin: 1.5rem 0;
}

.down-12c1 li,
.background_38db li {
  margin-bottom: 1rem;
}

.dropdown_0eb6 {
  margin: 3rem 0;
}

.component_middle_280a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.component_middle_280a h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.component_middle_280a ol {
  margin: 1rem 0;
}

.component_middle_280a li {
  margin-bottom: 0.75rem;
}

.tall_d37f {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.paragraph_d6ac {
  margin: 2rem 0;
}

.dropdown-in-1532 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.motion_ca01 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.module-18d3 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.focused_4965 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.sort_8b6a {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.panel_first_9e98 {
  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;
}

.panel_first_9e98 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.chip_dirty_19cd {
  flex: 1;
}

.chip_dirty_19cd h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.outline_short_90b0 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.box_solid_f395 p {
  margin-bottom: 1rem;
}

.steel-b841 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.shadow-810f {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.preview_purple_452f {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.preview_purple_452f a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.green-5cf2 h3 {
  margin-bottom: 1.5rem;
}

.brown-3184 {
  display: grid;
  gap: 2rem;
}

.warm_2658 {
  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;
}

.warm_2658 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.warm_2658 h4 {
  margin: 0 0 0.25rem;
}

.warm_2658 p {
  margin: 0;
  font-size: 0.9375rem;
}

.table-118e {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.mask-4889 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.mask-4889 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.mask-4889 ul {
  margin: 1.5rem 0;
}

.mask-4889 li {
  margin-bottom: 0.75rem;
}

.layout_prev_fda7 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.block_952e {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.tooltip_47bb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.purple_e730 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.purple_e730 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.nav-pro-8e9c {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.nav-pro-8e9c a {
  color: rgba(255, 255, 255, 0.8);
}

.focused_c545 {
  list-style: none;
}

.focused_c545 li {
  margin-bottom: 0.75rem;
}

.focused_c545 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.focused_c545 a:hover {
  color: white;
}

.orange-d20c {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.wide_9bc6 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.slow-91e3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.advanced_d935 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.picture-2fd2 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .nav_7c91 {
    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;
  }

  .element-dark-002b {
    font-size: 1.5rem !important;
  }

  .hero-smooth-7fdd {
    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 */
  .gallery_wood_484c,
  .red_1c85,
  .orange_c3d9,
  .hover-ed3e,
  .mini-ede8,
  .carousel_dynamic_8515,
  .info-03c3,
  .banner-2e56,
  .hard-20d7,
  .focus_0070 {
    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 */
  .accent_005b {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .primary_orange_4574 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .popup_4e7b {
    flex-shrink: 0;
  }

  .chip_dirty_19cd {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .content_right_4056,
  .tiny-3796 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .tiny-3796 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .video_4936 {
    display: none;
  }

  /* Show mobile actions */
  .hidden_1474 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .card_outer_e1e0 {
    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;
  }

  .card_outer_e1e0 svg {
    flex-shrink: 0;
  }

  .card_outer_e1e0 .first-d5df {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .card_outer_e1e0 .blue_6947 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .sort-89d8 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .paragraph-simple-2a0d {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .card_outer_e1e0:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .photo-smooth-4ccc {
    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;
  }

  .photo-smooth-4ccc.fn-active-6a2c {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .photo-smooth-4ccc li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .photo-smooth-4ccc li:last-child {
    border-bottom: none;
  }

  .photo-smooth-4ccc a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .stone-9fff {
    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;
  }

  .stone-9fff li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .stone-9fff li:last-child {
    border-bottom: none;
  }

  .stone-9fff a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .lower-abb2 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .thumbnail_e0a8 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .label-liquid-cf2e,
  .hero_69b6 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .label-liquid-cf2e {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .hero_69b6 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .stone-9fff.fn-active-6a2c {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .section-selected-f868 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .old-d785 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .gallery-south-17a0 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .primary_current_2526 {
    margin-top: 0;
  }

  /* Hero section */
  .primary_current_2526 {
    padding: 2rem 0 1.5rem;
  }

  .hero-smooth-7fdd {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .hard-20d7 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .complex-f4ab {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .paragraph-30c8 {
    max-width: 100%;
    border-radius: 8px;
  }

  .advanced_8508 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hidden_17c0 {
    padding: 1rem;
  }

  .widget-glass-145e {
    font-size: 1.5rem;
  }

  .medium-9961 {
    font-size: 0.75rem;
  }

  .banner-2e56 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .shade_9d6c {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .shade_9d6c .heading-huge-1015 {
    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 */
  .tertiary-fccb {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .copper-e186 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .down-3c08 {
    margin-bottom: 1rem;
  }

  /* Author */
  .surface_lower_6109 {
    flex-direction: column;
  }

  .panel_first_9e98 {
    flex-direction: column;
  }

  /* Quotes */
  .mini-ede8 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .active_6696 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .focused_4965 {
    flex-direction: column;
  }

  .focused_4965 .heading-huge-1015 {
    width: 100%;
  }

  /* Version comparison */
  .overlay-small-a92a {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .dark-0a4b {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .tooltip_47bb {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .slow-91e3 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .element-ee40,
  .tooltip_de80,
  .thumbnail_action_7e79,
  .over_d4d9,
  .primary-9935,
  .media_dynamic_f7ab {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .element-ee40 table,
  .tooltip_de80 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .basic_237c {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .nav_7c91 {
    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;
  }

  .element-dark-002b {
    font-size: 1.25rem !important;
  }

  .hero-smooth-7fdd {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .old-d785 {
    position: fixed;
  }

  .gallery-south-17a0 {
    padding: 0.625rem 0;
  }

  .primary_e81e img {
    height: 26px;
  }

  .stone-9fff {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .photo-smooth-4ccc {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .card_outer_e1e0 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .card_outer_e1e0 svg {
    width: 18px;
    height: 18px;
  }

  .card_outer_e1e0 .first-d5df {
    font-size: 0.7rem;
  }

  .card_outer_e1e0 .blue_6947 {
    font-size: 0.65rem;
  }

  .label-liquid-cf2e,
  .hero_69b6 {
    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, .nav_7c91, .accent_f2a7, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .complex-f4ab {
    padding: 1rem;
  }

  .advanced_8508 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hidden_17c0 {
    padding: 0.875rem;
  }

  .widget-glass-145e {
    font-size: 1.25rem;
  }

  .shade_9d6c .heading-huge-1015 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .hero-smooth-7fdd {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .heading-huge-1015 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .outline_bronze_d630 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .copper-e186 {
    padding: 1rem;
  }

  .down-3c08 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .gallery_wood_484c,
  .lite-649f,
  .list_568f,
  .content_north_be33 {
    padding: 1rem;
  }
}

@media print {
  .old-d785,
  .soft_9f31,
  .section-selected-f868,
  .heading-huge-1015,
  .block_952e {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .nav_7c91 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.button_black_29c9 {
  margin-bottom: 3rem;
  text-align: center;
}

.element-dark-002b {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.stale-1a5c {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.shade_7170,
.border-d726 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.pagination_wood_2ae7 {
  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;
}

.pagination_wood_2ae7:hover {
  transform: translateY(-5px);
}

.pagination_wood_2ae7 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.pagination_wood_2ae7 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.tertiary-44a2 {
  margin: 3rem 0;
}

.caption-stone-a82e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.link-96d4 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.link-96d4:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.preview-pink-2a43 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.input-selected-b22a {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.texture_97e4 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.feature-295e {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.huge_88f5 {
  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;
}

.huge_88f5:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.huge_88f5.grid-selected-93d6 {
  border-left: 4px solid var(--primary-color);
}

.article-purple-1f1f {
  flex-shrink: 0;
}

.article-purple-1f1f svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.tooltip-stale-7eb1 {
  flex: 1;
}

.tooltip-stale-7eb1 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.text-5ec7 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.tabs-wood-7994,
.heading_slow_b42f,
.article-smooth-3222 {
  margin-bottom: 1.5rem;
}

.tabs-wood-7994 h4,
.heading_slow_b42f h4,
.article-smooth-3222 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tabs-wood-7994 ul,
.heading_slow_b42f ul,
.article-smooth-3222 ul {
  list-style: none;
  padding: 0;
}

.tabs-wood-7994 li,
.heading_slow_b42f li,
.article-smooth-3222 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.tabs-wood-7994 li:before,
.heading_slow_b42f li:before,
.article-smooth-3222 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.iron-b304 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.iron-b304 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;
}

.iron-b304 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.brown_c116 { margin: 2rem 0; }
.aside-b08a { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.aside-b08a h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.slider_e5df p { margin-bottom: 1rem; line-height: 1.7; }
.slider_e5df strong { color: var(--text-primary); }
.slider_e5df ul { list-style: none; padding-left: 0; }
.slider_e5df ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.slider_e5df ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.label-8470 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.full-5537 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.full-5537:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.wood_b3d3 { font-size: 3rem; margin-bottom: 1rem; }
.full-5537 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.full-5537 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.gallery-40c4 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.gallery-40c4 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.progress-paper-74f1 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.filter_last_abcf { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.red_7ef2 { text-align: center; }
.tabs_8911 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.component-bottom-87c3 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.huge-1553 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.dropdown-huge-db5d { margin: 2rem 0; }
.out_50fd { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.out_50fd h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.out_50fd p, .out_50fd ul { line-height: 1.7; }
.out_50fd ul { list-style: none; padding-left: 0; }
.out_50fd ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.out_50fd ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.container-746b { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.feature-medium-634c { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.link_fluid_2057 { text-align: center; }
.outer-a2c6 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.notification_in_34f4 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.focus-fluid-1625 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.full_ed0b { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.modal_888a { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.modal_888a:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.modal_888a h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.modal_888a p, .modal_888a ul { line-height: 1.7; }
.modal_888a ul { list-style: none; padding-left: 0; }
.modal_888a ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.modal_888a ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 97a3 */
.shadow-element-d8 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.3;
}
