/* ============================================
   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 */
.picture_hard_5a2c p,
.wrapper_dirty_85d1,
.active-7cf9,
.notification-stone-24f0,
.easy-6362,
.module_dark_bbf0,
.summary-1c0a,
.large-de55 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.fast_8811 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.fast_8811 > *,
.cool-aec1,
.picture_hard_5a2c,
.highlight_upper_68df {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .fast_8811 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .fast_8811 {
    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 === */
.caption-90a2 {
  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 */
.caption-90a2.footer-dfa7 {
  box-shadow: var(--shadow-md);
}

.old_af4e {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.easy_96c3 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.layout-slow-6554 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.element_7f5f {
  display: none;
}

/* Hide mobile actions on desktop */
.dim_a237 {
  display: none;
}

.heading-0d92 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.heading-0d92 a:hover,
.heading-0d92 a.fn-active-e42a {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.badge-7f81 {
  margin-left: 1rem;
}

.glass_b6bc {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.accordion_middle_3f60,
.blue-204e {
  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;
}

.accordion_middle_3f60 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.accordion_middle_3f60: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;
}

.blue-204e {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.blue-204e: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;
}

.accordion_middle_3f60 svg,
.blue-204e svg {
  flex-shrink: 0;
}

.title_inner_c8e1 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.highlight-bright-d3b4 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.highlight-bright-d3b4::before,
.highlight-bright-d3b4::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.highlight-bright-d3b4::before {
  top: -7px;
}

.highlight-bright-d3b4::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.new-6ce5 {
  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 === */
.mini_6f4a {
  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);
}

.preview-7047 {
  margin: 0 0 2rem;
  text-align: center;
}

.yellow_587d {
  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;
}

.yellow_587d:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.purple_a8cd {
  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);
}

.purple_a8cd strong {
  color: var(--primary-color);
  font-weight: 700;
}

.summary-9bfe {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.sidebar-blue-4068 {
  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;
}

.sidebar-blue-4068:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.medium-aee2 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.image_c6fa {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.row-glass-1669 {
  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);
}

.row-glass-1669 .hero_c9ad {
  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;
}

.row-glass-1669 .hero_c9ad svg {
  flex-shrink: 0;
}

.row-glass-1669 .content_5574 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.row-glass-1669 .content_5574: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);
}

.row-glass-1669 .right_590b {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.row-glass-1669 .right_590b: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) {
  .mini_6f4a {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .yellow_587d {
    max-width: 100%;
  }

  .summary-9bfe {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .sidebar-blue-4068 {
    padding: 1rem;
  }

  .medium-aee2 {
    font-size: 1.5rem;
  }

  .image_c6fa {
    font-size: 0.75rem;
  }

  .purple_a8cd {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .row-glass-1669 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .row-glass-1669 .hero_c9ad {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .summary-9bfe {
    grid-template-columns: 1fr;
  }
}

.video_focused_290d {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.shadow_c90f {
  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 === */
.gallery_65ba {
  margin-bottom: 2.5rem;
}

.smooth_4e2f {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.video_focused_290d {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.west-bce3 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-9135 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.tag-fb5d {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.video_5689 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.tag_basic_e9f4 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.texture-44d9 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.north_8103 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.north_8103 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.tag_gas_9ac7 {
  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);
}

.dirty_1f4d {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.slider-down-6767 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.input-18e1 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.summary_ea8a {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.banner_7875 {
  display: grid;
  gap: 1rem;
}

.tall_199c {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.image_3eae {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.slider_de53 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.info-a25e {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.photo_cold_a163 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.sidebar_c2fa {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.sidebar_c2fa p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.wrapper_dirty_85d1 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.block-d7ef {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.active-92ed {
  display: grid;
  gap: 2rem;
}

.right_bd43 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.main-9135 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.west-bce3 {
  flex: 1;
}

.video_5689 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.video_5689 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.row_3ce0 {
  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;
}

.tag_basic_e9f4 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.fast-9288 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.fast-9288 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.shade-9d62 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.shade-9d62 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.menu-7ebd {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.menu-7ebd strong {
  display: block;
  margin-bottom: 0.75rem;
}

.menu-7ebd ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-7ebd li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.outer_4677 {
  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 === */
.slider-fluid-7ea7 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.cold-6f92 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.search-lower-0d7d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.sidebar-stale-aebf h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.sidebar-stale-aebf ol {
  list-style: none;
  counter-reset: toc-counter;
}

.sidebar-stale-aebf ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.sidebar-stale-aebf 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;
}

.sidebar-stale-aebf ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.sidebar-stale-aebf ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.picture_hard_5a2c {
  padding: 3rem 0 5rem;
}

.highlight_upper_68df {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.highlight_upper_68df.shade-c39a {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.active-7cf9 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.current_c11d {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.layout_bc57 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.layout_bc57 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.alert-6862 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.dynamic_8118 {
  text-align: center;
}

.text_97a4 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.container_b0bb {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.frame-orange-7a60 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.module_dark_bbf0 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.notification-stone-24f0 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
  max-width: 100%;
  overflow: hidden;
  word-wrap: break-word;
}

.notification-stone-24f0 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.notification-stone-24f0:hover {
  box-shadow: var(--shadow-lg);
}

.notification-stone-24f0.description-03f5 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.notification-stone-24f0 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.notification-stone-24f0 ul {
  margin: 1rem 0;
}

.notification-stone-24f0 li {
  margin-bottom: 0.75rem;
}

.background_simple_c549 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.footer_c617 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.footer_c617 a {
  font-weight: 600;
}

/* === Data Tables === */
.warm-176d {
  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;
}

.warm-176d table {
  width: 100%;
  min-width: 600px;
}

.warm-176d thead {
  background-color: var(--primary-color);
  color: white;
}

.warm-176d th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.warm-176d td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.warm-176d tbody tr:hover {
  background-color: var(--bg-secondary);
}

.warm-176d tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.black-2e10 {
  list-style: none;
  margin: 1.5rem 0;
}

.black-2e10 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.black-2e10 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.label_aec4::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-e42a::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 === */
.tooltip_pro_5f54 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.overlay_pro_def2 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.overlay_pro_def2 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.overlay_pro_def2 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.overlay_pro_def2 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tooltip_pro_5f54 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.summary-1c0a {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.summary-1c0a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.warm_1721 {
  position: relative;
  margin-bottom: 3rem;
}

.west_3488 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.west_3488 .popup-375f {
  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;
}

.section-c43c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.section-c43c h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.section-c43c ul {
  margin: 1rem 0;
}

.section-c43c li {
  margin-bottom: 0.75rem;
}

.white-2642 {
  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 === */
.inner_39e6 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.inner_39e6 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.bronze_cde4 {
  list-style: none;
  margin: 1.5rem 0;
}

.bronze_cde4 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.bronze_cde4 a {
  font-weight: 600;
}

.box-hot-1ad6 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.large-de55 {
  margin: 2.5rem 0;
}

.hidden_smooth_34be {
  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;
}

.hidden_smooth_34be:hover {
  box-shadow: var(--shadow-lg);
}

.hidden_smooth_34be.pagination_short_5496 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.popup_center_cc04 {
  flex-shrink: 0;
}

.popup_center_cc04 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);
}

.secondary_a630 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.active-ca98,
.filter_a501,
.out_e9d7 {
  width: 100%;
  margin: 1.5rem 0;
}

.action_3a06 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.action_3a06 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.paragraph-fast-310d {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.paragraph-fast-310d strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.picture-28d3 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.picture-28d3 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.input_fixed_4fae {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.copper-518f {
  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;
}

.copper-518f:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.copper-518f.simple-f61f {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.copper-518f .item-prev-f0a0 {
  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;
}

.copper-518f h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.outline-da6c {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.focus_clean_c47c {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.focus_clean_c47c label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.preview-top-ab1e {
  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 === */
.hero_c9ad {
  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;
}

.content_5574 {
  background-color: var(--primary-color);
  color: white;
}

.content_5574:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.right_590b {
  background-color: var(--text-secondary);
  color: white;
}

.right_590b:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.banner_8b4b {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.banner_8b4b:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.easy_1981 {
  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;
}

.easy_1981:hover {
  background-color: var(--primary-dark);
}

.accordion-new-77af {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.caption-979d {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.caption_44fc {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.media_034c {
  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 === */
.widget-middle-ce3d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.gallery-middle-a344 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.gallery-middle-a344 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.yellow-68aa {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.lower_4283 {
  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;
}

.text_pro_78dc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.title_2489 {
  list-style: none;
  counter-reset: rank-counter;
}

.title_2489 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.title_2489 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;
}

.detail-948b {
  list-style: none;
}

.detail-948b li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.simple-c03d {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.carousel_smooth_776d {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.carousel_smooth_776d .highlight_lite_168e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.carousel_smooth_776d .list_86bb {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.dynamic-3ca5 {
  margin-top: 3rem;
}

.header-pro-348a {
  width: 100%;
}

.modal_orange_6673 {
  background-color: #fef3c7;
}

.thumbnail_6b3e {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.summary-smooth-17d6 {
  margin: 3rem 0;
}

.main_upper_1ffa {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.main-basic-47a1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.main-basic-47a1:hover {
  box-shadow: var(--shadow-lg);
}

.main-basic-47a1.section-7654 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.layout-67d5 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.wrapper-7785 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.wrapper-7785 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.short_37d0 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.main-basic-47a1 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.content-new-42f8 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.wrapper_rough_0a5e {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.form_30e8 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.sidebar_out_88c8 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.sidebar_narrow_841a {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.icon_051b {
  margin-top: 1rem;
}

/* === FAQ Section === */
.action-0b8e {
  max-width: 900px;
  margin: 0 auto;
}

.panel-wood-df93 {
  margin: 2rem 0;
}

.clean_744a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.clean_744a summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.clean_744a summary::-webkit-details-marker {
  display: none;
}

.clean_744a summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.article_ee44 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.clean_744a[open] .article_ee44 {
  transform: rotate(45deg);
}

.inner-6623 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.inner-6623 p:last-child {
  margin-bottom: 0;
}

.layout_in_db9e {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.accordion_easy_1434 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.south-a6fa {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.south-a6fa p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.south-a6fa .hero_c9ad {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.dynamic_0805 {
  max-width: 900px;
  margin: 0 auto;
}

.button_upper_9f06 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.card_fixed_abad {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.card_fixed_abad.fn-success-e42a {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.tiny-34a2 {
  font-size: 3rem;
  line-height: 1;
}

.caption_pro_e277 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.hover_9a76 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.short_487e,
.panel_first_5d32 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.short_487e h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.panel_first_5d32 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.feature-bb12,
.out_19fd {
  margin: 1.5rem 0;
}

.feature-bb12 li,
.out_19fd li {
  margin-bottom: 1rem;
}

.slider_1c9a {
  margin: 3rem 0;
}

.text-slow-1c6d {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.text-slow-1c6d h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.text-slow-1c6d ol {
  margin: 1rem 0;
}

.text-slow-1c6d li {
  margin-bottom: 0.75rem;
}

.header_dbe9 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.heading-slow-4377 {
  margin: 2rem 0;
}

.aside_current_1e1a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.primary-right-c709 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.footer_535f {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.block-active-22f4 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.hard_e5ff {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.plasma_fc3f {
  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;
}

.plasma_fc3f img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.tag-fb5d {
  flex: 1;
}

.tag-fb5d h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.shade-smooth-4dc2 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.shadow_e3a8 p {
  margin-bottom: 1rem;
}

.dim-d80a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.avatar-hovered-5617 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.tabs-huge-05ae {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.tabs-huge-05ae a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.thumbnail_16af h3 {
  margin-bottom: 1.5rem;
}

.table_ff89 {
  display: grid;
  gap: 2rem;
}

.sidebar-0f28 {
  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;
}

.sidebar-0f28 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.sidebar-0f28 h4 {
  margin: 0 0 0.25rem;
}

.sidebar-0f28 p {
  margin: 0;
  font-size: 0.9375rem;
}

.tag_ba48 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.backdrop-95fb {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.backdrop-95fb h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.backdrop-95fb ul {
  margin: 1.5rem 0;
}

.backdrop-95fb li {
  margin-bottom: 0.75rem;
}

.bright-fd57 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.secondary-f852 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.main-9404 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.rough-2afe h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.rough-2afe p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.modal-simple-0799 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.modal-simple-0799 a {
  color: rgba(255, 255, 255, 0.8);
}

.rough-39f9 {
  list-style: none;
}

.rough-39f9 li {
  margin-bottom: 0.75rem;
}

.rough-39f9 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.rough-39f9 a:hover {
  color: white;
}

.paragraph-e5ab {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.nav-37ce {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.active_stone_d077 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.carousel-under-043b {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.detail_57ad {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .fast_8811 {
    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;
  }

  .top_3b55 {
    font-size: 1.5rem !important;
  }

  .smooth_4e2f {
    font-size: 1.5rem !important;
  }

  p, li, td, th, span, div, strong {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
  }

  /* Force all containers to fit */
  .notification-stone-24f0,
  .easy-6362,
  .section-c43c,
  .secondary_a630,
  .layout-67d5,
  .main-basic-47a1,
  .inner-6623,
  .purple_a8cd,
  .wrapper_dirty_85d1,
  .active-7cf9 {
    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 */
  .video_focused_290d {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .west-bce3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .main-9135 {
    flex-shrink: 0;
  }

  .tag-fb5d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .video_5689,
  .tag_basic_e9f4 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .tag_basic_e9f4 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .layout-slow-6554 {
    display: none;
  }

  /* Show mobile actions */
  .dim_a237 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .header_short_e17e {
    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;
  }

  .header_short_e17e svg {
    flex-shrink: 0;
  }

  .header_short_e17e .smooth_6be8 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .header_short_e17e .title_5bb0 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .slow_5ba0 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .container_narrow_6179 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .header_short_e17e:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .element_7f5f {
    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_7f5f.fn-active-e42a {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .element_7f5f li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .element_7f5f li:last-child {
    border-bottom: none;
  }

  .element_7f5f a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .heading-0d92 {
    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;
  }

  .heading-0d92 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .heading-0d92 li:last-child {
    border-bottom: none;
  }

  .heading-0d92 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .badge-7f81 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .glass_b6bc {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .accordion_middle_3f60,
  .blue-204e {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .accordion_middle_3f60 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .blue-204e {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .heading-0d92.fn-active-e42a {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .title_inner_c8e1 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .caption-90a2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .old_af4e {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .new-6ce5 {
    margin-top: 0;
  }

  /* Hero section */
  .new-6ce5 {
    padding: 2rem 0 1.5rem;
  }

  .smooth_4e2f {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .wrapper_dirty_85d1 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .mini_6f4a {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .yellow_587d {
    max-width: 100%;
    border-radius: 8px;
  }

  .summary-9bfe {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .sidebar-blue-4068 {
    padding: 1rem;
  }

  .medium-aee2 {
    font-size: 1.5rem;
  }

  .image_c6fa {
    font-size: 0.75rem;
  }

  .purple_a8cd {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .row-glass-1669 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .row-glass-1669 .hero_c9ad {
    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 */
  .search-lower-0d7d {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .hidden_smooth_34be {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .popup_center_cc04 {
    margin-bottom: 1rem;
  }

  /* Author */
  .right_bd43 {
    flex-direction: column;
  }

  .plasma_fc3f {
    flex-direction: column;
  }

  /* Quotes */
  .layout-67d5 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .hover_9a76 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .block-active-22f4 {
    flex-direction: column;
  }

  .block-active-22f4 .hero_c9ad {
    width: 100%;
  }

  /* Version comparison */
  .input_fixed_4fae {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .widget-middle-ce3d {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .main-9404 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .active_stone_d077 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .warm-176d,
  .filter_a501,
  .surface-49ac,
  .header-pro-348a,
  .active-ca98,
  .out_e9d7 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .warm-176d table,
  .filter_a501 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .preview-top-ab1e {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .fast_8811 {
    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;
  }

  .top_3b55 {
    font-size: 1.25rem !important;
  }

  .smooth_4e2f {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .caption-90a2 {
    position: fixed;
  }

  .old_af4e {
    padding: 0.625rem 0;
  }

  .easy_96c3 img {
    height: 26px;
  }

  .heading-0d92 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .element_7f5f {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .header_short_e17e {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .header_short_e17e svg {
    width: 18px;
    height: 18px;
  }

  .header_short_e17e .smooth_6be8 {
    font-size: 0.7rem;
  }

  .header_short_e17e .title_5bb0 {
    font-size: 0.65rem;
  }

  .accordion_middle_3f60,
  .blue-204e {
    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, .fast_8811, .cool-aec1, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .mini_6f4a {
    padding: 1rem;
  }

  .summary-9bfe {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .sidebar-blue-4068 {
    padding: 0.875rem;
  }

  .medium-aee2 {
    font-size: 1.25rem;
  }

  .row-glass-1669 .hero_c9ad {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .smooth_4e2f {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .hero_c9ad {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .accordion-new-77af {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .hidden_smooth_34be {
    padding: 1rem;
  }

  .popup_center_cc04 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .notification-stone-24f0,
  .text_left_2c74,
  .modal-stone-d89e,
  .panel-87d0 {
    padding: 1rem;
  }
}

@media print {
  .caption-90a2,
  .slider-fluid-7ea7,
  .title_inner_c8e1,
  .hero_c9ad,
  .secondary-f852 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .fast_8811 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.over-7971 {
  margin-bottom: 3rem;
  text-align: center;
}

.top_3b55 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hot_79a9 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.picture-d745,
.prev-3c53 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.pagination-dirty-95ae {
  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-dirty-95ae:hover {
  transform: translateY(-5px);
}

.pagination-dirty-95ae strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.pagination-dirty-95ae span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.copper_4f35 {
  margin: 3rem 0;
}

.border_b961 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.status-08f9 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.status-08f9:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.highlight_0fd7 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.static_4cfc {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.pattern-fluid-cb09 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.block-narrow-5632 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.huge_3198 {
  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_3198:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.huge_3198.basic_e2f5 {
  border-left: 4px solid var(--primary-color);
}

.silver_dbeb {
  flex-shrink: 0;
}

.silver_dbeb svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.medium-7892 {
  flex: 1;
}

.medium-7892 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.header_c581 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.dirty_48b3,
.outline-11c1,
.alert_clean_a744 {
  margin-bottom: 1.5rem;
}

.dirty_48b3 h4,
.outline-11c1 h4,
.alert_clean_a744 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dirty_48b3 ul,
.outline-11c1 ul,
.alert_clean_a744 ul {
  list-style: none;
  padding: 0;
}

.dirty_48b3 li,
.outline-11c1 li,
.alert_clean_a744 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.dirty_48b3 li:before,
.outline-11c1 li:before,
.alert_clean_a744 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.chip_huge_d5ca {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.chip_huge_d5ca 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;
}

.chip_huge_d5ca a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.selected_3d92 { margin: 2rem 0; }
.progress-bacd { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.progress-bacd h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.icon-paper-f0dc p { margin-bottom: 1rem; line-height: 1.7; }
.icon-paper-f0dc strong { color: var(--text-primary); }
.icon-paper-f0dc ul { list-style: none; padding-left: 0; }
.icon-paper-f0dc ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.icon-paper-f0dc ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.gallery_43fb { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.box_white_a680 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.box_white_a680:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.hidden_b85d { font-size: 3rem; margin-bottom: 1rem; }
.box_white_a680 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.box_white_a680 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.brown_4b43 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.brown_4b43 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.component_wood_369c { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.card-c1f2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.overlay_hard_949a { text-align: center; }
.image-gas-1f58 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.pro-a950 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.secondary-2262 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.hovered-f9c1 { margin: 2rem 0; }
.description-basic-69cb { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.description-basic-69cb h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.description-basic-69cb p, .description-basic-69cb ul { line-height: 1.7; }
.description-basic-69cb ul { list-style: none; padding-left: 0; }
.description-basic-69cb ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.description-basic-69cb ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.silver_1fd2 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.frame-mini-8061 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.status-hovered-32e7 { text-align: center; }
.tall-9a17 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.tabs_hard_5e90 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.message_orange_4580 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.outline_f480 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.accordion-53c5 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.accordion-53c5:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.accordion-53c5 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.accordion-53c5 p, .accordion-53c5 ul { line-height: 1.7; }
.accordion-53c5 ul { list-style: none; padding-left: 0; }
.accordion-53c5 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.accordion-53c5 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 005e */
.widget-item-n5 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.0;
}
