/* ============================================
   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 */
.thumbnail_top_6bdb p,
.motion_cdd6,
.accordion-a67e,
.prev-c37f,
.text_basic_00d6,
.active-last-930d,
.caption_9a22,
.north-cce0 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.static_7ace {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.static_7ace > *,
.west-24cb,
.thumbnail_top_6bdb,
.image_up_0c68 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .static_7ace {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .static_7ace {
    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 === */
.notice-advanced-3572 {
  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 */
.notice-advanced-3572.wood_0c41 {
  box-shadow: var(--shadow-md);
}

.lower_1dd8 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.action-c9b7 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.dynamic-3d12 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.element-tall-3005 {
  display: none;
}

/* Hide mobile actions on desktop */
.widget_focused_c87d {
  display: none;
}

.dropdown_out_35e5 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.dropdown_out_35e5 a:hover,
.dropdown_out_35e5 a.fn-active-0e7f {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.north_12e1 {
  margin-left: 1rem;
}

.media_ba3e {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.breadcrumb-1f85,
.frame_c543 {
  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;
}

.breadcrumb-1f85 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.breadcrumb-1f85: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;
}

.frame_c543 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.frame_c543: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;
}

.breadcrumb-1f85 svg,
.frame_c543 svg {
  flex-shrink: 0;
}

.heading_29ba {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.button_f4b5 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.button_f4b5::before,
.button_f4b5::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.button_f4b5::before {
  top: -7px;
}

.button_f4b5::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.detail-orange-1256 {
  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 === */
.hidden-c2b1 {
  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);
}

.down-96a3 {
  margin: 0 0 2rem;
  text-align: center;
}

.aside-advanced-1c3d {
  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;
}

.aside-advanced-1c3d:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.down-652d {
  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);
}

.down-652d strong {
  color: var(--primary-color);
  font-weight: 700;
}

.left-2f75 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.thick-5251 {
  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;
}

.thick-5251:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.thick-7562 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.narrow-2b81 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.card-1687 {
  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);
}

.card-1687 .up-eaa5 {
  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;
}

.card-1687 .up-eaa5 svg {
  flex-shrink: 0;
}

.card-1687 .mask-7c1d {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.card-1687 .mask-7c1d: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);
}

.card-1687 .banner_right_4342 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.card-1687 .banner_right_4342: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) {
  .hidden-c2b1 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .aside-advanced-1c3d {
    max-width: 100%;
  }

  .left-2f75 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .thick-5251 {
    padding: 1rem;
  }

  .thick-7562 {
    font-size: 1.5rem;
  }

  .narrow-2b81 {
    font-size: 0.75rem;
  }

  .down-652d {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .card-1687 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .card-1687 .up-eaa5 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .left-2f75 {
    grid-template-columns: 1fr;
  }
}

.middle_12cd {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.mask_39b2 {
  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 === */
.frame-cold-5ff5 {
  margin-bottom: 2.5rem;
}

.component_center_d289 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.middle_12cd {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.picture_out_27de {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-efb4 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.highlight_tiny_24b9 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.component-9f6d {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.text_clean_2968 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.header_brown_e896 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.item_fast_db41 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.item_fast_db41 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.easy-f2dc {
  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);
}

.section_d0ed {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.label-slow-867c {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.carousel_972e {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.notification-9c3e {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.easy-42da {
  display: grid;
  gap: 1rem;
}

.slider_4d7c {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.right-5107 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.primary-hard-56b1 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.short-a07e {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.notification-dim-fea6 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.hidden_1d9e {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.hidden_1d9e p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.motion_cdd6 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.thumbnail_tall_ab60 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.tag-1bd3 {
  display: grid;
  gap: 2rem;
}

.heading_basic_16c7 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.footer-efb4 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.picture_out_27de {
  flex: 1;
}

.component-9f6d {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.component-9f6d a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.shadow-fast-b260 {
  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;
}

.text_clean_2968 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.carousel_3ce9 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.carousel_3ce9 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.simple_8fd3 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.simple_8fd3 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.bright_d721 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.bright_d721 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.bright_d721 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bright_d721 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.section_brown_a675 {
  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 === */
.brown_dc2f {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.backdrop-slow-b500 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.blue-642d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.secondary-13bb h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.secondary-13bb ol {
  list-style: none;
  counter-reset: toc-counter;
}

.secondary-13bb ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.secondary-13bb 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;
}

.secondary-13bb ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.secondary-13bb ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.thumbnail_top_6bdb {
  padding: 3rem 0 5rem;
}

.image_up_0c68 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.image_up_0c68.sort-99f7 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.accordion-a67e {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.pattern-85e2 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.primary-68ee {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.primary-68ee h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.clean_250f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.sort_1327 {
  text-align: center;
}

.highlight-over-0f2a {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hard-3eb7 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.filter_d1e5 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.active-last-930d {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.prev-c37f {
  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;
}

.prev-c37f * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.prev-c37f:hover {
  box-shadow: var(--shadow-lg);
}

.prev-c37f.breadcrumb-6729 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.prev-c37f h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.prev-c37f ul {
  margin: 1rem 0;
}

.prev-c37f li {
  margin-bottom: 0.75rem;
}

.short_714a {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.lower-155e {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.lower-155e a {
  font-weight: 600;
}

/* === Data Tables === */
.clean_1ba5 {
  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;
}

.clean_1ba5 table {
  width: 100%;
  min-width: 600px;
}

.clean_1ba5 thead {
  background-color: var(--primary-color);
  color: white;
}

.clean_1ba5 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.clean_1ba5 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.clean_1ba5 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.clean_1ba5 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.texture_e19d {
  list-style: none;
  margin: 1.5rem 0;
}

.texture_e19d li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.texture_e19d li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.surface-cool-d8a6::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-0e7f::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 === */
.picture-c1b8 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.section_bottom_c695 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.section_bottom_c695 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.section_bottom_c695 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.section_bottom_c695 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.picture-c1b8 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.caption_9a22 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.caption_9a22::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.footer_gold_7f78 {
  position: relative;
  margin-bottom: 3rem;
}

.module_out_a9a9 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.module_out_a9a9 .picture-940d {
  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;
}

.active_b5a0 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.active_b5a0 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.active_b5a0 ul {
  margin: 1rem 0;
}

.active_b5a0 li {
  margin-bottom: 0.75rem;
}

.outline-01ca {
  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 === */
.primary_glass_0107 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.primary_glass_0107 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.hot_10f6 {
  list-style: none;
  margin: 1.5rem 0;
}

.hot_10f6 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.hot_10f6 a {
  font-weight: 600;
}

.static_d5ed {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.north-cce0 {
  margin: 2.5rem 0;
}

.carousel_bottom_e389 {
  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;
}

.carousel_bottom_e389:hover {
  box-shadow: var(--shadow-lg);
}

.carousel_bottom_e389.short_ef6e {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.north-334c {
  flex-shrink: 0;
}

.north-334c 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);
}

.content_5c97 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.focus_53ce,
.sort_4181,
.container-b635 {
  width: 100%;
  margin: 1.5rem 0;
}

.tooltip_df1f {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.tooltip_df1f strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.carousel-4452 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.carousel-4452 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.focus-b710 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.focus-b710 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.carousel_light_598e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.label-under-f9e4 {
  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;
}

.label-under-f9e4:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.label-under-f9e4.tertiary-5338 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.label-under-f9e4 .hidden-focused-dfe7 {
  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;
}

.label-under-f9e4 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.cold_06b0 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.heading_light_9e32 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.heading_light_9e32 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.badge-hard-b87b {
  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 === */
.up-eaa5 {
  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;
}

.mask-7c1d {
  background-color: var(--primary-color);
  color: white;
}

.mask-7c1d:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.banner_right_4342 {
  background-color: var(--text-secondary);
  color: white;
}

.banner_right_4342:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.feature_white_b608 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.feature_white_b608:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.backdrop-2c4e {
  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;
}

.backdrop-2c4e:hover {
  background-color: var(--primary-dark);
}

.icon-upper-958b {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.photo_liquid_7875 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.tabs-4262 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.nav_493f {
  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 === */
.link-8c2d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.component_cb3d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.component_cb3d h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.item_brown_eacc {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.search_lite_5a87 {
  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;
}

.module_bronze_515e {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.hidden-cc37 {
  list-style: none;
  counter-reset: rank-counter;
}

.hidden-cc37 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.hidden-cc37 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;
}

.motion-cd18 {
  list-style: none;
}

.motion-cd18 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.mask-short-3872 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.sort_8f75 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.sort_8f75 .lower_ffe3 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.sort_8f75 .container-middle-f668 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.modal-0bb3 {
  margin-top: 3rem;
}

.center-42e0 {
  width: 100%;
}

.selected_5467 {
  background-color: #fef3c7;
}

.huge_9fa4 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.huge_2a1a {
  margin: 3rem 0;
}

.fast-d8d5 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.carousel-6a7a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.carousel-6a7a:hover {
  box-shadow: var(--shadow-lg);
}

.carousel-6a7a.blue_35d5 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.label-fa78 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.caption_blue_df78 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.caption_blue_df78 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.border-d636 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.carousel-6a7a blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.over_9ae0 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.icon_dim_2660 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.silver_1b52 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.form-tall-cf13 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.layout-in-5b8f {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.component_1a67 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.small_bfd9 {
  max-width: 900px;
  margin: 0 auto;
}

.icon_8be3 {
  margin: 2rem 0;
}

.gallery_hovered_856a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.gallery_hovered_856a summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.gallery_hovered_856a summary::-webkit-details-marker {
  display: none;
}

.gallery_hovered_856a summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.hot-03a1 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.gallery_hovered_856a[open] .hot-03a1 {
  transform: rotate(45deg);
}

.card-2151 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.card-2151 p:last-child {
  margin-bottom: 0;
}

.pink_c357 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.grid-1f45 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.menu_5bf0 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.menu_5bf0 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.menu_5bf0 .up-eaa5 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.info_liquid_5555 {
  max-width: 900px;
  margin: 0 auto;
}

.black_8d3c {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.green-a29d {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.green-a29d.fn-success-0e7f {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.hover-dark-f108 {
  font-size: 3rem;
  line-height: 1;
}

.simple_f3f9 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.shade-basic-366f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.tabs_hot_5e8b,
.label-9327 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.tabs_hot_5e8b h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.label-9327 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.thumbnail-5932,
.out_379b {
  margin: 1.5rem 0;
}

.thumbnail-5932 li,
.out_379b li {
  margin-bottom: 1rem;
}

.search_7ef0 {
  margin: 3rem 0;
}

.button-1180 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.button-1180 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.button-1180 ol {
  margin: 1rem 0;
}

.button-1180 li {
  margin-bottom: 0.75rem;
}

.secondary_038a {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.panel-old-28f0 {
  margin: 2rem 0;
}

.easy_fd30 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.sort-easy-d435 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.grid_276a {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.component_6280 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.hard_3032 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.breadcrumb-b79d {
  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;
}

.breadcrumb-b79d img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.highlight_tiny_24b9 {
  flex: 1;
}

.highlight_tiny_24b9 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.card_huge_2d01 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.notice-5538 p {
  margin-bottom: 1rem;
}

.notification-b7f1 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.narrow_70ee {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.up-c01d {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.up-c01d a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.bronze_b865 h3 {
  margin-bottom: 1.5rem;
}

.paper-0fc9 {
  display: grid;
  gap: 2rem;
}

.block-956e {
  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;
}

.block-956e img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.block-956e h4 {
  margin: 0 0 0.25rem;
}

.block-956e p {
  margin: 0;
  font-size: 0.9375rem;
}

.paper-e47f {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.caption-7c88 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.caption-7c88 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.caption-7c88 ul {
  margin: 1.5rem 0;
}

.caption-7c88 li {
  margin-bottom: 0.75rem;
}

.backdrop_543d {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.surface-full-ce97 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.sidebar_7fb9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.photo_purple_259d h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.photo_purple_259d p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.large-40d0 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.large-40d0 a {
  color: rgba(255, 255, 255, 0.8);
}

.surface-prev-da24 {
  list-style: none;
}

.surface-prev-da24 li {
  margin-bottom: 0.75rem;
}

.surface-prev-da24 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.surface-prev-da24 a:hover {
  color: white;
}

.text-d2fe {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.frame-6c5c {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.backdrop-white-841d {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.photo-c49a {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.row-6297 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .static_7ace {
    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;
  }

  .last-f4e0 {
    font-size: 1.5rem !important;
  }

  .component_center_d289 {
    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 */
  .prev-c37f,
  .text_basic_00d6,
  .active_b5a0,
  .content_5c97,
  .label-fa78,
  .carousel-6a7a,
  .card-2151,
  .down-652d,
  .motion_cdd6,
  .accordion-a67e {
    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 */
  .middle_12cd {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .picture_out_27de {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .footer-efb4 {
    flex-shrink: 0;
  }

  .highlight_tiny_24b9 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .component-9f6d,
  .text_clean_2968 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .text_clean_2968 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .dynamic-3d12 {
    display: none;
  }

  /* Show mobile actions */
  .widget_focused_c87d {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .media_wood_1793 {
    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;
  }

  .media_wood_1793 svg {
    flex-shrink: 0;
  }

  .media_wood_1793 .pagination_next_903d {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .media_wood_1793 .notice_e167 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .widget-5008 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .pink-9245 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .media_wood_1793:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .element-tall-3005 {
    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;
  }

  .element-tall-3005.fn-active-0e7f {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .element-tall-3005 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .element-tall-3005 li:last-child {
    border-bottom: none;
  }

  .element-tall-3005 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .dropdown_out_35e5 {
    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;
  }

  .dropdown_out_35e5 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .dropdown_out_35e5 li:last-child {
    border-bottom: none;
  }

  .dropdown_out_35e5 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .north_12e1 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .media_ba3e {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .breadcrumb-1f85,
  .frame_c543 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .breadcrumb-1f85 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .frame_c543 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .dropdown_out_35e5.fn-active-0e7f {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .heading_29ba {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .notice-advanced-3572 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .lower_1dd8 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .detail-orange-1256 {
    margin-top: 0;
  }

  /* Hero section */
  .detail-orange-1256 {
    padding: 2rem 0 1.5rem;
  }

  .component_center_d289 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .motion_cdd6 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .hidden-c2b1 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .aside-advanced-1c3d {
    max-width: 100%;
    border-radius: 8px;
  }

  .left-2f75 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .thick-5251 {
    padding: 1rem;
  }

  .thick-7562 {
    font-size: 1.5rem;
  }

  .narrow-2b81 {
    font-size: 0.75rem;
  }

  .down-652d {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .card-1687 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .card-1687 .up-eaa5 {
    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 */
  .blue-642d {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .carousel_bottom_e389 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .north-334c {
    margin-bottom: 1rem;
  }

  /* Author */
  .heading_basic_16c7 {
    flex-direction: column;
  }

  .breadcrumb-b79d {
    flex-direction: column;
  }

  /* Quotes */
  .label-fa78 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .shade-basic-366f {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .component_6280 {
    flex-direction: column;
  }

  .component_6280 .up-eaa5 {
    width: 100%;
  }

  /* Version comparison */
  .carousel_light_598e {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .link-8c2d {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .sidebar_7fb9 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .backdrop-white-841d {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .clean_1ba5,
  .sort_4181,
  .message_63e9,
  .center-42e0,
  .focus_53ce,
  .container-b635 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .clean_1ba5 table,
  .sort_4181 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .badge-hard-b87b {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .static_7ace {
    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;
  }

  .last-f4e0 {
    font-size: 1.25rem !important;
  }

  .component_center_d289 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .notice-advanced-3572 {
    position: fixed;
  }

  .lower_1dd8 {
    padding: 0.625rem 0;
  }

  .action-c9b7 img {
    height: 26px;
  }

  .dropdown_out_35e5 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .element-tall-3005 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .media_wood_1793 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .media_wood_1793 svg {
    width: 18px;
    height: 18px;
  }

  .media_wood_1793 .pagination_next_903d {
    font-size: 0.7rem;
  }

  .media_wood_1793 .notice_e167 {
    font-size: 0.65rem;
  }

  .breadcrumb-1f85,
  .frame_c543 {
    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, .static_7ace, .west-24cb, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .hidden-c2b1 {
    padding: 1rem;
  }

  .left-2f75 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .thick-5251 {
    padding: 0.875rem;
  }

  .thick-7562 {
    font-size: 1.25rem;
  }

  .card-1687 .up-eaa5 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .component_center_d289 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .up-eaa5 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .icon-upper-958b {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .carousel_bottom_e389 {
    padding: 1rem;
  }

  .north-334c span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .prev-c37f,
  .badge-slow-9c50,
  .heading_9785,
  .accent_advanced_e61d {
    padding: 1rem;
  }
}

@media print {
  .notice-advanced-3572,
  .brown_dc2f,
  .heading_29ba,
  .up-eaa5,
  .surface-full-ce97 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .static_7ace {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.next_5b4d {
  margin-bottom: 3rem;
  text-align: center;
}

.last-f4e0 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.article_fast_2155 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.old_882d,
.middle_fe16 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.chip-brown-e93d {
  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;
}

.chip-brown-e93d:hover {
  transform: translateY(-5px);
}

.chip-brown-e93d strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.chip-brown-e93d span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.element_lower_111d {
  margin: 3rem 0;
}

.chip_682b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gradient-78de {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.gradient-78de:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.notification-active-ccd3 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section_new_df3b {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.popup-6482 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.focus-dcb4 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.column_large_9399 {
  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;
}

.column_large_9399:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.column_large_9399.gradient-light-23f6 {
  border-left: 4px solid var(--primary-color);
}

.info_last_867c {
  flex-shrink: 0;
}

.info_last_867c svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.frame-white-89c0 {
  flex: 1;
}

.frame-white-89c0 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.tabs-e3c4 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.column-78e0,
.background-old-fe41,
.hovered-f497 {
  margin-bottom: 1.5rem;
}

.column-78e0 h4,
.background-old-fe41 h4,
.hovered-f497 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.column-78e0 ul,
.background-old-fe41 ul,
.hovered-f497 ul {
  list-style: none;
  padding: 0;
}

.column-78e0 li,
.background-old-fe41 li,
.hovered-f497 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.column-78e0 li:before,
.background-old-fe41 li:before,
.hovered-f497 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.black_1571 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.black_1571 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;
}

.black_1571 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.pagination_bright_2c2c { margin: 2rem 0; }
.old_a029 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.old_a029 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.brown_07f8 p { margin-bottom: 1rem; line-height: 1.7; }
.brown_07f8 strong { color: var(--text-primary); }
.brown_07f8 ul { list-style: none; padding-left: 0; }
.brown_07f8 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.brown_07f8 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.motion-0a49 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.table_dynamic_b9b3 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.table_dynamic_b9b3:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.out-e816 { font-size: 3rem; margin-bottom: 1rem; }
.table_dynamic_b9b3 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.table_dynamic_b9b3 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.search-22f4 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.search-22f4 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.gradient-8de4 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.hover-basic-8c88 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.background_4105 { text-align: center; }
.row-1312 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.new_f9ff { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.middle_1593 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.footer-6942 { margin: 2rem 0; }
.alert-glass-d075 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.alert-glass-d075 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.alert-glass-d075 p, .alert-glass-d075 ul { line-height: 1.7; }
.alert-glass-d075 ul { list-style: none; padding-left: 0; }
.alert-glass-d075 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.alert-glass-d075 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.button-top-cb43 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.description-advanced-84d7 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.nav-d79d { text-align: center; }
.plasma-8298 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.dark_0a47 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.up_57b6 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.huge-2bfa { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.layout_yellow_cd76 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.layout_yellow_cd76:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.layout_yellow_cd76 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.layout_yellow_cd76 p, .layout_yellow_cd76 ul { line-height: 1.7; }
.layout_yellow_cd76 ul { list-style: none; padding-left: 0; }
.layout_yellow_cd76 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.layout_yellow_cd76 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 8b44 */
.phantom-card-r7 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.2;
}
