/* ============================================
   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 */
.filter-bronze-1493 p,
.short-8337,
.plasma-6f4a,
.row_east_9c2f,
.blue_b747,
.table_hot_822a,
.stone_6bab,
.notice_76ae {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.hard-407b {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.hard-407b > *,
.video_5df2,
.filter-bronze-1493,
.input-tall-d20f {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .hard-407b {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .hard-407b {
    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 === */
.box-bright-e2fb {
  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 */
.box-bright-e2fb.title-hard-f3a7 {
  box-shadow: var(--shadow-md);
}

.notice-easy-1d34 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.texture_48bc img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.accent_9c5e {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.nav-c055 {
  display: none;
}

/* Hide mobile actions on desktop */
.content_right_1ca4 {
  display: none;
}

.tabs_ae57 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.tabs_ae57 a:hover,
.tabs_ae57 a.fn-active-418e {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.iron-4139 {
  margin-left: 1rem;
}

.item_6174 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.glass-daaf,
.video_acd0 {
  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;
}

.glass-daaf {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.glass-daaf: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;
}

.video_acd0 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.video_acd0: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;
}

.glass-daaf svg,
.video_acd0 svg {
  flex-shrink: 0;
}

.dim-d77c {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hard_a0bf {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.hard_a0bf::before,
.hard_a0bf::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.hard_a0bf::before {
  top: -7px;
}

.hard_a0bf::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.paragraph-0760 {
  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 === */
.tooltip-1c6f {
  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);
}

.block_a07f {
  margin: 0 0 2rem;
  text-align: center;
}

.fast_f258 {
  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;
}

.fast_f258:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.row-9e3c {
  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);
}

.row-9e3c strong {
  color: var(--primary-color);
  font-weight: 700;
}

.video_action_4cf7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.surface_small_df84 {
  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;
}

.surface_small_df84:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.detail-current-c687 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.content_old_6611 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.preview_bbe3 {
  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);
}

.preview_bbe3 .carousel_dark_d5ce {
  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;
}

.preview_bbe3 .carousel_dark_d5ce svg {
  flex-shrink: 0;
}

.preview_bbe3 .new_3964 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.preview_bbe3 .new_3964: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);
}

.preview_bbe3 .pattern_57c6 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.preview_bbe3 .pattern_57c6: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) {
  .tooltip-1c6f {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .fast_f258 {
    max-width: 100%;
  }

  .video_action_4cf7 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .surface_small_df84 {
    padding: 1rem;
  }

  .detail-current-c687 {
    font-size: 1.5rem;
  }

  .content_old_6611 {
    font-size: 0.75rem;
  }

  .row-9e3c {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .preview_bbe3 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .preview_bbe3 .carousel_dark_d5ce {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .video_action_4cf7 {
    grid-template-columns: 1fr;
  }
}

.label-first-e6f0 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.header_focused_8363 {
  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 === */
.heading-easy-dd5f {
  margin-bottom: 2.5rem;
}

.stale-8964 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.label-first-e6f0 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.aside-95a7 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.focus-stone-1bdc {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.fast_16eb {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.progress-217b {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.outline_6643 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.primary_42ff {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.wrapper_8bab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.wrapper_8bab svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.filter-rough-ae65 {
  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);
}

.table_84d8 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.avatar-5e98 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.wide-7f43 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.purple_78bd {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.wrapper_medium_cf3c {
  display: grid;
  gap: 1rem;
}

.main_7d1d {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.focus_5386 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.texture-2a6f {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.overlay-silver-da32 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.full-ad20 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.lower_543c {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.lower_543c p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.short-8337 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.highlight-up-6aa3 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.center_711e {
  display: grid;
  gap: 2rem;
}

.link_cold_731b {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.focus-stone-1bdc {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.aside-95a7 {
  flex: 1;
}

.progress-217b {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.progress-217b a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.advanced-7704 {
  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;
}

.outline_6643 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.detail_fecd {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.detail_fecd span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.stale-b0d8 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.stale-b0d8 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.notification_88d9 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.notification_88d9 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.notification_88d9 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.notification_88d9 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.preview_red_b7df {
  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 === */
.selected_0245 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.fresh_40bb {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.element_small_fecf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pro_8075 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.pro_8075 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.pro_8075 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.pro_8075 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;
}

.pro_8075 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.pro_8075 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.filter-bronze-1493 {
  padding: 3rem 0 5rem;
}

.input-tall-d20f {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.input-tall-d20f.advanced-f40c {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.plasma-6f4a {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.copper-28e2 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.plasma_00c1 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.plasma_00c1 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.pagination_46d2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.highlight_0140 {
  text-align: center;
}

.mask-out-6d64 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.outline_hot_dce0 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.status-55bc {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.table_hot_822a {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.row_east_9c2f {
  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;
}

.row_east_9c2f * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.row_east_9c2f:hover {
  box-shadow: var(--shadow-lg);
}

.row_east_9c2f.link_d28f {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.row_east_9c2f h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.row_east_9c2f ul {
  margin: 1rem 0;
}

.row_east_9c2f li {
  margin-bottom: 0.75rem;
}

.gradient_cool_3e41 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.fixed_6659 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.fixed_6659 a {
  font-weight: 600;
}

/* === Data Tables === */
.south_84c1 {
  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;
}

.south_84c1 table {
  width: 100%;
  min-width: 600px;
}

.south_84c1 thead {
  background-color: var(--primary-color);
  color: white;
}

.south_84c1 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.south_84c1 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.south_84c1 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.south_84c1 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.dirty_0543 {
  list-style: none;
  margin: 1.5rem 0;
}

.dirty_0543 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.dirty_0543 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.footer-solid-0d08::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-418e::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 === */
.mini_cba5 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.caption_iron_c382 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.caption_iron_c382 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.caption_iron_c382 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.caption_iron_c382 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.mini_cba5 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.stone_6bab {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.stone_6bab::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.old-a75c {
  position: relative;
  margin-bottom: 3rem;
}

.bottom-3725 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.bottom-3725 .overlay_south_1a51 {
  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;
}

.column-3859 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.column-3859 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.column-3859 ul {
  margin: 1rem 0;
}

.column-3859 li {
  margin-bottom: 0.75rem;
}

.filter_full_097c {
  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 === */
.medium_76a5 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.medium_76a5 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.section_b503 {
  list-style: none;
  margin: 1.5rem 0;
}

.section_b503 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.section_b503 a {
  font-weight: 600;
}

.picture-d3ff {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.notice_76ae {
  margin: 2.5rem 0;
}

.cool-526a {
  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;
}

.cool-526a:hover {
  box-shadow: var(--shadow-lg);
}

.cool-526a.heading_tall_31c5 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.column_7c4d {
  flex-shrink: 0;
}

.column_7c4d 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);
}

.pink_9ee2 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.main-selected-cb71,
.detail-complex-6cc3,
.sidebar-e3d9 {
  width: 100%;
  margin: 1.5rem 0;
}

.south-de13 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.south-de13 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.caption_hard_11f1 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.caption_hard_11f1 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.gold_b05c {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.gold_b05c strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.overlay-a071 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.input_small_f33a {
  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;
}

.input_small_f33a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.input_small_f33a.dirty_7a6c {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.input_small_f33a .in-8bdb {
  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;
}

.input_small_f33a h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.border-hovered-fa48 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.purple-1f89 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.purple-1f89 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.section_over_575b {
  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 === */
.carousel_dark_d5ce {
  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;
}

.new_3964 {
  background-color: var(--primary-color);
  color: white;
}

.new_3964:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.pattern_57c6 {
  background-color: var(--text-secondary);
  color: white;
}

.pattern_57c6:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.item-b22b {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.item-b22b:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.liquid-e9ac {
  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;
}

.liquid-e9ac:hover {
  background-color: var(--primary-dark);
}

.tall_d31b {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.action-8672 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.overlay_bronze_5dbd {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.outer_c38a {
  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 === */
.hero-basic-3fd7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.first_ca00 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.first_ca00 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.bright-f5fe {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.fixed-8d32 {
  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;
}

.accent-last-4346 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.plasma_32dd {
  list-style: none;
  counter-reset: rank-counter;
}

.plasma_32dd li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.plasma_32dd 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;
}

.section-fast-1b9f {
  list-style: none;
}

.section-fast-1b9f li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.advanced-ee3d {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.cool-6c0e {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.cool-6c0e .basic-55bd {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.cool-6c0e .pink-b4ab {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.shadow-right-e02a {
  margin-top: 3rem;
}

.cool-231c {
  width: 100%;
}

.mini-2661 {
  background-color: #fef3c7;
}

.dirty_6d57 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.nav_last_586c {
  margin: 3rem 0;
}

.stale-50fd {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.dim_5cdc {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.dim_5cdc:hover {
  box-shadow: var(--shadow-lg);
}

.dim_5cdc.focus_34b9 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.video_83d4 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.item-small-fc03 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.item-small-fc03 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.motion_e95d {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.dim_5cdc blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.advanced_6c1a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tabs_335a {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.label_orange_7a07 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.alert-selected-7834 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.popup_9a62 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.feature_center_e01c {
  margin-top: 1rem;
}

/* === FAQ Section === */
.stone_a3ce {
  max-width: 900px;
  margin: 0 auto;
}

.hard_e6cd {
  margin: 2rem 0;
}

.sort_cbc6 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.sort_cbc6 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.sort_cbc6 summary::-webkit-details-marker {
  display: none;
}

.sort_cbc6 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.tiny_be21 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.sort_cbc6[open] .tiny_be21 {
  transform: rotate(45deg);
}

.slow_f640 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.slow_f640 p:last-child {
  margin-bottom: 0;
}

.outline-dynamic-6bf4 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.lite_ce43 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.light-9c92 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.light-9c92 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.light-9c92 .carousel_dark_d5ce {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.search-0032 {
  max-width: 900px;
  margin: 0 auto;
}

.filter-iron-094e {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.pagination-south-fc1e {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.pagination-south-fc1e.fn-success-418e {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.pattern_bronze_62fb {
  font-size: 3rem;
  line-height: 1;
}

.dirty-22e8 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.medium-550e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.mini-fccc,
.summary-slow-87df {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.mini-fccc h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.summary-slow-87df h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.gradient_8b47,
.shade_0a21 {
  margin: 1.5rem 0;
}

.gradient_8b47 li,
.shade_0a21 li {
  margin-bottom: 1rem;
}

.accent_blue_c142 {
  margin: 3rem 0;
}

.green_4970 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.green_4970 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.green_4970 ol {
  margin: 1rem 0;
}

.green_4970 li {
  margin-bottom: 0.75rem;
}

.mini_c066 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.current-1d37 {
  margin: 2rem 0;
}

.chip_19e2 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.mask-07a3 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.widget_dim_b2f2 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.center_b6f3 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.over_9e9f {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.main-bc1c {
  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;
}

.main-bc1c img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.fast_16eb {
  flex: 1;
}

.fast_16eb h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.mini_0edf {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.notification_steel_6f9c p {
  margin-bottom: 1rem;
}

.fresh-9b31 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.cold_cb2d {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.avatar-c894 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.avatar-c894 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.shade-motion-33d7 h3 {
  margin-bottom: 1.5rem;
}

.smooth-25d9 {
  display: grid;
  gap: 2rem;
}

.caption-6fdd {
  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;
}

.caption-6fdd img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.caption-6fdd h4 {
  margin: 0 0 0.25rem;
}

.caption-6fdd p {
  margin: 0;
  font-size: 0.9375rem;
}

.label-26ec {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.content-0eb1 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.content-0eb1 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.content-0eb1 ul {
  margin: 1.5rem 0;
}

.content-0eb1 li {
  margin-bottom: 0.75rem;
}

.stale_09f8 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.hover-cold-d286 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.search-action-6a33 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-8ca0 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.footer-8ca0 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.hard-2feb {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.hard-2feb a {
  color: rgba(255, 255, 255, 0.8);
}

.light_bf5e {
  list-style: none;
}

.light_bf5e li {
  margin-bottom: 0.75rem;
}

.light_bf5e a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.light_bf5e a:hover {
  color: white;
}

.row_4dfb {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.overlay_8af0 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.warm-b3fd {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.warm_571e {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.main-97ee {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .hard-407b {
    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;
  }

  .main_1795 {
    font-size: 1.5rem !important;
  }

  .stale-8964 {
    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 */
  .row_east_9c2f,
  .blue_b747,
  .column-3859,
  .pink_9ee2,
  .video_83d4,
  .dim_5cdc,
  .slow_f640,
  .row-9e3c,
  .short-8337,
  .plasma-6f4a {
    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 */
  .label-first-e6f0 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .aside-95a7 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .focus-stone-1bdc {
    flex-shrink: 0;
  }

  .fast_16eb {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .progress-217b,
  .outline_6643 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .outline_6643 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .accent_9c5e {
    display: none;
  }

  /* Show mobile actions */
  .content_right_1ca4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .accent-c938 {
    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;
  }

  .accent-c938 svg {
    flex-shrink: 0;
  }

  .accent-c938 .main_1f9f {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .accent-c938 .menu_soft_95ce {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .header-6370 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .dim-02eb {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .accent-c938:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .nav-c055 {
    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;
  }

  .nav-c055.fn-active-418e {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-c055 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-c055 li:last-child {
    border-bottom: none;
  }

  .nav-c055 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .tabs_ae57 {
    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;
  }

  .tabs_ae57 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .tabs_ae57 li:last-child {
    border-bottom: none;
  }

  .tabs_ae57 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .iron-4139 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .item_6174 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .glass-daaf,
  .video_acd0 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .glass-daaf {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .video_acd0 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .tabs_ae57.fn-active-418e {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .dim-d77c {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .box-bright-e2fb {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .notice-easy-1d34 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .paragraph-0760 {
    margin-top: 0;
  }

  /* Hero section */
  .paragraph-0760 {
    padding: 2rem 0 1.5rem;
  }

  .stale-8964 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .short-8337 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .tooltip-1c6f {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .fast_f258 {
    max-width: 100%;
    border-radius: 8px;
  }

  .video_action_4cf7 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .surface_small_df84 {
    padding: 1rem;
  }

  .detail-current-c687 {
    font-size: 1.5rem;
  }

  .content_old_6611 {
    font-size: 0.75rem;
  }

  .row-9e3c {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .preview_bbe3 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .preview_bbe3 .carousel_dark_d5ce {
    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 */
  .element_small_fecf {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .cool-526a {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .column_7c4d {
    margin-bottom: 1rem;
  }

  /* Author */
  .link_cold_731b {
    flex-direction: column;
  }

  .main-bc1c {
    flex-direction: column;
  }

  /* Quotes */
  .video_83d4 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .medium-550e {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .center_b6f3 {
    flex-direction: column;
  }

  .center_b6f3 .carousel_dark_d5ce {
    width: 100%;
  }

  /* Version comparison */
  .overlay-a071 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .hero-basic-3fd7 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .search-action-6a33 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .warm-b3fd {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .south_84c1,
  .detail-complex-6cc3,
  .button_4717,
  .cool-231c,
  .main-selected-cb71,
  .sidebar-e3d9 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .south_84c1 table,
  .detail-complex-6cc3 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .section_over_575b {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hard-407b {
    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;
  }

  .main_1795 {
    font-size: 1.25rem !important;
  }

  .stale-8964 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .box-bright-e2fb {
    position: fixed;
  }

  .notice-easy-1d34 {
    padding: 0.625rem 0;
  }

  .texture_48bc img {
    height: 26px;
  }

  .tabs_ae57 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .nav-c055 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .accent-c938 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .accent-c938 svg {
    width: 18px;
    height: 18px;
  }

  .accent-c938 .main_1f9f {
    font-size: 0.7rem;
  }

  .accent-c938 .menu_soft_95ce {
    font-size: 0.65rem;
  }

  .glass-daaf,
  .video_acd0 {
    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, .hard-407b, .video_5df2, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .tooltip-1c6f {
    padding: 1rem;
  }

  .video_action_4cf7 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .surface_small_df84 {
    padding: 0.875rem;
  }

  .detail-current-c687 {
    font-size: 1.25rem;
  }

  .preview_bbe3 .carousel_dark_d5ce {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .stale-8964 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .carousel_dark_d5ce {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .tall_d31b {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .cool-526a {
    padding: 1rem;
  }

  .column_7c4d span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .row_east_9c2f,
  .small-92b6,
  .east_84f5,
  .caption-07f2 {
    padding: 1rem;
  }
}

@media print {
  .box-bright-e2fb,
  .selected_0245,
  .dim-d77c,
  .carousel_dark_d5ce,
  .hover-cold-d286 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .hard-407b {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.tall_387a {
  margin-bottom: 3rem;
  text-align: center;
}

.main_1795 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.silver-6e4e {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.wrapper-light-9702,
.sidebar_basic_1ef5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.breadcrumb_hot_4e91 {
  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;
}

.breadcrumb_hot_4e91:hover {
  transform: translateY(-5px);
}

.breadcrumb_hot_4e91 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.breadcrumb_hot_4e91 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.glass_a2ec {
  margin: 3rem 0;
}

.red-9063 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.notice_soft_f590 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.notice_soft_f590:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.video_851b {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.dirty_fd26 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.surface-smooth-f0c4 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.feature_slow_0ec9 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.grid-8f63 {
  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;
}

.grid-8f63:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.grid-8f63.notice_7302 {
  border-left: 4px solid var(--primary-color);
}

.sort-fast-5090 {
  flex-shrink: 0;
}

.sort-fast-5090 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.easy-0ea5 {
  flex: 1;
}

.easy-0ea5 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.glass_6b1f {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.sort-8ca7,
.active-3093,
.column-prev-d7be {
  margin-bottom: 1.5rem;
}

.sort-8ca7 h4,
.active-3093 h4,
.column-prev-d7be h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sort-8ca7 ul,
.active-3093 ul,
.column-prev-d7be ul {
  list-style: none;
  padding: 0;
}

.sort-8ca7 li,
.active-3093 li,
.column-prev-d7be li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.sort-8ca7 li:before,
.active-3093 li:before,
.column-prev-d7be li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.description_8c5f {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.description_8c5f 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;
}

.description_8c5f a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.dark_f991 { margin: 2rem 0; }
.tag_small_0020 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.tag_small_0020 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.red-fd13 p { margin-bottom: 1rem; line-height: 1.7; }
.red-fd13 strong { color: var(--text-primary); }
.red-fd13 ul { list-style: none; padding-left: 0; }
.red-fd13 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.red-fd13 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.message_ffba { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.primary_e7d6 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.primary_e7d6:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.widget-0bb6 { font-size: 3rem; margin-bottom: 1rem; }
.primary_e7d6 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.primary_e7d6 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.badge-03f1 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.badge-03f1 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.brown-846f { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.grid_under_b351 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.layout-1964 { text-align: center; }
.complex-7a3c { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.stale-834a { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.layout-0690 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.footer_a38b { margin: 2rem 0; }
.popup_stone_cc9f { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.popup_stone_cc9f h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.popup_stone_cc9f p, .popup_stone_cc9f ul { line-height: 1.7; }
.popup_stone_cc9f ul { list-style: none; padding-left: 0; }
.popup_stone_cc9f ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.popup_stone_cc9f ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.overlay_fast_3bbb { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.red-111c { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.notice_lower_fdce { text-align: center; }
.widget-upper-7d6a { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.hidden_black_a081 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.carousel_fff5 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.message-brown-9afe { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.black-538c { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.black-538c:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.black-538c h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.black-538c p, .black-538c ul { line-height: 1.7; }
.black-538c ul { list-style: none; padding-left: 0; }
.black-538c ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.black-538c ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 0dce */
.widget-item-k5 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.0;
}
