/* ============================================
   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 */
.alert-stale-d30a p,
.title_top_2639,
.main_thick_a178,
.gradient_4ecb,
.out-c3dd,
.progress-new-a09c,
.detail_left_83d5,
.slow_8189 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.secondary_east_65c6 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.secondary_east_65c6 > *,
.border_rough_b419,
.alert-stale-d30a,
.shadow-motion-c8a8 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .secondary_east_65c6 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .secondary_east_65c6 {
    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 === */
.easy_df36 {
  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 */
.easy_df36.grid_top_d5f7 {
  box-shadow: var(--shadow-md);
}

.article_south_8a4b {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.box_first_4b56 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.status-plasma-d745 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.primary-5c44 {
  display: none;
}

/* Hide mobile actions on desktop */
.aside_8523 {
  display: none;
}

.status_white_1332 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.status_white_1332 a:hover,
.status_white_1332 a.fn-active-c52b {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.first_b736 {
  margin-left: 1rem;
}

.carousel_out_70e1 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.progress-5510,
.breadcrumb-east-ca5d {
  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;
}

.progress-5510 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.progress-5510: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;
}

.breadcrumb-east-ca5d {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.breadcrumb-east-ca5d: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;
}

.progress-5510 svg,
.breadcrumb-east-ca5d svg {
  flex-shrink: 0;
}

.nav-7e00 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.layout-dim-ec28 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.layout-dim-ec28::before,
.layout-dim-ec28::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.layout-dim-ec28::before {
  top: -7px;
}

.layout-dim-ec28::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.tag-mini-7400 {
  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 === */
.hover_c223 {
  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);
}

.tag_cab6 {
  margin: 0 0 2rem;
  text-align: center;
}

.huge-b2d1 {
  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;
}

.huge-b2d1:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.block_medium_071f {
  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);
}

.block_medium_071f strong {
  color: var(--primary-color);
  font-weight: 700;
}

.bright-1575 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.section_mini_026c {
  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;
}

.section_mini_026c:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.module-brown-e405 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pro_8e5f {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.breadcrumb_yellow_7213 {
  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);
}

.breadcrumb_yellow_7213 .block_812e {
  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;
}

.breadcrumb_yellow_7213 .block_812e svg {
  flex-shrink: 0;
}

.breadcrumb_yellow_7213 .disabled_6bfb {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.breadcrumb_yellow_7213 .disabled_6bfb: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);
}

.breadcrumb_yellow_7213 .caption-d498 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.breadcrumb_yellow_7213 .caption-d498: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) {
  .hover_c223 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .huge-b2d1 {
    max-width: 100%;
  }

  .bright-1575 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .section_mini_026c {
    padding: 1rem;
  }

  .module-brown-e405 {
    font-size: 1.5rem;
  }

  .pro_8e5f {
    font-size: 0.75rem;
  }

  .block_medium_071f {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .breadcrumb_yellow_7213 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .breadcrumb_yellow_7213 .block_812e {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .bright-1575 {
    grid-template-columns: 1fr;
  }
}

.middle_93ca {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.layout-next-e671 {
  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 === */
.soft_b811 {
  margin-bottom: 2.5rem;
}

.panel_under_b247 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.middle_93ca {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.box_2c9e {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brown_0ae9 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.row_bf62 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.primary_3435 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.overlay_upper_49c9 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.solid_61a6 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.down_fff9 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.down_fff9 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.tooltip-south-df29 {
  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);
}

.purple_f584 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.panel_3312 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.narrow_b457 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.bronze-89bf {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.logo-3c54 {
  display: grid;
  gap: 1rem;
}

.focus_hard_b26d {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.modal_right_bba8 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.out-445d {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.component_narrow_c697 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.main_wide_739e {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.media_9d78 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.media_9d78 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.title_top_2639 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.mask-cb0c {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.column_f9b8 {
  display: grid;
  gap: 2rem;
}

.blue-4f2a {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.brown_0ae9 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.box_2c9e {
  flex: 1;
}

.primary_3435 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.primary_3435 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.background_focused_f966 {
  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;
}

.overlay_upper_49c9 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.notice_outer_6cba {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.notice_outer_6cba span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.notice-19a2 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.notice-19a2 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.tabs_left_7a47 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.tabs_left_7a47 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.tabs_left_7a47 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tabs_left_7a47 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.row_4528 {
  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 === */
.description-purple-f936 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.media_c033 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.old-fab4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.orange-9768 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.orange-9768 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.orange-9768 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.orange-9768 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;
}

.orange-9768 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.orange-9768 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.alert-stale-d30a {
  padding: 3rem 0 5rem;
}

.shadow-motion-c8a8 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.shadow-motion-c8a8.shade-136a {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.main_thick_a178 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.dynamic-0d56 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.chip_66b5 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.chip_66b5 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.banner_west_896b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-7648 {
  text-align: center;
}

.hovered_2224 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.new-8b67 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.nav-glass-e4d2 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.progress-new-a09c {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.gradient_4ecb {
  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;
}

.gradient_4ecb * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.gradient_4ecb:hover {
  box-shadow: var(--shadow-lg);
}

.gradient_4ecb.sidebar-2dea {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.gradient_4ecb h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.gradient_4ecb ul {
  margin: 1rem 0;
}

.gradient_4ecb li {
  margin-bottom: 0.75rem;
}

.menu-rough-4791 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.hidden-complex-308d {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.hidden-complex-308d a {
  font-weight: 600;
}

/* === Data Tables === */
.video_00b0 {
  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;
}

.video_00b0 table {
  width: 100%;
  min-width: 600px;
}

.video_00b0 thead {
  background-color: var(--primary-color);
  color: white;
}

.video_00b0 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.video_00b0 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.video_00b0 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.video_00b0 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.box-thick-d9e4 {
  list-style: none;
  margin: 1.5rem 0;
}

.box-thick-d9e4 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.box-thick-d9e4 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.basic_5d4a::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-c52b::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 === */
.message_3000 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.yellow-e213 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.yellow-e213 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.yellow-e213 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.yellow-e213 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.message_3000 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.detail_left_83d5 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.detail_left_83d5::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.header-c252 {
  position: relative;
  margin-bottom: 3rem;
}

.upper-2790 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.upper-2790 .info-bottom-6c3f {
  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;
}

.detail_fresh_790b {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.detail_fresh_790b h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.detail_fresh_790b ul {
  margin: 1rem 0;
}

.detail_fresh_790b li {
  margin-bottom: 0.75rem;
}

.breadcrumb_03a8 {
  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 === */
.active_01f0 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.active_01f0 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.link_orange_91f1 {
  list-style: none;
  margin: 1.5rem 0;
}

.link_orange_91f1 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.link_orange_91f1 a {
  font-weight: 600;
}

.pressed-5c94 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.slow_8189 {
  margin: 2.5rem 0;
}

.progress-aba2 {
  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;
}

.progress-aba2:hover {
  box-shadow: var(--shadow-lg);
}

.progress-aba2.mini-76d9 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.text-a61e {
  flex-shrink: 0;
}

.text-a61e 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);
}

.purple-1632 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.grid_center_c020,
.pagination-pink-1b73,
.out_e0af {
  width: 100%;
  margin: 1.5rem 0;
}

.border_upper_200f {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.border_upper_200f strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.widget_4826 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.widget_4826 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.menu_tall_7f65 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.menu_tall_7f65 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.hidden_2c21 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.shadow-solid-10a6 {
  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;
}

.shadow-solid-10a6:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.shadow-solid-10a6.outline_eff8 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.shadow-solid-10a6 .easy_e81d {
  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;
}

.shadow-solid-10a6 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.accent_slow_050c {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.easy_2315 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.easy_2315 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.article-advanced-f2ca {
  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 === */
.block_812e {
  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;
}

.disabled_6bfb {
  background-color: var(--primary-color);
  color: white;
}

.disabled_6bfb:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.caption-d498 {
  background-color: var(--text-secondary);
  color: white;
}

.caption-d498:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.frame_7119 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.frame_7119:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.pagination_hovered_80a4 {
  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;
}

.pagination_hovered_80a4:hover {
  background-color: var(--primary-dark);
}

.grid_8ad7 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.hidden-8e14 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.green-4615 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.shadow-selected-2294 {
  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 === */
.lite_d316 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.caption_cc73 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.caption_cc73 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.over_960c {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.lite_b593 {
  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;
}

.fresh_b00f {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.element-complex-c29b {
  list-style: none;
  counter-reset: rank-counter;
}

.element-complex-c29b li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.element-complex-c29b 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;
}

.popup_over_e64b {
  list-style: none;
}

.popup_over_e64b li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.box-311b {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.outer_2730 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.outer_2730 .brown_64f2 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.outer_2730 .accordion_up_9068 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.item_white_8845 {
  margin-top: 3rem;
}

.active-6720 {
  width: 100%;
}

.current_2908 {
  background-color: #fef3c7;
}

.caption-east-d0c0 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.menu-soft-be1d {
  margin: 3rem 0;
}

.description-6a6a {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.tall-7169 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.tall-7169:hover {
  box-shadow: var(--shadow-lg);
}

.tall-7169.picture_8bdb {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.tag-b55e {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.link-334a strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.link-334a span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.iron-0e22 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tall-7169 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.dropdown_9886 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hard_06a2 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.module_e071 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.small_f72a {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.in-df1e {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.progress_a4f1 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.link_c527 {
  max-width: 900px;
  margin: 0 auto;
}

.search-white-0d84 {
  margin: 2rem 0;
}

.heading_hard_f22e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.heading_hard_f22e summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.heading_hard_f22e summary::-webkit-details-marker {
  display: none;
}

.heading_hard_f22e summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.hidden-over-1516 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.heading_hard_f22e[open] .hidden-over-1516 {
  transform: rotate(45deg);
}

.alert_8742 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.alert_8742 p:last-child {
  margin-bottom: 0;
}

.thumbnail-7448 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.upper-bdd3 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.next_4608 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.next_4608 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.next_4608 .block_812e {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.outline_58e8 {
  max-width: 900px;
  margin: 0 auto;
}

.form_af02 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.panel-b56f {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.panel-b56f.fn-success-c52b {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.dynamic-ea8a {
  font-size: 3rem;
  line-height: 1;
}

.wide-f1fe h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.iron_95ad {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.tooltip-b227,
.message_smooth_563c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.tooltip-b227 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.message_smooth_563c h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.layout-0b9e,
.media_glass_e9b3 {
  margin: 1.5rem 0;
}

.layout-0b9e li,
.media_glass_e9b3 li {
  margin-bottom: 1rem;
}

.widget-eefb {
  margin: 3rem 0;
}

.feature_in_2c19 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.feature_in_2c19 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.feature_in_2c19 ol {
  margin: 1rem 0;
}

.feature_in_2c19 li {
  margin-bottom: 0.75rem;
}

.menu-stale-4143 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.sidebar-31a9 {
  margin: 2rem 0;
}

.primary-6070 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.pattern-slow-f825 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.notification-black-19dc {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.south-c812 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.white-89dd {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.thick_ca15 {
  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;
}

.thick_ca15 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.row_bf62 {
  flex: 1;
}

.row_bf62 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.highlight_208e {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.banner-prev-86a9 p {
  margin-bottom: 1rem;
}

.static_f908 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.accordion_cbd2 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.overlay_e8f7 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.overlay_e8f7 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.status-5ba1 h3 {
  margin-bottom: 1.5rem;
}

.menu-inner-6092 {
  display: grid;
  gap: 2rem;
}

.media_narrow_4adb {
  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;
}

.media_narrow_4adb img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.media_narrow_4adb h4 {
  margin: 0 0 0.25rem;
}

.media_narrow_4adb p {
  margin: 0;
  font-size: 0.9375rem;
}

.shadow_5bca {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.banner-36c6 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.banner-36c6 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.banner-36c6 ul {
  margin: 1.5rem 0;
}

.banner-36c6 li {
  margin-bottom: 0.75rem;
}

.alert-advanced-2453 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.lower_0256 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.column-b16b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.element-focused-8b60 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.element-focused-8b60 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.alert_hard_c431 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.alert_hard_c431 a {
  color: rgba(255, 255, 255, 0.8);
}

.mask_9053 {
  list-style: none;
}

.mask_9053 li {
  margin-bottom: 0.75rem;
}

.mask_9053 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.mask_9053 a:hover {
  color: white;
}

.hover-9435 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.hovered-b9e6 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.full_abbc {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.content_8a9d {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.popup-clean-db2a {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .secondary_east_65c6 {
    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;
  }

  .hidden_fast_8488 {
    font-size: 1.5rem !important;
  }

  .panel_under_b247 {
    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 */
  .gradient_4ecb,
  .out-c3dd,
  .detail_fresh_790b,
  .purple-1632,
  .tag-b55e,
  .tall-7169,
  .alert_8742,
  .block_medium_071f,
  .title_top_2639,
  .main_thick_a178 {
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }

  /* Long words in Indonesian */
  ul, ol {
    padding-left: 1.5rem;
    max-width: 100%;
  }

  /* Fix author-info layout on mobile */
  .middle_93ca {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .box_2c9e {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .brown_0ae9 {
    flex-shrink: 0;
  }

  .row_bf62 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .primary_3435,
  .overlay_upper_49c9 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .overlay_upper_49c9 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .status-plasma-d745 {
    display: none;
  }

  /* Show mobile actions */
  .aside_8523 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .feature_a182 {
    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;
  }

  .feature_a182 svg {
    flex-shrink: 0;
  }

  .feature_a182 .simple_f155 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .feature_a182 .shade-east-ed8b {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .lower_3480 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .up-a7df {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .feature_a182:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .primary-5c44 {
    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;
  }

  .primary-5c44.fn-active-c52b {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .primary-5c44 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .primary-5c44 li:last-child {
    border-bottom: none;
  }

  .primary-5c44 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .status_white_1332 {
    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;
  }

  .status_white_1332 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .status_white_1332 li:last-child {
    border-bottom: none;
  }

  .status_white_1332 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .first_b736 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .carousel_out_70e1 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .progress-5510,
  .breadcrumb-east-ca5d {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .progress-5510 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .breadcrumb-east-ca5d {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .status_white_1332.fn-active-c52b {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-7e00 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .easy_df36 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .article_south_8a4b {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .tag-mini-7400 {
    margin-top: 0;
  }

  /* Hero section */
  .tag-mini-7400 {
    padding: 2rem 0 1.5rem;
  }

  .panel_under_b247 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .title_top_2639 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .hover_c223 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .huge-b2d1 {
    max-width: 100%;
    border-radius: 8px;
  }

  .bright-1575 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .section_mini_026c {
    padding: 1rem;
  }

  .module-brown-e405 {
    font-size: 1.5rem;
  }

  .pro_8e5f {
    font-size: 0.75rem;
  }

  .block_medium_071f {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .breadcrumb_yellow_7213 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .breadcrumb_yellow_7213 .block_812e {
    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 */
  .old-fab4 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .progress-aba2 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .text-a61e {
    margin-bottom: 1rem;
  }

  /* Author */
  .blue-4f2a {
    flex-direction: column;
  }

  .thick_ca15 {
    flex-direction: column;
  }

  /* Quotes */
  .tag-b55e {
    flex-direction: column;
  }

  /* Pros/Cons */
  .iron_95ad {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .south-c812 {
    flex-direction: column;
  }

  .south-c812 .block_812e {
    width: 100%;
  }

  /* Version comparison */
  .hidden_2c21 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .lite_d316 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .column-b16b {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .full_abbc {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .video_00b0,
  .pagination-pink-1b73,
  .label-df26,
  .active-6720,
  .grid_center_c020,
  .out_e0af {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .video_00b0 table,
  .pagination-pink-1b73 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .article-advanced-f2ca {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .secondary_east_65c6 {
    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;
  }

  .hidden_fast_8488 {
    font-size: 1.25rem !important;
  }

  .panel_under_b247 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .easy_df36 {
    position: fixed;
  }

  .article_south_8a4b {
    padding: 0.625rem 0;
  }

  .box_first_4b56 img {
    height: 26px;
  }

  .status_white_1332 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .primary-5c44 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .feature_a182 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .feature_a182 svg {
    width: 18px;
    height: 18px;
  }

  .feature_a182 .simple_f155 {
    font-size: 0.7rem;
  }

  .feature_a182 .shade-east-ed8b {
    font-size: 0.65rem;
  }

  .progress-5510,
  .breadcrumb-east-ca5d {
    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, .secondary_east_65c6, .border_rough_b419, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .hover_c223 {
    padding: 1rem;
  }

  .bright-1575 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .section_mini_026c {
    padding: 0.875rem;
  }

  .module-brown-e405 {
    font-size: 1.25rem;
  }

  .breadcrumb_yellow_7213 .block_812e {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .panel_under_b247 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .block_812e {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .grid_8ad7 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .progress-aba2 {
    padding: 1rem;
  }

  .text-a61e span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .gradient_4ecb,
  .pagination_warm_279f,
  .steel-3ba7,
  .slider-gold-9aa7 {
    padding: 1rem;
  }
}

@media print {
  .easy_df36,
  .description-purple-f936,
  .nav-7e00,
  .block_812e,
  .lower_0256 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .secondary_east_65c6 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.clean-8aa8 {
  margin-bottom: 3rem;
  text-align: center;
}

.hidden_fast_8488 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.highlight-3159 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.feature_hot_5db1,
.article_eb8d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.north-a0dd {
  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;
}

.north-a0dd:hover {
  transform: translateY(-5px);
}

.north-a0dd strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.north-a0dd span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.paper_38c8 {
  margin: 3rem 0;
}

.slider_ac3b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.north_d898 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.north_d898:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.label-stone-ea1d {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.breadcrumb_8e4e {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.slider-5bf2 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.middle_9e09 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.pink_8392 {
  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;
}

.pink_8392:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.pink_8392.item_west_f055 {
  border-left: 4px solid var(--primary-color);
}

.popup_new_2802 {
  flex-shrink: 0;
}

.popup_new_2802 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.wrapper-fefb {
  flex: 1;
}

.wrapper-fefb h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.wood-dc57 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.easy-acf6,
.frame-pressed-e936,
.text_1e6a {
  margin-bottom: 1.5rem;
}

.easy-acf6 h4,
.frame-pressed-e936 h4,
.text_1e6a h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.easy-acf6 ul,
.frame-pressed-e936 ul,
.text_1e6a ul {
  list-style: none;
  padding: 0;
}

.easy-acf6 li,
.frame-pressed-e936 li,
.text_1e6a li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.easy-acf6 li:before,
.frame-pressed-e936 li:before,
.text_1e6a li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.black_5d26 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.black_5d26 a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.black_5d26 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.shade-pink-011c { margin: 2rem 0; }
.fresh-97be { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.fresh-97be h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.notice_copper_e2fe p { margin-bottom: 1rem; line-height: 1.7; }
.notice_copper_e2fe strong { color: var(--text-primary); }
.notice_copper_e2fe ul { list-style: none; padding-left: 0; }
.notice_copper_e2fe ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.notice_copper_e2fe ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.texture-78b4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.progress-9138 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.progress-9138:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.plasma-2945 { font-size: 3rem; margin-bottom: 1rem; }
.progress-9138 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.progress-9138 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.search_0344 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.search_0344 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.top-caa7 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.shade_2edf { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.backdrop-left-18f1 { text-align: center; }
.header-7748 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.image-8cd0 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.active-78fb { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.header-32d6 { margin: 2rem 0; }
.pattern-cold-c15d { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.pattern-cold-c15d h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.pattern-cold-c15d p, .pattern-cold-c15d ul { line-height: 1.7; }
.pattern-cold-c15d ul { list-style: none; padding-left: 0; }
.pattern-cold-c15d ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.pattern-cold-c15d ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.icon-6ca8 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.motion-9e8e { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.menu_9759 { text-align: center; }
.title_1208 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.modal-4195 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.form_steel_425a { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.column-43e2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.mask-f0da { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.mask-f0da:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.mask-f0da h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.mask-f0da p, .mask-f0da ul { line-height: 1.7; }
.mask-f0da ul { list-style: none; padding-left: 0; }
.mask-f0da ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.mask-f0da ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: be9b */
.promo-block-d3 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.1;
}
