/* ============================================
   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 */
.tiny-2533 p,
.tag_north_d6c1,
.medium-6789,
.background_62e2,
.focused_9375,
.pressed-6f24,
.thumbnail-d363,
.fresh_28fc {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.aside_basic_3f16 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.aside_basic_3f16 > *,
.filter_old_b21a,
.tiny-2533,
.soft-7fe1 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .aside_basic_3f16 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .aside_basic_3f16 {
    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 === */
.button_brown_6c85 {
  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 */
.button_brown_6c85.main_next_42ca {
  box-shadow: var(--shadow-md);
}

.search-9f19 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.article-large-580d img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.action-31b3 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.image-8a33 {
  display: none;
}

/* Hide mobile actions on desktop */
.light-d9f0 {
  display: none;
}

.selected_d356 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.selected_d356 a:hover,
.selected_d356 a.fn-active-2784 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.disabled_slow_415b {
  margin-left: 1rem;
}

.carousel-c2bd {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.info-bright-eef9,
.icon_17a4 {
  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;
}

.info-bright-eef9 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.info-bright-eef9: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;
}

.icon_17a4 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.icon_17a4: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;
}

.info-bright-eef9 svg,
.icon_17a4 svg {
  flex-shrink: 0;
}

.form-static-1e7d {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.shade-soft-24e2 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.shade-soft-24e2::before,
.shade-soft-24e2::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.shade-soft-24e2::before {
  top: -7px;
}

.shade-soft-24e2::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.gradient_8fe8 {
  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 === */
.out-9f0b {
  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);
}

.stale_536e {
  margin: 0 0 2rem;
  text-align: center;
}

.layout_out_6f2c {
  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;
}

.layout_out_6f2c:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.mini_6130 {
  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);
}

.mini_6130 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.video_wood_af7a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.main_medium_03d8 {
  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;
}

.main_medium_03d8:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pattern-white-1575 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.layout-b1de {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.disabled_down_0c10 {
  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);
}

.disabled_down_0c10 .plasma_17d2 {
  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;
}

.disabled_down_0c10 .plasma_17d2 svg {
  flex-shrink: 0;
}

.disabled_down_0c10 .logo_11db {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.disabled_down_0c10 .logo_11db: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);
}

.disabled_down_0c10 .info_062a {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.disabled_down_0c10 .info_062a: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) {
  .out-9f0b {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .layout_out_6f2c {
    max-width: 100%;
  }

  .video_wood_af7a {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .main_medium_03d8 {
    padding: 1rem;
  }

  .pattern-white-1575 {
    font-size: 1.5rem;
  }

  .layout-b1de {
    font-size: 0.75rem;
  }

  .mini_6130 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .disabled_down_0c10 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .disabled_down_0c10 .plasma_17d2 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .video_wood_af7a {
    grid-template-columns: 1fr;
  }
}

.advanced_fee1 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.block_7659 {
  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 === */
.current_aaa1 {
  margin-bottom: 2.5rem;
}

.hovered-8c7b {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.advanced_fee1 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.notice_565c {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.label_a1bf {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.hard-39b2 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.main_c51f {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.link_short_ce5c {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.link-iron-2fff {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.block_wood_692f {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.block_wood_692f svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.focus-hard-1d54 {
  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);
}

.pattern-outer-bc12 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.caption-prev-9fe5 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.main_stone_7d75 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.fluid-bc5b {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.iron_6355 {
  display: grid;
  gap: 1rem;
}

.search-yellow-475a {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.panel-d3e8 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.middle-2834 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.iron-db13 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.full_a484 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.widget_wood_9751 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.widget_wood_9751 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.tag_north_d6c1 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.slow-87fb {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.notice_6c52 {
  display: grid;
  gap: 2rem;
}

.row-dynamic-540a {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.label_a1bf {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.notice_565c {
  flex: 1;
}

.main_c51f {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.main_c51f a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.dim_8272 {
  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;
}

.link_short_ce5c {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.easy_9e5a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.easy_9e5a span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.alert-3df5 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.alert-3df5 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.next_cda3 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.next_cda3 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.next_cda3 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.next_cda3 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.image-right-6626 {
  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 === */
.footer_6dcc {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.steel-0828 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.pagination_5b4c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.avatar-fb35 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.avatar-fb35 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.avatar-fb35 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.avatar-fb35 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;
}

.avatar-fb35 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.avatar-fb35 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.tiny-2533 {
  padding: 3rem 0 5rem;
}

.soft-7fe1 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.soft-7fe1.fast_a9b4 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.medium-6789 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.panel-pink-ae46 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.lite-75dc {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.lite-75dc h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.banner-bottom-8e2b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.caption_fast_bdca {
  text-align: center;
}

.media_first_fc92 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.purple_d084 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.background_eccb {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.pressed-6f24 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.background_62e2 {
  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;
}

.background_62e2 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.background_62e2:hover {
  box-shadow: var(--shadow-lg);
}

.background_62e2.clean_cb91 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.background_62e2 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.background_62e2 ul {
  margin: 1rem 0;
}

.background_62e2 li {
  margin-bottom: 0.75rem;
}

.last-3ecb {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.basic_c9b6 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.basic_c9b6 a {
  font-weight: 600;
}

/* === Data Tables === */
.easy_8b55 {
  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;
}

.easy_8b55 table {
  width: 100%;
  min-width: 600px;
}

.easy_8b55 thead {
  background-color: var(--primary-color);
  color: white;
}

.easy_8b55 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.easy_8b55 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.easy_8b55 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.easy_8b55 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.mini-ae4c {
  list-style: none;
  margin: 1.5rem 0;
}

.mini-ae4c li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.mini-ae4c li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.list_small_50cd::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-2784::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 === */
.rough-e65a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.heading_b33c {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.heading_b33c img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.heading_b33c strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.heading_b33c span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.rough-e65a blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.thumbnail-d363 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.thumbnail-d363::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.thumbnail-orange-8472 {
  position: relative;
  margin-bottom: 3rem;
}

.frame_bf13 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.frame_bf13 .form-purple-27cf {
  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;
}

.pink_9251 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.pink_9251 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.pink_9251 ul {
  margin: 1rem 0;
}

.pink_9251 li {
  margin-bottom: 0.75rem;
}

.paragraph_smooth_c673 {
  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 === */
.bottom_0f47 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.bottom_0f47 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.icon-north-05d1 {
  list-style: none;
  margin: 1.5rem 0;
}

.icon-north-05d1 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.icon-north-05d1 a {
  font-weight: 600;
}

.banner-60a6 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.fresh_28fc {
  margin: 2.5rem 0;
}

.narrow_55ca {
  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;
}

.narrow_55ca:hover {
  box-shadow: var(--shadow-lg);
}

.narrow_55ca.link_fe0d {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.background-0322 {
  flex-shrink: 0;
}

.background-0322 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);
}

.up-2575 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.steel_b7f9,
.center-aa49,
.description_medium_cc28 {
  width: 100%;
  margin: 1.5rem 0;
}

.under_8d15 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.under_8d15 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.tabs_d434 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.tabs_d434 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.middle_a131 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.middle_a131 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.huge-0417 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.hover-over-222d {
  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;
}

.hover-over-222d:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.hover-over-222d.input-pressed-c425 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.hover-over-222d .notification_wood_32b2 {
  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;
}

.hover-over-222d h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.filter_51a1 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.basic_0aba {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.basic_0aba label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.hovered-c35f {
  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 === */
.plasma_17d2 {
  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;
}

.logo_11db {
  background-color: var(--primary-color);
  color: white;
}

.logo_11db:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.info_062a {
  background-color: var(--text-secondary);
  color: white;
}

.info_062a:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.advanced-41d1 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.advanced-41d1:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.search_middle_fc18 {
  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;
}

.search_middle_fc18:hover {
  background-color: var(--primary-dark);
}

.tabs-under-e832 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.button-76fd {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.disabled_silver_33aa {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.text_red_4c4c {
  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 === */
.logo_plasma_0e83 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.sort-center-97eb {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.sort-center-97eb h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.action_d50f {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.yellow-1aba {
  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;
}

.section_f23c {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.message_f32b {
  list-style: none;
  counter-reset: rank-counter;
}

.message_f32b li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.message_f32b 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;
}

.icon_first_4585 {
  list-style: none;
}

.icon_first_4585 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.large_8bc9 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.main_6e42 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.main_6e42 .clean-9e9c {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.main_6e42 .header-ae2d {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.label-over-27d2 {
  margin-top: 3rem;
}

.upper_388d {
  width: 100%;
}

.container-silver-eb0f {
  background-color: #fef3c7;
}

.wrapper-advanced-2255 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.form_f3d8 {
  margin: 3rem 0;
}

.fixed-f10b {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.popup_focused_2d5a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.popup_focused_2d5a:hover {
  box-shadow: var(--shadow-lg);
}

.popup_focused_2d5a.picture_cce4 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.bright_53b1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.hard_f596 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.hard_f596 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form_84e3 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.popup_focused_2d5a blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.panel_inner_2d36 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.layout_fluid_a63b {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.summary_7171 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.notification_thick_b9e7 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.block-blue-7d2d {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.tag_3559 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.mask-upper-09dc {
  max-width: 900px;
  margin: 0 auto;
}

.outline_f642 {
  margin: 2rem 0;
}

.bronze_4fa9 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.bronze_4fa9 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.bronze_4fa9 summary::-webkit-details-marker {
  display: none;
}

.bronze_4fa9 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.button_be18 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.bronze_4fa9[open] .button_be18 {
  transform: rotate(45deg);
}

.carousel-53b8 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.carousel-53b8 p:last-child {
  margin-bottom: 0;
}

.accent-2c53 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.filter_46a3 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.simple_fadd {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.simple_fadd p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.simple_fadd .plasma_17d2 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.progress-fluid-aafb {
  max-width: 900px;
  margin: 0 auto;
}

.brown-98e2 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.layout_top_4e28 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.layout_top_4e28.fn-success-2784 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.breadcrumb-north-7b64 {
  font-size: 3rem;
  line-height: 1;
}

.paragraph_c7c2 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.solid_8928 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.box_up_63c2,
.icon_new_08db {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.box_up_63c2 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.icon_new_08db h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.column-4bd1,
.surface_large_4cd1 {
  margin: 1.5rem 0;
}

.column-4bd1 li,
.surface_large_4cd1 li {
  margin-bottom: 1rem;
}

.disabled-8ba4 {
  margin: 3rem 0;
}

.column_hard_faf0 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.column_hard_faf0 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.column_hard_faf0 ol {
  margin: 1rem 0;
}

.column_hard_faf0 li {
  margin-bottom: 0.75rem;
}

.backdrop-cfbc {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.element-4fb2 {
  margin: 2rem 0;
}

.south-a67d {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.input_3ded {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.message_5a1f {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.bright-2b55 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.fast-c989 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.dirty_5d34 {
  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;
}

.dirty_5d34 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.hard-39b2 {
  flex: 1;
}

.hard-39b2 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.heading-green-38bf {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.shade_green_8e1f p {
  margin-bottom: 1rem;
}

.hover-cold-525c {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.layout_south_8df4 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.element_rough_7ce6 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.element_rough_7ce6 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.active_left_31d6 h3 {
  margin-bottom: 1.5rem;
}

.rough-ff94 {
  display: grid;
  gap: 2rem;
}

.accordion_thick_fefb {
  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;
}

.accordion_thick_fefb img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.accordion_thick_fefb h4 {
  margin: 0 0 0.25rem;
}

.accordion_thick_fefb p {
  margin: 0;
  font-size: 0.9375rem;
}

.paragraph_06ea {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.component_in_d133 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.component_in_d133 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.component_in_d133 ul {
  margin: 1.5rem 0;
}

.component_in_d133 li {
  margin-bottom: 0.75rem;
}

.dim-546b {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.widget-298b {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.texture_thick_250f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.focus_glass_1582 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.focus_glass_1582 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.sort-803f {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.sort-803f a {
  color: rgba(255, 255, 255, 0.8);
}

.thumbnail-stale-df14 {
  list-style: none;
}

.thumbnail-stale-df14 li {
  margin-bottom: 0.75rem;
}

.thumbnail-stale-df14 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.thumbnail-stale-df14 a:hover {
  color: white;
}

.static-3505 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.box_16a2 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.static_f86e {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.layout_4926 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.component-selected-0ecf {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .aside_basic_3f16 {
    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;
  }

  .orange-3722 {
    font-size: 1.5rem !important;
  }

  .hovered-8c7b {
    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 */
  .background_62e2,
  .focused_9375,
  .pink_9251,
  .up-2575,
  .bright_53b1,
  .popup_focused_2d5a,
  .carousel-53b8,
  .mini_6130,
  .tag_north_d6c1,
  .medium-6789 {
    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 */
  .advanced_fee1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .notice_565c {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .label_a1bf {
    flex-shrink: 0;
  }

  .hard-39b2 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .main_c51f,
  .link_short_ce5c {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .link_short_ce5c {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .action-31b3 {
    display: none;
  }

  /* Show mobile actions */
  .light-d9f0 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .container_39b9 {
    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;
  }

  .container_39b9 svg {
    flex-shrink: 0;
  }

  .container_39b9 .orange_2aee {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .container_39b9 .hot-5d9b {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .disabled_slow_5f83 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .link_1703 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .container_39b9:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .image-8a33 {
    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;
  }

  .image-8a33.fn-active-2784 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .image-8a33 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .image-8a33 li:last-child {
    border-bottom: none;
  }

  .image-8a33 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .selected_d356 {
    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;
  }

  .selected_d356 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .selected_d356 li:last-child {
    border-bottom: none;
  }

  .selected_d356 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .disabled_slow_415b {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .carousel-c2bd {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .info-bright-eef9,
  .icon_17a4 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .info-bright-eef9 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .icon_17a4 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .selected_d356.fn-active-2784 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .form-static-1e7d {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .button_brown_6c85 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .search-9f19 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .gradient_8fe8 {
    margin-top: 0;
  }

  /* Hero section */
  .gradient_8fe8 {
    padding: 2rem 0 1.5rem;
  }

  .hovered-8c7b {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .tag_north_d6c1 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .out-9f0b {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .layout_out_6f2c {
    max-width: 100%;
    border-radius: 8px;
  }

  .video_wood_af7a {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .main_medium_03d8 {
    padding: 1rem;
  }

  .pattern-white-1575 {
    font-size: 1.5rem;
  }

  .layout-b1de {
    font-size: 0.75rem;
  }

  .mini_6130 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .disabled_down_0c10 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .disabled_down_0c10 .plasma_17d2 {
    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 */
  .pagination_5b4c {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .narrow_55ca {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .background-0322 {
    margin-bottom: 1rem;
  }

  /* Author */
  .row-dynamic-540a {
    flex-direction: column;
  }

  .dirty_5d34 {
    flex-direction: column;
  }

  /* Quotes */
  .bright_53b1 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .solid_8928 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .bright-2b55 {
    flex-direction: column;
  }

  .bright-2b55 .plasma_17d2 {
    width: 100%;
  }

  /* Version comparison */
  .huge-0417 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .logo_plasma_0e83 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .texture_thick_250f {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .static_f86e {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .easy_8b55,
  .center-aa49,
  .media-c71d,
  .upper_388d,
  .steel_b7f9,
  .description_medium_cc28 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .easy_8b55 table,
  .center-aa49 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .hovered-c35f {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .aside_basic_3f16 {
    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;
  }

  .orange-3722 {
    font-size: 1.25rem !important;
  }

  .hovered-8c7b {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .button_brown_6c85 {
    position: fixed;
  }

  .search-9f19 {
    padding: 0.625rem 0;
  }

  .article-large-580d img {
    height: 26px;
  }

  .selected_d356 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .image-8a33 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .container_39b9 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .container_39b9 svg {
    width: 18px;
    height: 18px;
  }

  .container_39b9 .orange_2aee {
    font-size: 0.7rem;
  }

  .container_39b9 .hot-5d9b {
    font-size: 0.65rem;
  }

  .info-bright-eef9,
  .icon_17a4 {
    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, .aside_basic_3f16, .filter_old_b21a, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .out-9f0b {
    padding: 1rem;
  }

  .video_wood_af7a {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .main_medium_03d8 {
    padding: 0.875rem;
  }

  .pattern-white-1575 {
    font-size: 1.25rem;
  }

  .disabled_down_0c10 .plasma_17d2 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .hovered-8c7b {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .plasma_17d2 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .tabs-under-e832 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .narrow_55ca {
    padding: 1rem;
  }

  .background-0322 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .background_62e2,
  .pagination-plasma-ce8c,
  .section-c213,
  .first-1dd5 {
    padding: 1rem;
  }
}

@media print {
  .button_brown_6c85,
  .footer_6dcc,
  .form-static-1e7d,
  .plasma_17d2,
  .widget-298b {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .aside_basic_3f16 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.surface_a3af {
  margin-bottom: 3rem;
  text-align: center;
}

.orange-3722 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.dynamic-8c6a {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.dark-af16,
.west-8b8a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.section-green-47f9 {
  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;
}

.section-green-47f9:hover {
  transform: translateY(-5px);
}

.section-green-47f9 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.section-green-47f9 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.slider_middle_2990 {
  margin: 3rem 0;
}

.mask-basic-c987 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.wrapper-2423 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.wrapper-2423:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.popup_768d {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.backdrop-short-6336 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.menu-2aa8 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.header_last_1536 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.pagination_hard_e98c {
  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;
}

.pagination_hard_e98c:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.pagination_hard_e98c.surface-soft-4c81 {
  border-left: 4px solid var(--primary-color);
}

.shadow-d619 {
  flex-shrink: 0;
}

.shadow-d619 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.caption-4921 {
  flex: 1;
}

.caption-4921 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.title-next-3c7a {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.texture_1370,
.paper-cc0e,
.info-dirty-e6e4 {
  margin-bottom: 1.5rem;
}

.texture_1370 h4,
.paper-cc0e h4,
.info-dirty-e6e4 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.texture_1370 ul,
.paper-cc0e ul,
.info-dirty-e6e4 ul {
  list-style: none;
  padding: 0;
}

.texture_1370 li,
.paper-cc0e li,
.info-dirty-e6e4 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.texture_1370 li:before,
.paper-cc0e li:before,
.info-dirty-e6e4 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.table_orange_88e5 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.table_orange_88e5 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;
}

.table_orange_88e5 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.gallery_ef25 { margin: 2rem 0; }
.shade_f200 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.shade_f200 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.last_dc68 p { margin-bottom: 1rem; line-height: 1.7; }
.last_dc68 strong { color: var(--text-primary); }
.last_dc68 ul { list-style: none; padding-left: 0; }
.last_dc68 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.last_dc68 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.card-ce64 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.caption-bright-216f { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.caption-bright-216f:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.accent-0bb3 { font-size: 3rem; margin-bottom: 1rem; }
.caption-bright-216f h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.caption-bright-216f p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.white-2457 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.white-2457 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.layout_8a2a { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.dark_99eb { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.silver_fffa { text-align: center; }
.row-last-796c { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.description_0df6 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.gold-1639 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.pink_24f6 { margin: 2rem 0; }
.tiny-20ea { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.tiny-20ea h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.tiny-20ea p, .tiny-20ea ul { line-height: 1.7; }
.tiny-20ea ul { list-style: none; padding-left: 0; }
.tiny-20ea ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.tiny-20ea ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.mask-b90e { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.menu_4eb6 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.info-b2ce { text-align: center; }
.button-right-3417 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.notification_dynamic_c1bd { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.tabs_1bf8 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.info-e289 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.caption-small-b0d2 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.caption-small-b0d2:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.caption-small-b0d2 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.caption-small-b0d2 p, .caption-small-b0d2 ul { line-height: 1.7; }
.caption-small-b0d2 ul { list-style: none; padding-left: 0; }
.caption-small-b0d2 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.caption-small-b0d2 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 70c1 */
.shadow-element-d5 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.1;
}
